@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;700;800&display=swap");

.uilc-page {
  --background: #f7f7f5;
  --foreground: #11110f;
  --card: #ffffff;
  --card-foreground: #11110f;
  --popover: #ffffff;
  --popover-foreground: #11110f;
  --primary: #817038;
  --primary-foreground: #ffffff;
  --secondary: #edede8;
  --secondary-foreground: #171713;
  --muted: #efefeb;
  --muted-foreground: #6e6e67;
  --accent: #817038;
  --accent-foreground: #ffffff;
  --destructive: #c6242f;
  --border: #d8d8d1;
  --input: #d8d8d1;
  --ring: #817038;
  --radius: 0.5rem;
}

.uilc-page,
.uilc-page * {
  box-sizing: border-box;
}

.uilc-page {
  scroll-behavior: smooth;
}

.uilc-page {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: "Assistant", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.uilc-page button,
.uilc-page input,
.uilc-page textarea,
.uilc-page select {
  font: inherit;
}

.uilc-page a {
  color: inherit;
}

.uilc-page ::selection {
  background: #817038;
  color: #fff;
}

.uilc-page .site-shell {
  min-height: 100vh;
  overflow: clip;
}

.uilc-page .section-wrap {
  width: min(calc(100% - 2.5rem), 1440px);
  margin-inline: auto;
}

.uilc-page [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.uilc-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.uilc-page .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #817038;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.uilc-page .section-kicker::before {
  content: "";
  width: 2.4rem;
  height: 1px;
  background: currentColor;
}

.uilc-page .section-kicker-light {
  color: #cdb86d;
}

.uilc-page .section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 0.5rem 3rem;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.uilc-page .section-heading .section-kicker {
  grid-column: 1 / -1;
}

.uilc-page .section-heading h2 {
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 5.3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.uilc-page .section-heading p {
  max-width: 360px;
  margin: 0 0 0.45rem;
  color: #66665f;
  font-size: 1.08rem;
  line-height: 1.55;
}

.uilc-page .hero-section {
  min-height: 100svh;
  padding: 0 clamp(1.25rem, 4vw, 4.75rem) clamp(3rem, 7vw, 6.5rem);
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgba(17, 17, 15, 0.055) 50%, transparent 50.08%) 0 0 / 13rem 13rem,
    linear-gradient(rgba(17, 17, 15, 0.04) 1px, transparent 1px) 0 0 / 100% 6.5rem,
    #f7f7f5;
}

.uilc-page .site-header {
  width: min(100%, 1440px);
  margin: 0 auto;
  border-bottom: 1px solid rgba(17, 17, 15, 0.14);
}

.uilc-page .site-header-contained {
  width: 100%;
}

.uilc-page .site-header-contained .site-header-inner {
  width: min(calc(100% - 2.5rem), 1440px);
}

.uilc-page .site-header-inner {
  width: 100%;
  min-height: 6.5rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 3vw, 3.5rem);
}

.uilc-page .site-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
}

.uilc-page .brand-logo {
  width: 116px;
  height: auto;
  padding: 0.45rem;
  background: #171713;
}

.uilc-page .site-main-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 1.35vw, 1.45rem);
}

.uilc-page .site-main-nav a {
  position: relative;
  color: #505049;
  font-size: clamp(0.76rem, 0.88vw, 0.9rem);
  font-weight: 650;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.uilc-page .site-main-nav a:not(.site-current-service)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  width: 0;
  height: 1px;
  background: #817038;
  transition: width 180ms ease;
}

.uilc-page .site-main-nav a:hover {
  color: #171713;
}

.uilc-page .site-main-nav a:not(.site-current-service):hover::after {
  width: 100%;
}

.uilc-page .site-main-nav .site-current-service {
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(129, 112, 56, 0.62);
  background: linear-gradient(135deg, #9a8648 0%, #75622f 100%);
  color: #fff;
  box-shadow: 0 9px 24px rgba(129, 112, 56, 0.19);
}

.uilc-page .site-main-nav .site-current-service:hover {
  color: #fff;
  box-shadow: 0 11px 28px rgba(129, 112, 56, 0.3);
}

.uilc-page .site-mobile-menu-trigger {
  min-height: 2.9rem;
  padding: 0 0.95rem;
  display: none;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #c9c9c1;
  background: rgba(255,255,255,0.7);
  color: #171713;
  font-weight: 750;
}

.uilc-page .site-mobile-nav-sheet {
  width: min(88vw, 390px) !important;
  padding: 0;
  gap: 0;
  border-left: 1px solid rgba(205,184,109,0.55);
  background: #151512;
  color: #fff;
  direction: rtl;
}

.uilc-page .site-mobile-nav-sheet > button[data-slot="sheet-close"] {
  right: auto;
  left: 1.2rem;
  top: 1.35rem;
  color: #fff;
}

.uilc-page .site-mobile-nav-header {
  min-height: 8.5rem;
  padding: 1.7rem 1.5rem;
  justify-content: flex-end;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  text-align: right;
}

.uilc-page .site-mobile-nav-header [data-slot="sheet-title"] {
  color: #fff;
  font-size: 1.45rem;
}

.uilc-page .site-mobile-nav-header [data-slot="sheet-description"] {
  color: rgba(255,255,255,0.5);
  font-size: 0.82rem;
}

.uilc-page .site-mobile-nav {
  padding: 0.75rem 1.5rem;
  display: grid;
}

.uilc-page .site-mobile-nav a {
  min-height: 3.7rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  font-weight: 650;
  text-decoration: none;
}

.uilc-page .site-mobile-nav .site-mobile-current {
  margin-top: 0.85rem;
  padding-inline: 1rem;
  border: 1px solid rgba(205,184,109,0.62);
  background: linear-gradient(135deg, #9a8648 0%, #75622f 100%);
  color: #fff;
}

.uilc-page .site-mobile-nav-contact {
  margin-top: auto;
  padding: 1.35rem 1.5rem 1.8rem;
  display: grid;
  gap: 0.45rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.uilc-page .site-mobile-nav-contact > span {
  color: rgba(255,255,255,0.48);
  font-size: 0.78rem;
}

.uilc-page .site-mobile-nav-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d7c57e;
  font-size: 1.08rem;
  font-weight: 750;
  text-decoration: none;
}

.uilc-page .hero-grid {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding-top: clamp(2.5rem, 7vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(330px, 0.78fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.uilc-page .hero-copy {
  max-width: 760px;
  animation: uilc-hero-enter 820ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.uilc-page .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  color: #817038;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.uilc-page .hero-copy h1 {
  margin: 0;
  font-size: clamp(3.75rem, 6.45vw, 7.65rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.055em;
}

.uilc-page .hero-copy h1 span {
  display: block;
  max-width: 760px;
  margin-top: 0.34em;
  color: #817038;
  font-size: 0.48em;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.uilc-page .hero-description {
  max-width: 670px;
  margin: 2rem 0 0;
  color: #3d3d38;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.66;
}

.uilc-page .hero-description-secondary {
  margin-top: 0.45rem;
}

.uilc-page .hero-promise {
  margin-top: 1.55rem;
  padding-right: 1rem;
  border-right: 2px solid #817038;
  font-size: clamp(1.08rem, 1.4vw, 1.35rem);
  font-weight: 700;
}

.uilc-page .hero-action-row {
  margin-top: 2.15rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.uilc-page .primary-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 3.65rem;
  padding: 0 1.4rem;
  border-radius: 0;
  border: 1px solid rgba(205, 184, 109, 0.68);
  background:
    radial-gradient(circle at 76% 0%, rgba(205, 184, 109, 0.22), transparent 44%),
    linear-gradient(135deg, #11110f 0%, #292513 48%, #151511 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow:
    0 14px 34px rgba(96, 82, 34, 0.2),
    0 0 0 1px rgba(205, 184, 109, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  animation: uilc-cta-breathe 3.8s ease-in-out infinite;
  transition: color 220ms ease, transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.uilc-page .primary-cta::after,
.uilc-page .checkout-submit::after,
.uilc-page .sticky-button::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: -45%;
  bottom: -45%;
  left: -68%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(255, 248, 210, 0.42), transparent);
  transform: skewX(-18deg);
  pointer-events: none;
  animation: uilc-cta-shine 4.8s cubic-bezier(0.55, 0, 0.25, 1) infinite;
}

.uilc-page .primary-cta > span,
.uilc-page .primary-cta > svg,
.uilc-page .checkout-submit > span,
.uilc-page .checkout-submit > svg,
.uilc-page .sticky-button > span {
  position: relative;
  z-index: 1;
}

.uilc-page .primary-cta svg,
.uilc-page .checkout-submit svg {
  flex: 0 0 auto;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.uilc-page .primary-cta:hover {
  animation-play-state: paused;
  border-color: rgba(237, 218, 146, 0.92);
  color: #fff;
  transform: translateY(-3px);
  box-shadow:
    0 18px 46px rgba(129, 112, 56, 0.38),
    0 0 24px rgba(205, 184, 109, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.uilc-page .primary-cta:hover svg,
.uilc-page .checkout-submit:hover svg {
  transform: translateX(-4px);
}

.uilc-page .primary-cta:active,
.uilc-page .checkout-submit:active,
.uilc-page .sticky-button:active {
  transform: translateY(0) scale(0.985);
}

.uilc-page .primary-cta:focus-visible,
.uilc-page .checkout-submit:focus-visible,
.uilc-page .sticky-button:focus-visible {
  outline: 3px solid rgba(205, 184, 109, 0.38);
  outline-offset: 4px;
}

.uilc-page .primary-cta-light {
  border-color: rgba(221, 204, 139, 0.8);
  background:
    radial-gradient(circle at 78% 0%, rgba(205, 184, 109, 0.28), transparent 42%),
    linear-gradient(135deg, #fff 0%, #f7f2df 52%, #fff 100%);
  color: #171713;
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.2),
    0 0 26px rgba(205, 184, 109, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  animation-name: uilc-cta-light-breathe;
}

.uilc-page .primary-cta-light:hover {
  border-color: #eadb9e;
  color: #171713;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.28),
    0 0 32px rgba(205, 184, 109, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@keyframes uilc-cta-breathe {
  0%, 100% {
    box-shadow:
      0 14px 34px rgba(96, 82, 34, 0.2),
      0 0 0 1px rgba(205, 184, 109, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
  }
  50% {
    box-shadow:
      0 17px 42px rgba(129, 112, 56, 0.3),
      0 0 22px rgba(205, 184, 109, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

@keyframes uilc-cta-light-breathe {
  0%, 100% {
    box-shadow:
      0 16px 40px rgba(0, 0, 0, 0.2),
      0 0 26px rgba(205, 184, 109, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
  }
  50% {
    box-shadow:
      0 18px 46px rgba(0, 0, 0, 0.24),
      0 0 32px rgba(205, 184, 109, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }
}

@keyframes uilc-cta-shine {
  0%, 58% {
    left: -68%;
    opacity: 0;
  }
  64% {
    opacity: 1;
  }
  82%, 100% {
    left: 132%;
    opacity: 0;
  }
}

.uilc-page .price-lockup {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 0.7rem;
  line-height: 1;
}

.uilc-page .launch-label {
  grid-column: 1 / -1;
  margin-bottom: 0.35rem;
  color: #817038;
  font-size: 0.78rem;
  font-weight: 700;
}

.uilc-page .launch-price {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.uilc-page .price-lockup del {
  color: #85857e;
  font-size: 1rem;
}

.uilc-page .hero-trust {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  color: #67675f;
  font-size: 0.9rem;
}

.uilc-page .hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.uilc-page .hero-trust svg {
  color: #817038;
}

.uilc-page .land-intelligence {
  position: relative;
  aspect-ratio: 0.82;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(22, 24, 20, 0.22), rgba(10, 11, 9, 0.68)),
    url("land-aerial.webp") center / cover;
  box-shadow: 0 2.5rem 7rem rgba(17, 17, 15, 0.21);
  animation: uilc-visual-enter 900ms 100ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.uilc-page .land-intelligence::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.62));
  pointer-events: none;
}

.uilc-page .map-meta {
  position: absolute;
  z-index: 3;
  left: 1.4rem;
  right: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  direction: ltr;
}

.uilc-page .map-meta-top {
  top: 1.4rem;
}

.uilc-page .map-meta-bottom {
  bottom: 1.4rem;
  justify-content: flex-start;
  gap: 0.7rem;
  direction: rtl;
  font-family: "Assistant", Arial, sans-serif;
  letter-spacing: 0;
}

.uilc-page .map-meta-bottom i {
  width: 1.5rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.uilc-page .parcel-field {
  position: absolute;
  inset: 10% 8% 15%;
  transform: rotate(-8deg);
}

.uilc-page .parcel {
  position: absolute;
  border: 1px solid rgba(217, 198, 126, 0.62);
  background: rgba(129, 112, 56, 0.05);
}

.uilc-page .parcel-a { inset: 2% 42% 55% 2%; }
.uilc-page .parcel-b { inset: 8% 5% 42% 59%; }
.uilc-page .parcel-c { inset: 48% 50% 8% 8%; }
.uilc-page .parcel-d { inset: 58% 4% 1% 55%; }

.uilc-page .uilc-scan-line {
  position: absolute;
  z-index: 2;
  top: 42%;
  left: -10%;
  width: 120%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4bc66, transparent);
  box-shadow: 0 0 18px rgba(212, 188, 102, 0.8);
  animation: uilc-scan 4.8s ease-in-out infinite;
}

.uilc-page .map-point {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #e6d8a7;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(230, 216, 167, 0.08);
}

.uilc-page .point-a { top: 31%; right: 25%; }
.uilc-page .point-b { bottom: 19%; left: 27%; }

.uilc-page .intelligence-card {
  position: absolute;
  z-index: 4;
  right: 1.4rem;
  bottom: 4.3rem;
  left: 1.4rem;
  min-height: 5.8rem;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(16, 17, 14, 0.72);
  color: white;
  backdrop-filter: blur(12px);
}

.uilc-page .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9af52;
  box-shadow: 0 0 0 6px rgba(201, 175, 82, 0.12);
}

.uilc-page .intelligence-card small,
.uilc-page .intelligence-card strong {
  display: block;
}

.uilc-page .intelligence-card small {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

.uilc-page .intelligence-card strong {
  font-size: 1.05rem;
  font-weight: 600;
}

.uilc-page .card-index {
  color: rgba(255, 255, 255, 0.25);
  font-size: 2.4rem;
  font-weight: 300;
}

.uilc-page .change-section {
  position: relative;
  overflow: hidden;
  padding: clamp(6rem, 11vw, 11rem) 0 0;
  background: #11110f;
  color: #fff;
}

.uilc-page .change-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px) 0 0 / 14rem 100%,
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px) 0 0 / 100% 9rem;
  pointer-events: none;
}

.uilc-page .change-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 9rem);
}

.uilc-page .change-copy h2 {
  max-width: 760px;
  margin: 1.4rem 0 0;
  font-size: clamp(2.7rem, 5.5vw, 6.1rem);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.045em;
}

.uilc-page .change-copy h2 span {
  display: block;
  margin-top: 0.24em;
  color: #cdb86d;
  font-weight: 400;
}

.uilc-page .insight-list {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.uilc-page .insight-line {
  min-height: 4.15rem;
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  opacity: 0.72;
  transition: opacity 220ms ease, padding 220ms ease;
}

.uilc-page .insight-line:hover {
  padding-right: 0.55rem;
  opacity: 1;
}

.uilc-page .insight-line span {
  color: #a9944d;
  font-family: ui-monospace, monospace;
  font-size: 0.76rem;
}

.uilc-page .insight-line p {
  margin: 0;
  font-size: clamp(1.08rem, 1.65vw, 1.45rem);
}

.uilc-page .change-note {
  max-width: 650px;
  margin: 2rem 0 0;
  color: rgba(255,255,255,0.56);
  font-size: 1rem;
  line-height: 1.7;
}

.uilc-page .layer-visual {
  position: relative;
  min-height: min(70vw, 760px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(12,13,11,0.2), rgba(12,13,11,0.7)),
    url("land-aerial.webp") center / cover;
}

.uilc-page .layer-visual::before,
.uilc-page .layer-visual::after {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(205,184,109,0.48);
  clip-path: polygon(4% 14%, 42% 2%, 56% 28%, 92% 20%, 97% 64%, 70% 94%, 33% 80%, 5% 91%);
}

.uilc-page .layer-visual::after {
  inset: 20% 14% 16% 26%;
  border-color: rgba(255,255,255,0.38);
  clip-path: polygon(8% 8%, 91% 1%, 98% 45%, 76% 91%, 16% 82%, 1% 47%);
}

.uilc-page .layer-labels {
  position: absolute;
  z-index: 4;
  top: 1.4rem;
  right: 1.4rem;
  left: 1.4rem;
  display: flex;
  gap: 0.55rem;
}

.uilc-page .layer-labels span {
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.23);
  background: rgba(13,14,12,0.45);
  color: rgba(255,255,255,0.7);
  font-size: 0.76rem;
  backdrop-filter: blur(8px);
}

.uilc-page .planning-zone {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(205,184,109,0.72);
  background: rgba(129,112,56,0.13);
}

.uilc-page .zone-one {
  inset: 27% 49% 46% 13%;
  transform: rotate(7deg);
}

.uilc-page .zone-two {
  inset: 55% 13% 16% 57%;
  transform: rotate(-10deg);
}

.uilc-page .planning-ring {
  position: absolute;
  z-index: 3;
  top: 42%;
  left: 45%;
  width: 10rem;
  aspect-ratio: 1;
  border: 1px solid rgba(230,216,167,0.72);
  border-radius: 50%;
  box-shadow: 0 0 0 1.5rem rgba(205,184,109,0.06), 0 0 0 3.5rem rgba(205,184,109,0.035);
}

.uilc-page .planning-ring::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 5px;
  height: 5px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #d8c679;
}

.uilc-page .coordinate {
  position: absolute;
  z-index: 3;
  color: rgba(255,255,255,0.66);
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.uilc-page .coordinate-a { right: 1.5rem; bottom: 1.45rem; }
.uilc-page .coordinate-b { left: 1.5rem; bottom: 1.45rem; }

.uilc-page .change-question {
  position: relative;
  width: min(100%, 1440px);
  margin: clamp(5rem, 10vw, 10rem) auto 0;
  padding: clamp(3.5rem, 7vw, 6.5rem) clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
}

.uilc-page .change-question p,
.uilc-page .change-question strong {
  margin: 0;
  display: block;
  font-size: clamp(2rem, 4.8vw, 5.1rem);
  line-height: 1.06;
}

.uilc-page .change-question p {
  color: rgba(255,255,255,0.42);
  font-weight: 300;
}

.uilc-page .change-question strong {
  margin-top: 0.18em;
  color: #cdb86d;
  font-weight: 650;
}

.uilc-page .checks-section {
  padding: clamp(6rem, 10vw, 10rem) 0;
  background: #f7f7f5;
}

.uilc-page .checks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #cdcdc5;
  border-right: 1px solid #cdcdc5;
}

.uilc-page .check-card {
  min-height: 315px;
  padding: clamp(1.5rem, 3vw, 2.8rem);
  border-left: 1px solid #cdcdc5;
  border-bottom: 1px solid #cdcdc5;
  background: rgba(255,255,255,0.3);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.uilc-page .check-card:hover {
  position: relative;
  z-index: 2;
  background: #fff;
  transform: translateY(-5px);
  box-shadow: 0 1.7rem 4rem rgba(17,17,15,0.08);
}

.uilc-page .check-card-accent,
.uilc-page .check-card-accent:hover {
  background: #817038;
  color: #fff;
}

.uilc-page .card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #817038;
}

.uilc-page .check-card-accent .card-topline {
  color: #fff;
}

.uilc-page .card-topline span {
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
  opacity: 0.55;
}

.uilc-page .check-card h3 {
  margin: clamp(3rem, 5vw, 5.4rem) 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

.uilc-page .check-card p {
  max-width: 350px;
  margin: 0.75rem 0 0;
  color: #686860;
  font-size: 1.03rem;
  line-height: 1.62;
}

.uilc-page .check-card-accent p {
  color: rgba(255,255,255,0.74);
}

.uilc-page .meaning-statement {
  margin-top: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.2em;
  font-size: clamp(2.35rem, 5vw, 5.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.uilc-page .meaning-statement span {
  color: #a7a79f;
  font-weight: 300;
}

.uilc-page .meaning-statement strong {
  color: #817038;
  font-weight: 700;
}

.uilc-page .mid-cta-section {
  padding: clamp(5rem, 9vw, 9rem) 0;
  background: #817038;
  color: #fff;
}

.uilc-page .mid-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.72fr;
  align-items: end;
  gap: clamp(3rem, 9vw, 10rem);
}

.uilc-page .mid-cta-grid h2 {
  max-width: 800px;
  margin: 1.2rem 0 0;
  font-size: clamp(3rem, 5.8vw, 6.6rem);
  font-weight: 700;
  line-height: 0.93;
  letter-spacing: -0.05em;
}

.uilc-page .mid-cta-grid h2 span {
  display: block;
  margin-top: 0.26em;
  color: rgba(255,255,255,0.6);
  font-size: 0.58em;
  font-weight: 400;
  line-height: 1.05;
}

.uilc-page .mid-cta-action p {
  max-width: 530px;
  margin: 0;
  color: rgba(255,255,255,0.77);
  font-size: 1.12rem;
  line-height: 1.68;
}

.uilc-page .mid-price {
  margin: 2rem 0 1.2rem;
  font-size: 1rem;
}

.uilc-page .mid-price strong {
  font-size: 1.55rem;
}

.uilc-page .scenarios-section {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: #e9e9e4;
}

.uilc-page .scenario-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.uilc-page .scenario-card {
  min-height: 310px;
  padding: clamp(1.5rem, 2.5vw, 2.4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f7f7f5;
  border: 1px solid rgba(17,17,15,0.1);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.uilc-page .scenario-card:nth-child(1),
.uilc-page .scenario-card:nth-child(4) {
  grid-column: span 2;
}

.uilc-page .scenario-card:nth-child(2),
.uilc-page .scenario-card:nth-child(3) {
  grid-column: span 2;
}

.uilc-page .scenario-card:nth-child(5) {
  grid-column: 2 / span 4;
  min-height: 250px;
}

.uilc-page .scenario-card:hover {
  background: #171713;
  color: #fff;
  transform: translateY(-5px);
}

.uilc-page .scenario-card > span {
  color: #817038;
  font-family: ui-monospace, monospace;
  font-size: 0.78rem;
}

.uilc-page .scenario-card blockquote {
  max-width: 520px;
  margin: 3rem 0 0;
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.02em;
}

.uilc-page .scenario-close {
  max-width: 900px;
  margin: clamp(3.5rem, 6vw, 6rem) 0 0;
  font-size: clamp(1.8rem, 3.4vw, 3.8rem);
  line-height: 1.12;
}

.uilc-page .scenario-close strong {
  color: #817038;
}

.uilc-page .process-section {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: #fff;
}

.uilc-page .process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.uilc-page .process-grid::before {
  content: "";
  position: absolute;
  top: 7.05rem;
  right: 1.4rem;
  left: 1.4rem;
  height: 1px;
  background: #d6d6cf;
}

.uilc-page .process-step {
  position: relative;
  min-height: 350px;
  padding: 0 clamp(1rem, 2.4vw, 2.3rem);
  border-left: 1px solid #e0e0da;
}

.uilc-page .process-step:last-child {
  border-left: 0;
}

.uilc-page .step-number {
  display: block;
  color: #dadad4;
  font-size: clamp(4.7rem, 7vw, 8.4rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.uilc-page .step-marker {
  position: relative;
  height: 3.2rem;
  display: flex;
  align-items: center;
}

.uilc-page .step-marker i {
  position: relative;
  z-index: 2;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #817038;
  box-shadow: 0 0 0 1px #817038;
}

.uilc-page .process-step h3 {
  margin: 1.3rem 0 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
}

.uilc-page .process-step p {
  max-width: 270px;
  margin: 0.65rem 0 0;
  color: #6e6e67;
  font-size: 1rem;
  line-height: 1.65;
}

.uilc-page .clarity-section {
  padding: clamp(7rem, 13vw, 13rem) 0;
  background: #11110f;
  color: #fff;
}

.uilc-page .clarity-wrap {
  text-align: center;
}

.uilc-page .clarity-wrap .section-kicker {
  justify-content: center;
}

.uilc-page .clarity-wrap h2 {
  max-width: 1160px;
  margin: 2rem auto 0;
  font-size: clamp(3rem, 6.3vw, 7rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.uilc-page .clarity-wrap h2 span {
  display: block;
  margin-top: 0.17em;
  color: #cdb86d;
  font-weight: 350;
}

.uilc-page .clarity-intro {
  max-width: 720px;
  margin: 3rem auto 0;
  color: rgba(255,255,255,0.63);
  font-size: 1.15rem;
  line-height: 1.75;
}

.uilc-page .clarity-points {
  max-width: 1000px;
  margin: 4.2rem auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.uilc-page .clarity-points span {
  min-height: 7.5rem;
  padding: 1rem;
  display: grid;
  place-items: center;
  border-left: 1px solid rgba(255,255,255,0.18);
  font-size: 1.04rem;
}

.uilc-page .clarity-points span:last-child {
  border-left: 0;
}

.uilc-page .clarity-close {
  max-width: 850px;
  margin: 3rem auto 0;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
}

.uilc-page .checkout-section {
  scroll-margin-top: 1rem;
  padding: clamp(6rem, 11vw, 11rem) 0 clamp(4rem, 8vw, 8rem);
  background:
    linear-gradient(rgba(17,17,15,0.035) 1px, transparent 1px) 0 0 / 100% 7rem,
    #f1f1ed;
}

.uilc-page .checkout-heading {
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.uilc-page .checkout-heading h2 {
  margin: 1.1rem 0 0;
  font-size: clamp(3rem, 5.6vw, 6.4rem);
  font-weight: 750;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.uilc-page .checkout-heading p {
  margin: 1rem 0 0;
  color: #64645d;
  font-size: 1.1rem;
}

.uilc-page .checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.66fr);
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.uilc-page .details-panel,
.uilc-page .order-panel {
  border: 1px solid #d4d4cd;
  background: #fff;
}

.uilc-page .details-panel {
  padding: clamp(1.4rem, 3.5vw, 3.4rem);
}

.uilc-page .panel-heading {
  padding-bottom: 1.7rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem;
  border-bottom: 1px solid #deded7;
}

.uilc-page .panel-heading > span {
  color: #817038;
  font-family: ui-monospace, monospace;
  font-size: 0.8rem;
}

.uilc-page .panel-heading h3 {
  margin: 0;
  font-size: clamp(1.65rem, 2.4vw, 2.3rem);
  font-weight: 700;
}

.uilc-page .panel-heading p {
  margin: 0.3rem 0 0;
  color: #77776f;
  font-size: 0.92rem;
}

.uilc-page .form-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem;
}

.uilc-page .field {
  min-width: 0;
  display: grid;
  gap: 0.48rem;
}

.uilc-page .field-full {
  grid-column: 1 / -1;
}

.uilc-page .field > span,
.uilc-page .field > label {
  color: #3f3f3a;
  font-size: 0.92rem;
  font-weight: 700;
}

.uilc-page .field input,
.uilc-page .field textarea,
.uilc-page .select-control {
  width: 100%;
  min-height: 3.35rem;
  border: 1px solid #d4d4cd;
  border-radius: 0;
  background: #fafaf8;
  color: #171713;
  box-shadow: none;
  font-size: 1rem;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.uilc-page .relationship-field [data-slot="native-select-wrapper"] {
  width: 100%;
}

.uilc-page .relationship-select {
  color-scheme: light;
  padding-right: 0.95rem;
  padding-left: 2.75rem;
  text-align: right;
}

.uilc-page .relationship-field [data-slot="native-select-icon"] {
  right: auto;
  left: 0.95rem;
}

.uilc-page .relationship-select option {
  background: #ffffff;
  color: #171713;
}

.uilc-page .field input,
.uilc-page .field textarea {
  padding-inline: 0.95rem;
}

.uilc-page .field textarea {
  min-height: 7rem;
  padding-block: 0.8rem;
  resize: vertical;
}

.uilc-page .field input:focus-visible,
.uilc-page .field textarea:focus-visible,
.uilc-page .select-control:focus-visible {
  border-color: #817038;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(129,112,56,0.12);
  outline: none;
}

.uilc-page .block-parcel-note {
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: #f0efe8;
  color: #67604a;
  font-size: 0.92rem;
}

.uilc-page .consent-stack {
  margin-top: 1.7rem;
  display: grid;
  gap: 0.8rem;
}

.uilc-page .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #5c5c55;
  font-size: 0.87rem;
  line-height: 1.48;
  cursor: pointer;
}

.uilc-page .consent-row button {
  margin-top: 0.2rem;
  border-radius: 2px;
}

.uilc-page .consent-row a {
  color: #817038;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.uilc-page .age-note {
  margin: -0.15rem 2.55rem 0 0;
  color: #76766f;
  font-size: 0.82rem;
  line-height: 1.45;
}

.uilc-page .form-error {
  margin: 1.2rem 0 0;
  padding: 0.8rem 1rem;
  border-right: 3px solid #b52c35;
  background: #fff2f2;
  color: #8b2027;
  font-size: 0.92rem;
}

.uilc-page .review-notice {
  margin: 1.2rem 0 0;
  padding: 0.9rem 1rem;
  border-right: 3px solid #817038;
  background: #f4f1e4;
  color: #61552f;
  font-size: 0.92rem;
  line-height: 1.55;
}

.uilc-page .desktop-order-slot {
  position: sticky;
  top: 1.5rem;
}

.uilc-page .order-panel {
  overflow: hidden;
  background: #171713;
  color: #fff;
}

.uilc-page .panel-heading-light {
  margin: clamp(1.4rem, 3vw, 2.4rem);
  border-color: rgba(255,255,255,0.16);
}

.uilc-page .panel-heading-light p {
  color: rgba(255,255,255,0.5);
}

.uilc-page .order-product {
  margin: 0 clamp(1.4rem, 3vw, 2.4rem);
  padding: 1.4rem 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
}

.uilc-page .order-icon {
  width: 3.3rem;
  height: 3.3rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  color: #cdb86d;
}

.uilc-page .order-product strong,
.uilc-page .order-product span {
  display: block;
}

.uilc-page .order-product strong {
  font-size: 1.14rem;
}

.uilc-page .order-product span {
  margin-top: 0.25rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.84rem;
  line-height: 1.4;
}

.uilc-page .order-price-lines {
  margin: 0 clamp(1.4rem, 3vw, 2.4rem);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.16);
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.uilc-page .order-price-lines > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.uilc-page .order-price-lines > div:first-child {
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem;
}

.uilc-page .launch-total {
  margin-top: 1.1rem;
}

.uilc-page .launch-total span {
  color: #cdb86d;
  font-weight: 700;
}

.uilc-page .launch-total strong {
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.uilc-page .payment-area {
  margin: 0 clamp(1.4rem, 3vw, 2.4rem);
  padding: 1.6rem 0;
}

.uilc-page .payment-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.7rem;
  color: #cdb86d;
}

.uilc-page .payment-title strong {
  color: #fff;
  font-size: 0.96rem;
}

.uilc-page .payment-placeholder {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.65rem;
}

.uilc-page .payment-placeholder > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.uilc-page .payment-line {
  height: 2.8rem;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
}

.uilc-page .payment-line-wide {
  width: 100%;
}

.uilc-page .payment-area p {
  margin: 0.85rem 0 0;
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  line-height: 1.45;
}

.uilc-page .order-security {
  padding: 1rem clamp(1.4rem, 3vw, 2.4rem);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border-top: 1px solid rgba(255,255,255,0.13);
  background: rgba(255,255,255,0.035);
  color: rgba(255,255,255,0.61);
  font-size: 0.82rem;
}

.uilc-page .order-security svg {
  flex: 0 0 auto;
  color: #cdb86d;
}

.uilc-page .order-progress,
.uilc-page .order-review-state {
  padding: 0.9rem 1.2rem;
  background: #817038;
  text-align: center;
  font-size: 0.88rem;
}

.uilc-page .order-review-state {
  background: rgba(205,184,109,0.12);
  color: #d8c884;
  line-height: 1.45;
}

.uilc-page .checkout-submit {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: 4.35rem;
  border-radius: 0;
  border: 1px solid rgba(237, 218, 146, 0.68);
  background:
    radial-gradient(circle at 76% 0%, rgba(255, 247, 206, 0.2), transparent 42%),
    linear-gradient(135deg, #9a8647 0%, #75632e 48%, #8a763a 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 750;
  box-shadow:
    0 16px 36px rgba(70, 57, 21, 0.34),
    0 0 22px rgba(205, 184, 109, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  animation: uilc-checkout-breathe 3.8s ease-in-out infinite;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.uilc-page .checkout-submit:hover {
  animation-play-state: paused;
  border-color: rgba(255, 239, 180, 0.95);
  transform: translateY(-3px);
  box-shadow:
    0 20px 48px rgba(84, 68, 24, 0.46),
    0 0 30px rgba(205, 184, 109, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@keyframes uilc-checkout-breathe {
  0%, 100% {
    box-shadow:
      0 16px 36px rgba(70, 57, 21, 0.34),
      0 0 22px rgba(205, 184, 109, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }
  50% {
    box-shadow:
      0 19px 44px rgba(84, 68, 24, 0.44),
      0 0 30px rgba(205, 184, 109, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
}

.uilc-page .desktop-submit {
  margin-top: 0.8rem;
}

.uilc-page .mobile-order-slot,
.uilc-page .mobile-submit {
  display: none;
}

.uilc-page .service-disclaimer {
  max-width: 980px;
  margin: 2rem auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.7rem;
  color: #67675f;
  font-size: 0.9rem;
  line-height: 1.55;
  text-align: center;
}

.uilc-page .service-disclaimer svg {
  flex: 0 0 auto;
  color: #817038;
}

.uilc-page .service-disclaimer p {
  margin: 0;
}

.uilc-page .faq-section {
  padding: clamp(6rem, 11vw, 11rem) 0;
  background: #fff;
}

.uilc-page .faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(3rem, 9vw, 10rem);
}

.uilc-page .faq-heading {
  position: sticky;
  top: 2rem;
}

.uilc-page .faq-heading h2 {
  margin: 1.1rem 0 0;
  font-size: clamp(3rem, 5vw, 5.4rem);
  font-weight: 750;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.uilc-page .faq-heading p {
  max-width: 360px;
  margin: 1.2rem 0 0;
  color: #66665f;
  font-size: 1.05rem;
  line-height: 1.6;
}

.uilc-page .faq-accordion {
  border-top: 1px solid #cdcdc5;
}

.uilc-page .faq-item {
  border-color: #cdcdc5;
}

.uilc-page .faq-trigger {
  min-height: 5.4rem;
  padding: 1.15rem 0;
  align-items: center;
  border-radius: 0;
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  font-weight: 650;
  text-align: right;
}

.uilc-page .faq-trigger:hover {
  color: #817038;
  text-decoration: none;
}

.uilc-page .faq-content {
  max-width: 760px;
  padding: 0 0 1.6rem;
  color: #686860;
  font-size: 1rem;
  line-height: 1.72;
}

.uilc-page .final-cta-section {
  position: relative;
  min-height: 88svh;
  padding: clamp(6rem, 11vw, 11rem) 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: url("land-aerial.webp") center / cover;
  color: #fff;
}

.uilc-page .final-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,14,12,0.91), rgba(13,14,12,0.72));
}

.uilc-page .final-cta-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.uilc-page .final-cta-content > svg {
  color: #cdb86d;
}

.uilc-page .final-cta-content h2 {
  max-width: 1040px;
  margin: 1.5rem auto 0;
  font-size: clamp(3.2rem, 6.6vw, 7.3rem);
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.uilc-page .final-cta-content > p {
  max-width: 710px;
  margin: 2rem auto 0;
  color: rgba(255,255,255,0.68);
  font-size: 1.12rem;
  line-height: 1.68;
}

.uilc-page .final-product {
  margin: 2.8rem 0 1.3rem;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0.25rem 1rem;
}

.uilc-page .final-product span {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}

.uilc-page .final-product strong {
  font-size: 2.35rem;
}

.uilc-page .final-product small {
  grid-column: 1 / -1;
  color: #cdb86d;
  font-size: 0.8rem;
}

.uilc-page .better-together {
  margin-top: 4.5rem;
  color: rgba(255,255,255,0.48);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  direction: ltr;
}

.uilc-page .site-legal-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #11110f;
  color: #fff;
}

.uilc-page .site-legal-footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.uilc-page .site-legal-footer-grid > div {
  display: grid;
  gap: 0.35rem;
}

.uilc-page .site-legal-footer-grid strong {
  font-size: 0.94rem;
}

.uilc-page .site-legal-footer-grid span {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
}

.uilc-page .site-legal-footer nav,
.uilc-page .legal-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.4rem;
}

.uilc-page .site-legal-footer a,
.uilc-page .legal-footer a {
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
  text-decoration: underline;
  text-decoration-color: rgba(205,184,109,0.42);
  text-underline-offset: 4px;
  transition: color 180ms ease;
}

.uilc-page .site-legal-footer a:hover,
.uilc-page .legal-footer a:hover {
  color: #e2d39a;
}

.uilc-page .mobile-sticky {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
}

.uilc-page .legal-page {
  min-height: 100svh;
  background: #f7f7f5;
}

.uilc-page .legal-hero {
  padding: clamp(4rem, 8vw, 8.5rem) 0 clamp(3rem, 6vw, 6rem);
  border-bottom: 1px solid #d8d8d1;
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgba(17,17,15,0.045) 50%, transparent 50.08%) 0 0 / 13rem 13rem,
    linear-gradient(rgba(17,17,15,0.035) 1px, transparent 1px) 0 0 / 100% 6.5rem,
    #f7f7f5;
}

.uilc-page .legal-hero-inner {
  display: grid;
  justify-items: start;
}

.uilc-page .legal-hero h1 {
  max-width: 980px;
  margin: 1.25rem 0 0;
  font-size: clamp(3.1rem, 6.3vw, 7rem);
  font-weight: 750;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.uilc-page .legal-hero p {
  max-width: 760px;
  margin: 1.6rem 0 0;
  color: #575750;
  font-size: 1.08rem;
  line-height: 1.72;
}

.uilc-page .legal-hero small {
  margin-top: 1.5rem;
  color: #85857d;
  font-size: 0.82rem;
}

.uilc-page .legal-layout {
  padding-block: clamp(3.5rem, 7vw, 7.5rem);
  display: grid;
  grid-template-columns: minmax(250px, 0.34fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 6.5rem);
}

.uilc-page .legal-company-card {
  position: sticky;
  top: 1.5rem;
  padding: 1.6rem;
  display: grid;
  gap: 0.35rem;
  border: 1px solid #d5d5ce;
  background: #fff;
}

.uilc-page .legal-company-card > span {
  margin-bottom: 0.45rem;
  color: #817038;
  font-size: 0.78rem;
  font-weight: 800;
}

.uilc-page .legal-company-card strong {
  font-size: 1.08rem;
}

.uilc-page .legal-company-card p {
  margin: 0;
  color: #696962;
  font-size: 0.88rem;
}

.uilc-page .legal-company-card a {
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: #4d4d47;
  font-size: 0.86rem;
  direction: ltr;
  justify-content: flex-end;
  text-decoration: none;
}

.uilc-page .legal-company-card a:hover {
  color: #817038;
}

.uilc-page .legal-document {
  max-width: 920px;
}

.uilc-page .legal-document section {
  padding: 0 0 2.4rem;
  scroll-margin-top: 2rem;
}

.uilc-page .legal-document section + section {
  padding-top: 2.4rem;
  border-top: 1px solid #d8d8d1;
}

.uilc-page .legal-document h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.uilc-page .legal-document p,
.uilc-page .legal-document li {
  color: #4f4f49;
  font-size: 1rem;
  line-height: 1.82;
}

.uilc-page .legal-document p {
  margin: 0;
}

.uilc-page .legal-document p + p {
  margin-top: 0.9rem;
}

.uilc-page .legal-document ul {
  margin: 1rem 0;
  padding-right: 1.2rem;
}

.uilc-page .legal-document li + li {
  margin-top: 0.65rem;
}

.uilc-page .legal-document a {
  color: #74652f;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.uilc-page .legal-action-link {
  width: fit-content;
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  display: inline-flex;
  border: 1px solid #817038;
  background: #817038;
  color: #fff !important;
  text-decoration: none !important;
}

.uilc-page .legal-action-link:hover {
  background: #6e5f2e;
}

.uilc-page .legal-footer {
  padding: 2rem 0;
  background: #11110f;
  color: #fff;
}

.uilc-page .legal-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.uilc-page .legal-footer-inner > span {
  color: rgba(255,255,255,0.52);
  font-size: 0.8rem;
}

.uilc-page .thank-you-page {
  min-height: 100svh;
  padding: 0 clamp(1.15rem, 4vw, 4.75rem) 4rem;
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgba(17,17,15,0.05) 50%, transparent 50.08%) 0 0 / 13rem 13rem,
    linear-gradient(rgba(17,17,15,0.04) 1px, transparent 1px) 0 0 / 100% 6.5rem,
    #f7f7f5;
}

.uilc-page .thank-you-card {
  width: min(100%, 880px);
  margin: clamp(3rem, 8vw, 8rem) auto 0;
  padding: clamp(2rem, 6vw, 5.5rem);
  border: 1px solid #d4d4cd;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 2.3rem 7rem rgba(17,17,15,0.09);
  text-align: center;
}

.uilc-page .success-mark {
  width: 4.25rem;
  height: 4.25rem;
  margin: 0 auto 1.6rem;
  display: grid;
  place-items: center;
  background: #817038;
  color: #fff;
}

.uilc-page .thank-you-card .section-kicker {
  justify-content: center;
}

.uilc-page .thank-you-card h1 {
  max-width: 720px;
  margin: 1.3rem auto 0;
  font-size: clamp(3rem, 6.3vw, 6rem);
  font-weight: 750;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.uilc-page .thank-you-card > p {
  max-width: 620px;
  margin: 1.8rem auto 0;
  color: #62625b;
  font-size: 1.12rem;
  line-height: 1.7;
}

.uilc-page .thank-you-details {
  max-width: 660px;
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #d7d7d0;
}

.uilc-page .thank-you-details > div {
  min-height: 6.3rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  color: #4f4f49;
  font-size: 0.95rem;
}

.uilc-page .thank-you-details > div:first-child {
  border-left: 1px solid #d7d7d0;
}

.uilc-page .thank-you-details svg {
  flex: 0 0 auto;
  color: #817038;
}

.uilc-page .order-number {
  margin: 2rem auto 0;
  display: grid;
  justify-items: center;
  gap: 0.25rem;
}

.uilc-page .order-number span {
  color: #77776f;
  font-size: 0.82rem;
}

.uilc-page .order-number strong {
  font-family: ui-monospace, monospace;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.uilc-page .thank-you-button {
  margin-top: 2rem;
}

.uilc-page .thank-you-card .better-together {
  color: #96968e;
}

@keyframes uilc-hero-enter {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes uilc-visual-enter {
  from { opacity: 0; transform: translateX(-26px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes uilc-scan {
  0%, 100% { transform: translateY(-110px); opacity: 0.2; }
  50% { transform: translateY(150px); opacity: 1; }
}

@media (max-width: 1180px) {
  .uilc-page .site-main-nav {
    display: none;
  }

  .uilc-page .site-mobile-menu-trigger {
    display: inline-flex;
  }
}

@media (max-width: 1120px) {
  .uilc-page .hero-grid {
    gap: 3rem;
  }

  .uilc-page .hero-copy h1 {
    font-size: clamp(3.7rem, 7.5vw, 6.3rem);
  }

  .uilc-page .checks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .uilc-page .scenario-track {
    grid-template-columns: repeat(4, 1fr);
  }

  .uilc-page .scenario-card:nth-child(n) {
    grid-column: span 2;
  }

  .uilc-page .scenario-card:nth-child(5) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 920px) {
  .uilc-page .hero-grid,
.uilc-page .change-grid,
.uilc-page .mid-cta-grid,
.uilc-page .checkout-grid,
.uilc-page .faq-grid {
    grid-template-columns: 1fr;
  }

  .uilc-page .hero-grid {
    gap: 3.5rem;
  }

  .uilc-page .land-intelligence {
    width: min(100%, 720px);
    aspect-ratio: 1.12;
    min-height: 470px;
  }

  .uilc-page .change-grid {
    gap: 4.5rem;
  }

  .uilc-page .layer-visual {
    min-height: 600px;
  }

  .uilc-page .mid-cta-grid {
    align-items: start;
    gap: 2.5rem;
  }

  .uilc-page .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 0;
  }

  .uilc-page .process-grid::before {
    display: none;
  }

  .uilc-page .process-step {
    min-height: 300px;
  }

  .uilc-page .clarity-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .uilc-page .clarity-points span:nth-child(2) {
    border-left: 0;
  }

  .uilc-page .clarity-points span:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }

  .uilc-page .desktop-order-slot,
.uilc-page .desktop-submit {
    display: none;
  }

  .uilc-page .mobile-order-slot {
    margin-top: 1.7rem;
    display: block;
  }

  .uilc-page .mobile-submit {
    margin-top: 0.8rem;
    display: inline-flex;
  }

  .uilc-page .faq-heading {
    position: static;
  }

  .uilc-page .legal-layout {
    grid-template-columns: 1fr;
  }

  .uilc-page .legal-company-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .uilc-page .section-wrap {
    width: min(calc(100% - 2.3rem), 1440px);
  }

  .uilc-page .section-heading {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .uilc-page .section-heading p {
    margin: 0;
  }

  .uilc-page .hero-section {
    min-height: auto;
    padding-inline: 1.15rem;
    padding-bottom: 3.5rem;
  }

  .uilc-page .site-header {
    min-height: auto;
  }

  .uilc-page .site-header-inner {
    min-height: 5.2rem;
  }

  .uilc-page .site-header-contained .site-header-inner {
    width: min(calc(100% - 2.3rem), 1440px);
  }

  .uilc-page .brand-logo {
    width: 96px;
  }

  .uilc-page .site-mobile-menu-trigger {
    min-height: 2.75rem;
    padding-inline: 0.8rem;
    font-size: 0.84rem;
  }

  .uilc-page .hero-grid {
    padding-top: 2.65rem;
    gap: 2.8rem;
  }

  .uilc-page .eyebrow {
    margin-bottom: 1.1rem;
  }

  .uilc-page .hero-copy h1 {
    font-size: clamp(3.15rem, 16.7vw, 5.1rem);
  }

  .uilc-page .hero-copy h1 span {
    font-size: 0.44em;
  }

  .uilc-page .hero-description {
    margin-top: 1.6rem;
    font-size: 1rem;
  }

  .uilc-page .hero-action-row {
    align-items: stretch;
    flex-direction: column;
    gap: 1.2rem;
  }

  .uilc-page .primary-cta {
    width: 100%;
    min-height: 3.75rem;
  }

  .uilc-page .price-lockup {
    align-self: flex-start;
  }

  .uilc-page .hero-trust {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .uilc-page .land-intelligence {
    width: calc(100% + 2.3rem);
    margin-right: -1.15rem;
    aspect-ratio: 0.91;
    min-height: 465px;
  }

  .uilc-page .change-section {
    padding-top: 6rem;
  }

  .uilc-page .change-copy h2,
.uilc-page .mid-cta-grid h2,
.uilc-page .clarity-wrap h2,
.uilc-page .final-cta-content h2 {
    letter-spacing: -0.035em;
  }

  .uilc-page .layer-visual {
    width: calc(100% + 2.3rem);
    min-height: 490px;
    margin-right: -1.15rem;
  }

  .uilc-page .planning-ring {
    width: 7rem;
  }

  .uilc-page .change-question {
    margin-top: 4.5rem;
  }

  .uilc-page .checks-grid {
    grid-template-columns: 1fr;
  }

  .uilc-page .check-card {
    min-height: 260px;
  }

  .uilc-page .check-card h3 {
    margin-top: 3.5rem;
  }

  .uilc-page .meaning-statement {
    display: block;
    font-size: clamp(2.6rem, 12vw, 4.4rem);
  }

  .uilc-page .meaning-statement strong {
    display: block;
  }

  .uilc-page .mid-cta-action p {
    font-size: 1rem;
  }

  .uilc-page .scenario-track {
    width: calc(100% + 1.15rem);
    margin-left: -1.15rem;
    padding-left: 1.15rem;
    display: flex;
    gap: 0.8rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .uilc-page .scenario-track::-webkit-scrollbar {
    display: none;
  }

  .uilc-page .scenario-card:nth-child(n) {
    flex: 0 0 min(82vw, 330px);
    min-height: 300px;
    scroll-snap-align: start;
  }

  .uilc-page .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .uilc-page .process-step {
    min-height: auto;
    padding: 2rem 0 2.6rem;
    display: grid;
    grid-template-columns: 5rem 1fr;
    gap: 0 1.2rem;
    border-bottom: 1px solid #deded8;
    border-left: 0;
  }

  .uilc-page .step-number {
    grid-row: 1 / span 3;
    font-size: 4.8rem;
  }

  .uilc-page .step-marker {
    display: none;
  }

  .uilc-page .process-step h3 {
    margin: 0;
  }

  .uilc-page .process-step p {
    margin-top: 0.4rem;
  }

  .uilc-page .clarity-points {
    grid-template-columns: 1fr;
  }

  .uilc-page .clarity-points span {
    min-height: 5.4rem;
    border-bottom: 1px solid rgba(255,255,255,0.18);
    border-left: 0;
  }

  .uilc-page .clarity-points span:last-child {
    border-bottom: 0;
  }

  .uilc-page .checkout-section {
    padding-bottom: 5rem;
  }

  .uilc-page .details-panel {
    width: calc(100% + 2.3rem);
    margin-right: -1.15rem;
    border-right: 0;
    border-left: 0;
  }

  .uilc-page .form-grid {
    grid-template-columns: 1fr;
  }

  .uilc-page .field-full {
    grid-column: auto;
  }

  .uilc-page .mobile-order-slot {
    width: calc(100% + 2rem);
    margin-right: -1rem;
  }

  .uilc-page .service-disclaimer {
    text-align: right;
  }

  .uilc-page .faq-trigger {
    min-height: 4.8rem;
  }

  .uilc-page .final-cta-section {
    min-height: 90svh;
    padding-bottom: 8rem;
  }

  .uilc-page .final-product {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .uilc-page .final-product small {
    grid-column: auto;
  }

  .uilc-page .site-legal-footer-grid,
.uilc-page .legal-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .uilc-page .site-legal-footer {
    padding-bottom: 7rem;
  }

  .uilc-page .site-legal-footer nav,
.uilc-page .legal-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .uilc-page .legal-hero h1 {
    font-size: clamp(2.8rem, 13.5vw, 4.8rem);
    letter-spacing: -0.035em;
  }

  .uilc-page .legal-hero p {
    font-size: 1rem;
  }

  .uilc-page .legal-layout {
    padding-top: 2rem;
  }

  .uilc-page .legal-company-card {
    width: calc(100% + 2.3rem);
    margin-right: -1.15rem;
    padding-inline: 1.15rem;
    border-right: 0;
    border-left: 0;
  }

  .uilc-page .legal-document p,
.uilc-page .legal-document li {
    font-size: 1rem;
    line-height: 1.75;
  }

  .uilc-page .mobile-sticky {
    padding: 0.72rem max(0.8rem, env(safe-area-inset-right)) calc(0.72rem + env(safe-area-inset-bottom)) max(0.8rem, env(safe-area-inset-left));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    border-top: 1px solid rgba(255,255,255,0.14);
    background: rgba(17,17,15,0.94);
    color: #fff;
    backdrop-filter: blur(14px);
    transform: translateY(110%);
    transition: transform 280ms cubic-bezier(0.22,1,0.36,1);
  }

  .uilc-page .mobile-sticky-visible {
    transform: translateY(0);
  }

  .uilc-page .mobile-sticky > div {
    display: grid;
  }

  .uilc-page .mobile-sticky > div span {
    color: rgba(255,255,255,0.58);
    font-size: 0.76rem;
  }

  .uilc-page .mobile-sticky strong {
    font-size: 1.2rem;
  }

  .uilc-page .sticky-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: 2.85rem;
    padding-inline: 1rem;
    border-radius: 0;
    border: 1px solid rgba(237, 218, 146, 0.76);
    background: linear-gradient(135deg, #9b8749 0%, #725f2c 100%);
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow:
      0 8px 24px rgba(129, 112, 56, 0.34),
      0 0 18px rgba(205, 184, 109, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.24);
  }

  .uilc-page .thank-you-page {
    padding-inline: 1.15rem;
  }

  .uilc-page .thank-you-card {
    width: calc(100% + 2.3rem);
    margin-right: -1.15rem;
    padding: 3.2rem 1.15rem;
    border-right: 0;
    border-left: 0;
  }

  .uilc-page .thank-you-details {
    grid-template-columns: 1fr;
  }

  .uilc-page .thank-you-details > div:first-child {
    border-bottom: 1px solid #d7d7d0;
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .uilc-page {
    scroll-behavior: auto;
  }

  .uilc-page,
.uilc-page *,
.uilc-page *::before,
.uilc-page *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .uilc-page [data-reveal] {
    opacity: 1;
    transform: none;
  }
}


/* WordPress integration layer */
.uilc-page {
  width: 100%;
  max-width: none;
  direction: rtl;
  overflow: clip;
  background: #f7f7f5;
  color: #11110f;
  font-family: "Assistant", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.uilc-page .site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.uilc-page h1,
.uilc-page h2,
.uilc-page h3,
.uilc-page p,
.uilc-page blockquote {
  font-family: inherit;
}

.uilc-page .primary-cta,
.uilc-page .checkout-submit,
.uilc-page .sticky-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.72rem;
  cursor: pointer;
  text-decoration: none;
}

.uilc-page .checkout-submit {
  padding-inline: 1.15rem;
}

.uilc-page .consent-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1.22rem;
  height: 1.22rem;
  margin: 0.18rem 0 0;
  border: 1px solid #c8c8c0;
  accent-color: #817038;
  cursor: pointer;
}

.uilc-page .relationship-select {
  display: block;
  padding: 0 0.95rem;
  border-radius: 0;
  background-color: #fafaf8 !important;
  color: #171713 !important;
  -webkit-text-fill-color: #171713;
  color-scheme: light;
}

.uilc-page .relationship-select option {
  background-color: #fff !important;
  color: #171713 !important;
  -webkit-text-fill-color: #171713;
}

.uilc-page .faq-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  border-bottom: 1px solid #cdcdc5;
  background: transparent;
  color: #171713;
  cursor: pointer;
}

.uilc-page .faq-plus {
  flex: 0 0 auto;
  color: #817038;
  font-size: 1.65rem;
  font-weight: 300;
  transition: transform 180ms ease;
}

.uilc-page .faq-trigger[aria-expanded="true"] .faq-plus {
  transform: rotate(45deg);
}

.uilc-page .faq-content p {
  margin: 0;
}

.uilc-page [hidden] {
  display: none !important;
}

.uilc-page .uilc-icon,
.uilc-page svg {
  pointer-events: none;
}

@media (max-width: 680px) {
  .uilc-page input,
  .uilc-page textarea,
  .uilc-page select {
    font-size: 16px !important;
  }

  .uilc-page .relationship-select {
    -webkit-appearance: menulist;
    appearance: auto;
    min-height: 3.65rem;
    background-color: #fff !important;
  }
}
