@font-face {
  font-family: "Ziclets";
  src: url("assets/ziclets-medium.woff2") format("woff2");
  font-display: swap;
  font-weight: normal;
}

@font-face {
  font-family: "Reenie Local";
  src: url("assets/dm-sans.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

:root {
  --brown: #584330;
  --brown-deep: #302319;
  --brown-soft: #79624e;
  --gold: #a4845a;
  --peach: #facebd;
  --cream: #f7f1e6;
  --sand: #e8dfd3;
  --white: #ffffff;
  --ink: #33271d;
  --muted: #76695f;
  --line: rgba(88, 67, 48, 0.16);
  --radius-sm: 16px;
  --radius: 24px;
  --radius-lg: 32px;
  --shadow: 0 32px 90px rgba(48, 35, 25, 0.18);
  --wrap: min(1240px, calc(100vw - 112px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--brown-deep);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--brown-deep);
  background: var(--peach);
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 3px;
  background: rgba(255, 255, 255, 0.14);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--peach);
  transform-origin: left;
}

.topbar {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 50%;
  width: min(1320px, calc(100vw - 36px));
  height: 62px;
  padding: 0 16px 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  color: var(--white);
  background: rgba(48, 35, 25, 0.76);
  box-shadow: 0 16px 40px rgba(33, 23, 17, 0.12);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: background 250ms ease, border 250ms ease;
}

.brandmark {
  display: inline-flex;
  align-items: center;
  width: 72px;
}

.brandmark img {
  width: 72px;
  height: auto;
  filter: brightness(0) invert(1);
}

.topbar__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.topbar__divider {
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
}

.prepared {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: var(--brown);
}

.prepared span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.prepared img {
  width: 102px;
  height: auto;
  filter: grayscale(1) sepia(0.75) saturate(1.2) brightness(0.7);
}

.menu-toggle {
  display: none;
}

.slide-nav {
  position: fixed;
  z-index: 80;
  top: 50%;
  right: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(48, 35, 25, 0.72);
  backdrop-filter: blur(16px);
  transform: translateY(-50%);
}

.slide-nav a {
  width: 42px;
  height: 34px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: 220ms ease;
}

.slide-nav a b {
  position: absolute;
  right: 50px;
  width: max-content;
  padding: 8px 12px;
  border-radius: 10px;
  color: var(--brown);
  background: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: 200ms ease;
}

.slide-nav a:hover b,
.slide-nav a:focus-visible b {
  opacity: 1;
  transform: translateX(0);
}

.slide-nav a.is-active {
  color: var(--brown-deep);
  background: var(--peach);
}

.slide {
  position: relative;
  min-height: 100svh;
  padding: 138px 0 96px;
  overflow: hidden;
  isolation: isolate;
}

.paper {
  background:
    radial-gradient(circle at 83% 18%, rgba(250, 206, 189, 0.35), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fbf8f3 100%);
}

.section-index {
  position: absolute;
  z-index: -1;
  top: 122px;
  right: max(76px, calc((100vw - 1240px) / 2));
  color: rgba(88, 67, 48, 0.06);
  font-family: "Ziclets", sans-serif;
  font-size: clamp(88px, 12vw, 190px);
  line-height: 0.8;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: "Reenie Local", cursive;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  margin: 0 10px 3px 0;
  background: currentColor;
}

.eyebrow--light {
  color: var(--peach);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 28px;
  font-family: "Ziclets", "Arial Rounded MT Bold", sans-serif;
  font-weight: normal;
  letter-spacing: -0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

h2 {
  color: var(--brown);
  font-size: clamp(46px, 5vw, 78px);
  text-wrap: balance;
}

.lede {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.55;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(48, 35, 25, 0.16);
}

.btn i {
  font-size: 18px;
  font-style: normal;
}

.btn--peach {
  color: var(--brown-deep);
  background: var(--peach);
}

.btn--peach:hover {
  background: #f7bda6;
}

.btn--brown {
  color: var(--white);
  background: var(--brown);
}

.btn--ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.choose-variant.is-selected {
  outline: 3px solid rgba(250, 206, 189, 0.48);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 760ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.reveal[data-delay="1"] { transition-delay: 100ms; }
.reveal[data-delay="2"] { transition-delay: 200ms; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* Hero */
.hero {
  min-height: 100svh;
  padding-bottom: 70px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  background: var(--brown-deep);
}

.hero__media,
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__media {
  background-image: url("assets/hero-clem.jpg");
  background-position: center 43%;
  background-size: cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

@keyframes heroDrift {
  to { transform: scale(1.08) translate3d(0, -1%, 0); }
}

.hero__veil {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(37, 25, 18, 0.86) 0%, rgba(48, 35, 25, 0.66) 36%, rgba(48, 35, 25, 0.08) 70%),
    linear-gradient(0deg, rgba(29, 20, 14, 0.82) 0%, transparent 44%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 26px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.02em;
}

.hero h1 span {
  max-width: 700px;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 650;
  line-height: 1.12;
  text-transform: none;
}

.hero h1 b {
  font-family: "Ziclets", "Arial Rounded MT Bold", sans-serif;
  font-size: clamp(66px, 8.4vw, 126px);
  font-weight: normal;
  letter-spacing: -0.01em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 580px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 24px);
}

.hero__claims {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.hero__claims span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 700;
}

.hero__note {
  position: absolute;
  right: max(90px, calc((100vw - 1240px) / 2));
  bottom: 80px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero__note span {
  font-family: "Ziclets", sans-serif;
  font-size: 62px;
  line-height: 1;
  text-transform: uppercase;
}

.hero__note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue span {
  width: 1px;
  height: 44px;
  background: rgba(255, 255, 255, 0.45);
}

/* Vision */
.vision__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 42px;
}

.value-grid article {
  min-height: 154px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.78);
}

.value-grid article b,
.feature-grid article > span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.14em;
}

.value-grid h3,
.feature-grid h3 {
  margin: 20px 0 7px;
  color: var(--brown);
  font-size: 17px;
}

.value-grid p,
.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.design-stage {
  position: relative;
  min-height: 680px;
}

.browser-frame {
  position: absolute;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 26px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.browser-frame--main {
  inset: 0 66px 88px 0;
  transform: rotate(-2deg);
}

.browser-frame--detail {
  right: 0;
  bottom: 10px;
  width: 45%;
  height: 48%;
  border-width: 5px;
  transform: rotate(3deg);
}

.browser-chrome {
  height: 38px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f1ebe3;
}

.browser-chrome i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccbba8;
}

.browser-chrome span {
  margin-left: auto;
  margin-right: auto;
  color: var(--brown-soft);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.homepage-crop {
  width: 100%;
  height: 100%;
  background-image: url("assets/homepage-design.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.homepage-crop--hero {
  height: calc(100% - 38px);
  background-position: center top;
}

.homepage-crop--detail {
  background-size: 132% auto;
  background-position: center 39%;
}

.design-stamp {
  position: absolute;
  left: -26px;
  bottom: 35px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  background: var(--peach);
  box-shadow: 0 18px 40px rgba(48, 35, 25, 0.18);
  transform: rotate(-10deg);
}

.design-stamp span {
  font-family: "Ziclets", sans-serif;
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
}

.design-stamp b {
  font-size: 10px;
  text-transform: uppercase;
}

/* Scope */
.scope {
  min-height: 1080px;
  color: var(--white);
  background: var(--brown-deep);
}

.scope__art,
.scope__overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.scope__art {
  background: url("assets/clemax-detail.jpg") center / cover no-repeat;
  opacity: 0.5;
}

.scope__overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(48, 35, 25, 0.98) 0%, rgba(48, 35, 25, 0.84) 52%, rgba(48, 35, 25, 0.44) 100%),
    linear-gradient(0deg, rgba(48, 35, 25, 0.95), transparent 70%);
}

.scope__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.scope h2,
.scope h3 {
  color: var(--white);
}

.scope__heading {
  position: sticky;
  top: 150px;
}

.scope__heading > p:last-child {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-grid article {
  min-height: 218px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(20px);
}

.feature-grid h3 {
  margin: 20px 0 7px;
  font-size: 18px;
}

.feature-grid p {
  color: rgba(255, 255, 255, 0.82);
}

/* Architecture */
.architecture {
  min-height: 940px;
}

.architecture__head {
  text-align: center;
}

.architecture__head .lede {
  margin-inline: auto;
}

.system-map {
  position: relative;
  min-height: 540px;
  margin-top: 44px;
}

.system-node {
  position: absolute;
  z-index: 2;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--white);
  box-shadow: 0 22px 60px rgba(48, 35, 25, 0.1);
}

.system-node--core {
  top: 0;
  left: 50%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  color: var(--white);
  background: var(--brown);
  transform: translateX(-50%);
}

.node-label {
  color: var(--peach);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.system-node--core b {
  margin: 14px 0 6px;
  font-family: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.12;
}

.system-node small {
  opacity: 0.6;
}

.system-node--sk,
.system-node--cz {
  top: 310px;
  width: 210px;
  height: 142px;
  border-radius: var(--radius);
}

.system-node--sk { left: 7%; }
.system-node--cz { right: 7%; }

.system-node--sk span,
.system-node--cz span {
  position: absolute;
  top: 14px;
  right: 16px;
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
}

.system-node--sk b,
.system-node--cz b {
  color: var(--brown);
  font-family: "Ziclets", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.system-line {
  position: absolute;
  z-index: 0;
  top: 220px;
  width: 34%;
  height: 150px;
  border-top: 1px solid var(--gold);
}

.system-line--left {
  left: 18%;
  border-left: 1px solid var(--gold);
  border-radius: 40px 0 0;
  transform: skewY(-12deg);
}

.system-line--right {
  right: 18%;
  border-right: 1px solid var(--gold);
  border-radius: 0 40px 0 0;
  transform: skewY(12deg);
}

.system-benefits {
  position: absolute;
  top: 298px;
  left: 50%;
  width: 380px;
  padding: 20px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(247, 241, 230, 0.82);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.system-benefits p {
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 15px;
}

.system-benefits p:last-child { border-bottom: 0; }
.system-benefits i { color: var(--gold); font-size: 10px; font-style: normal; }

/* Pricing A */
.pricing--a {
  min-height: 980px;
  background: linear-gradient(90deg, #f1e8dd 0 34%, #fff 34% 100%);
}

.pricing__photo {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 34%;
  opacity: 0.2;
}

.pricing__photo--a {
  background: url("assets/joggin-trio.webp") center / cover no-repeat;
}

.pricing__layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.pricing__intro {
  padding: 44px 0;
}

.pricing__intro > p:not(.eyebrow, .rate-note) {
  max-width: 440px;
  color: var(--muted);
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin: 42px 0 28px;
}

.price strong {
  color: var(--brown);
  font-family: "Ziclets", sans-serif;
  font-size: clamp(52px, 5vw, 76px);
  font-weight: normal;
  line-height: 0.8;
  text-transform: uppercase;
}

.price span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.rate-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.pricing-card {
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.pricing-card__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-card__head b { color: var(--gold); }

.check-list {
  margin: 30px 0;
  padding: 0;
  list-style: none;
}

.check-list--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 26px;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 14px;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 800;
}

.pricing-card__truth {
  padding: 18px 20px;
  border-radius: var(--radius-sm);
  background: var(--cream);
}

.pricing-card__truth b {
  color: var(--brown);
  font-size: 12px;
}

.pricing-card__truth p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* Pricing B */
.pricing--b {
  min-height: 1160px;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 10%, rgba(250, 206, 189, 0.16), transparent 28%),
    var(--brown-deep);
}

.pricing-b__gallery {
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: 34%;
  opacity: 0.25;
}

.pricing-b__gallery figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.pricing-b__gallery figure:first-child {
  top: 10%;
  right: 12%;
  width: 68%;
  height: 43%;
  transform: rotate(4deg);
}

.pricing-b__gallery figure:last-child {
  right: 48%;
  bottom: 7%;
  width: 58%;
  height: 39%;
  transform: rotate(-4deg);
}

.pricing-b__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pricing-b__layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: clamp(42px, 6vw, 94px);
  align-items: start;
}

.pricing-b__header {
  position: sticky;
  top: 140px;
}

.pricing-b__header h2 { color: var(--white); }
.pricing-b__header > p:not(.eyebrow) { max-width: 460px; color: rgba(255, 255, 255, 0.8); }

.recommended {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 13px;
  border-radius: 999px;
  color: var(--brown-deep);
  background: var(--peach);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price--light strong { color: var(--white); }
.price--light span { color: rgba(255, 255, 255, 0.55); }

.premium-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  color: var(--brown);
  background: var(--cream);
  box-shadow: 0 44px 120px rgba(0, 0, 0, 0.25);
}

.premium-card__lead {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  text-transform: uppercase;
}

.premium-card__lead b {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--brown);
}

.premium-card__lead strong { text-align: right; }

.premium-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}

.premium-features > div {
  min-height: 154px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
}

.premium-features > div.fund {
  color: var(--white);
  background: var(--brown);
}

.premium-features b {
  display: block;
  margin-bottom: 24px;
  font-family: "Ziclets", sans-serif;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
}

.premium-features p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.check-list--premium {
  margin-bottom: 22px;
}

.premium-card details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
}

.premium-card summary {
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  list-style: none;
}

.premium-card summary::-webkit-details-marker { display: none; }
.premium-card details[open] summary span { transform: rotate(45deg); }
.premium-card details p { margin: 0; padding: 0 20px 20px; color: var(--muted); font-size: 14px; line-height: 1.55; }

/* Comparison */
.comparison {
  min-height: 1060px;
}

.comparison__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  align-items: end;
}

.comparison__head .eyebrow { grid-column: 1 / -1; }
.comparison__head h2 { margin-bottom: 0; }

.comparison-table {
  margin-top: 60px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 70px rgba(48, 35, 25, 0.08);
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.9fr;
  border-bottom: 1px solid var(--line);
}

.comparison-row:last-child { border-bottom: 0; }

.comparison-row > div {
  min-width: 0;
  padding: 17px 24px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.comparison-row > div:last-child {
  border-right: 0;
  color: var(--brown);
  background: rgba(250, 206, 189, 0.2);
}

.comparison-row--head > div {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--brown);
  background: var(--cream);
}

.comparison-row--head span { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.comparison-row--head b { margin-top: 7px; font-family: "Ziclets", sans-serif; font-size: 25px; text-transform: uppercase; }
.comparison-row--head i { width: max-content; margin-top: 8px; padding: 5px 9px; border-radius: 999px; background: var(--peach); font-size: 12px; font-style: normal; font-weight: 800; line-height: 1.2; text-transform: uppercase; }
.comparison-row--decision > div { min-height: 90px; }

.text-link {
  margin-top: 8px;
  padding: 0;
  border: 0;
  display: block;
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

/* Costs */
.costs {
  min-height: 980px;
  color: var(--white);
  background: var(--brown);
}

.costs__image {
  position: absolute;
  z-index: -1;
  inset: 0 50% 0 0;
  background: linear-gradient(rgba(48,35,25,.25), rgba(48,35,25,.78)), url("assets/rainly-trio.webp") center / cover no-repeat;
}

.costs__layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(80px, 10vw, 170px);
  align-items: center;
}

.license-card {
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  color: var(--brown);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.license-card h2 {
  margin-bottom: 20px;
  font-size: clamp(55px, 7vw, 104px);
}

.license-price { display: flex; align-items: flex-end; gap: 8px; margin: 26px 0; }
.license-price strong { font-family: "Ziclets", sans-serif; font-size: 48px; line-height: 1; text-transform: uppercase; }
.license-price span { color: var(--muted); font-size: 13px; }
.license-card > p:last-child { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.costs__copy h2 { color: var(--white); }
.costs__copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.82); }

.plain-list { margin: 32px 0 0; padding: 0; list-style: none; }
.plain-list li { padding: 13px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.13); color: rgba(255, 255, 255, 0.9); font-size: 16px; }
.plain-list span { display: inline-block; width: 34px; color: var(--peach); font-size: 10px; }

/* Process */
.process {
  min-height: 980px;
}

.process__head {
  text-align: center;
}

.timeline {
  margin-top: 58px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  counter-reset: process;
}

.timeline li {
  position: relative;
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.76);
}

.timeline li::after {
  content: "→";
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--gold);
}

.timeline li:nth-child(3)::after,
.timeline li:nth-child(6)::after { display: none; }
.timeline span { color: var(--gold); font-size: 11px; font-weight: 800; }
.timeline b { color: var(--brown); font-size: 16px; }
.timeline p { margin: 7px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }

.time-estimate {
  margin-top: 12px;
  padding: 28px 34px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--white);
  background: var(--brown);
}

.time-estimate span { color: var(--peach); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.time-estimate strong { font-family: "Ziclets", sans-serif; font-size: 42px; font-weight: normal; text-transform: uppercase; }
.time-estimate p { margin: 0; text-align: right; color: rgba(255, 255, 255, 0.78); font-size: 14px; }

/* Payment */
.payment {
  min-height: 940px;
  color: var(--white);
  background: var(--brown-deep);
}

.payment__gallery {
  position: absolute;
  z-index: -1;
  inset: 0 auto 0 0;
  width: 38%;
}

.payment__gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(48,35,25,.15), var(--brown-deep));
}

.payment__gallery img {
  position: absolute;
  width: 56%;
  height: 62%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  opacity: 0.52;
}

.payment__gallery img:first-child { top: 8%; left: 5%; transform: rotate(-3deg); }
.payment__gallery img:last-child { right: 6%; bottom: 5%; transform: rotate(4deg); }

.payment__layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}

.payment__head h2 { color: var(--white); }

.payment-split {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.payment-split article {
  min-height: 320px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.payment-split span { color: var(--peach); font-size: 11px; }
.payment-split strong { margin: auto 0 32px; font-family: "Ziclets", sans-serif; font-size: clamp(62px, 7vw, 96px); font-weight: normal; line-height: .8; text-transform: uppercase; }
.payment-split p { margin: 0; color: rgba(255, 255, 255, 0.82); font-size: 15px; }

.payment-notes {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.payment-notes p { margin: 0; }

/* Decision */
.decision {
  min-height: 100svh;
  padding-bottom: 112px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--brown-deep);
}

.decision__media,
.decision__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.decision__media {
  background: url("assets/hero-clem.jpg") 62% center / cover no-repeat;
  filter: saturate(.85);
}

.decision__veil {
  z-index: -1;
  background: linear-gradient(90deg, rgba(38, 27, 19, .95) 0%, rgba(48, 35, 25, .82) 48%, rgba(48,35,25,.28) 100%);
}

.decision__content {
  position: relative;
  z-index: 2;
}

.decision h2 {
  max-width: 880px;
  color: var(--white);
  font-size: clamp(60px, 7.5vw, 112px);
}

.decision__content > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.selected-option {
  width: min(570px, 100%);
  margin: 34px 0 18px;
  padding: 17px 20px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius-sm);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(16px);
}

.selected-option span { color: var(--peach); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.selected-option b { font-size: 15px; }
.decision__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.proposal-footer {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 2;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: center;
  color: rgba(255,255,255,.65);
  font-size: 13px;
  transform: translateX(-50%);
}

.proposal-footer div { display: flex; gap: 14px; align-items: center; }
.proposal-footer span { font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.proposal-footer img { width: 116px; filter: grayscale(1) brightness(0) invert(1); }

/* Card indices use the same expressive display face as the supplied reference. */
.value-grid article > b,
.feature-grid article > span,
.timeline li > span,
.payment-split article > span {
  font-family: "Ziclets", sans-serif;
  font-size: 27px;
  font-weight: normal;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
}

/* Extra tracking keeps the rounded Ziclets glyphs legible, especially on iPhone. */
.section-index,
h2,
.hero h1 b,
.hero__note span,
.design-stamp span,
.system-node--sk b,
.system-node--cz b,
.price strong,
.premium-features b,
.comparison-row--head b,
.license-price strong,
.time-estimate strong,
.payment-split strong {
  letter-spacing: 0.025em;
  font-weight: normal;
}

@media (max-width: 1080px) {
  :root { --wrap: min(900px, calc(100vw - 64px)); }
  .slide-nav { display: none; }
  .vision__grid,
  .scope__inner,
  .pricing__layout,
  .pricing-b__layout,
  .costs__layout,
  .payment__layout { grid-template-columns: 1fr; }
  .vision__grid { gap: 70px; }
  .design-stage { min-height: 620px; }
  .scope { min-height: auto; }
  .scope__heading,
  .pricing-b__header { position: static; }
  .scope__inner { gap: 44px; }
  .pricing--a { background: #fff; }
  .pricing__photo { width: 100%; opacity: .09; }
  .pricing__intro { max-width: 680px; }
  .pricing-b__gallery { width: 55%; opacity: .12; }
  .comparison__head { grid-template-columns: 1fr; }
  .comparison__head .lede { margin-top: 24px; }
  .costs__image { inset: 0; opacity: .25; }
  .license-card { max-width: 580px; }
  .costs__copy { max-width: 700px; }
  .payment__gallery { width: 100%; opacity: .18; }
  .payment-split { max-width: 800px; }
  .payment-notes { grid-column: 1; }
}

@media (max-width: 760px) {
  :root { --wrap: calc(100vw - 36px); }
  body { font-size: 17px; }
  .topbar {
    top: 10px;
    width: calc(100vw - 20px);
    height: 56px;
    padding: 0 14px;
    grid-template-columns: 1fr auto;
  }
  .brandmark,
  .brandmark img { width: 62px; }
  .topbar__meta,
  .prepared { display: none; }
  .menu-toggle {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-content: center;
    gap: 5px;
    color: var(--white);
    background: rgba(255,255,255,.12);
  }
  .menu-toggle span:not(.sr-only) { display: block; width: 14px; height: 1px; background: currentColor; transition: 200ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }
  .slide-nav {
    position: fixed;
    inset: 0;
    z-index: 85;
    padding: 86px 22px 28px;
    border: 0;
    border-radius: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
    gap: 7px;
    background: rgba(48,35,25,.98);
    opacity: 0;
    pointer-events: none;
    transform: none;
    transition: 220ms ease;
  }
  .slide-nav.is-open { opacity: 1; pointer-events: auto; }
  .slide-nav a {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    justify-content: flex-start;
    gap: 12px;
    background: rgba(255,255,255,.05);
  }
  .slide-nav a b { position: static; padding: 0; color: inherit; background: none; opacity: 1; transform: none; }
  .slide { min-height: auto; padding: 108px 0 76px; }
  .section-index { top: 94px; right: 18px; font-size: 70px; }
  h2 { font-size: clamp(46px, 14vw, 65px); }
  .eyebrow { margin-bottom: 14px; }
  .hero { min-height: 100svh; padding: 118px 0 42px; align-items: flex-end; }
  .hero__media { background-position: 58% center; }
  .hero__veil { background: linear-gradient(0deg, rgba(37,25,18,.96) 0%, rgba(48,35,25,.64) 66%, rgba(48,35,25,.24)); }
  .hero h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero h1 span { font-size: 20px; line-height: 1.25; }
  .hero h1 b { font-size: clamp(58px, 17vw, 70px); }
  .hero__lead { font-size: 17px; }
  .hero__claims { gap: 6px; }
  .hero__claims span { padding: 8px 12px; font-size: 12px; line-height: 1.2; }
  .hero__note,
  .scroll-cue { display: none; }
  .value-grid,
  .feature-grid,
  .premium-features,
  .check-list--two,
  .payment-split { grid-template-columns: 1fr; }
  .value-grid article { min-height: 135px; }
  .design-stage { min-height: 500px; margin-top: 10px; }
  .browser-frame--main { inset: 0 18px 50px 0; }
  .browser-frame--detail { width: 48%; height: 42%; }
  .design-stamp { left: -5px; bottom: 16px; width: 90px; height: 90px; }
  .design-stamp span { font-size: 28px; }
  .feature-grid article { min-height: 180px; }
  .system-map { min-height: 780px; }
  .system-node--core { width: 220px; height: 220px; }
  .system-node--sk,
  .system-node--cz { top: 280px; width: calc(50% - 10px); }
  .system-node--sk { left: 0; }
  .system-node--cz { right: 0; }
  .system-line { top: 205px; width: 43%; }
  .system-line--left { left: 8%; }
  .system-line--right { right: 8%; }
  .system-benefits { top: 470px; width: 100%; }
  .pricing-card,
  .premium-card { padding: 24px 18px; border-radius: var(--radius); }
  .premium-card__lead { grid-template-columns: 1fr auto; }
  .premium-card__lead strong { grid-column: 1 / -1; text-align: left; }
  .premium-features > div { min-height: 138px; }
  .comparison { padding-bottom: 72px; }
  .comparison-table {
    width: calc(100vw - 18px);
    margin-left: 18px;
    border-right: 0;
    border-radius: var(--radius) 0 0 var(--radius);
    overflow-x: auto;
  }
  .comparison-row { width: 760px; grid-template-columns: 240px 220px 300px; }
  .comparison-row > div { padding: 15px 18px; }
  .costs__layout { gap: 50px; }
  .license-card { padding: 30px 24px; }
  .timeline { grid-template-columns: 1fr; }
  .timeline li { min-height: 150px; }
  .timeline li::after { display: none; }
  .time-estimate { grid-template-columns: 1fr; gap: 9px; text-align: center; }
  .time-estimate p { text-align: center; }
  .payment-split article { min-height: 240px; }
  .payment-notes { flex-direction: column; }
  .decision { min-height: 100svh; padding-bottom: 150px; }
  .decision__media { background-position: 58% center; }
  .decision__veil { background: linear-gradient(0deg, rgba(38,27,19,.97), rgba(48,35,25,.56)); }
  .decision h2 { font-size: clamp(52px, 15vw, 72px); }
  .selected-option { flex-direction: column; }
  .decision__actions { flex-direction: column; align-items: stretch; }
  .proposal-footer { bottom: 22px; grid-template-columns: 1fr 1fr; gap: 12px; }
  .proposal-footer div { grid-column: 1 / -1; }
  .proposal-footer a:last-child { text-align: right; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
