:root {
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "League Spartan", "Plus Jakarta Sans", system-ui, sans-serif;
  --bg: #f1e8d8;
  --bg-strong: #e7dcc6;
  --card: rgba(255, 252, 246, 0.72);
  --card-soft: rgba(232, 222, 200, 0.78);
  --text: #24311f;
  --text-soft: #66705c;
  --green: #2f7a4c;
  --green-deep: #1f5a3d;
  --green-bright: #98c965;
  --paper-border: rgba(71, 93, 56, 0.12);
  --gold: #c79d4b;
  --shadow: 0 18px 50px rgba(47, 58, 37, 0.12);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-full: 999px;
  --content-width: min(1220px, calc(100vw - 2rem));
  --parallax-shift: 0px;
  --parallax-left: 0px;
  --parallax-right: 0px;
  --match-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(220, 228, 184, 0.6), transparent 30%),
    radial-gradient(circle at top right, rgba(199, 157, 75, 0.08), transparent 24%),
    linear-gradient(180deg, #e5d9bf 0%, #f5edde 54%, #efe6d8 100%);
  color: var(--text);
  overflow-x: hidden;
}

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

button,
a {
  font: inherit;
}

.site-texture {
  position: fixed;
  inset: 0;
  background: url("./assets/auth-paper-background-choose.jpg") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.site-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.site-glow--left {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  top: -6rem;
  background: rgba(152, 201, 101, 0.18);
}

.site-glow--right {
  width: 18rem;
  height: 18rem;
  right: -4rem;
  top: 18rem;
  background: rgba(199, 157, 75, 0.12);
}

.ribbon-shell {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ribbon-svg {
  width: 100%;
  height: 100%;
  will-change: transform;
}

.ribbon-group {
  will-change: transform;
}

.ribbon-group--left {
  transform: translate3d(0, var(--parallax-left), 0);
}

.ribbon-group--right {
  transform: translate3d(0, var(--parallax-right), 0);
}

.ribbon-path,
.ribbon-highlight {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ribbon-path {
  stroke: url(#ribbonStroke);
  stroke-width: 3.55;
  opacity: 0.42;
  filter: drop-shadow(0 0 8px rgba(47, 122, 76, 0.12));
}

.ribbon-highlight {
  stroke: url(#ribbonGlow);
  stroke-width: 7;
  opacity: 0.24;
  filter: url(#softBlur);
}

.ribbon-branch,
.ribbon-stem,
.leaf-stem {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ribbon-branch {
  stroke: rgba(47, 122, 76, 0.42);
  stroke-width: 2.15;
  opacity: 0.52;
  filter: drop-shadow(0 0 6px rgba(47, 122, 76, 0.08));
}

.leaf-stem {
  stroke: rgba(76, 136, 79, 0.56);
  stroke-width: 1.45;
  opacity: 0.78;
}

.ribbon-stem {
  stroke: url(#ribbonStroke);
  stroke-width: 5.5;
  opacity: 0;
  filter: none;
}

.leaf-cluster {
  opacity: 0.98;
}

.ribbon-group--left .ribbon-branch:nth-of-type(3),
.ribbon-group--left .ribbon-branch:nth-of-type(6),
.ribbon-group--right .ribbon-branch:nth-of-type(3),
.ribbon-group--right .ribbon-branch:nth-of-type(6) {
  animation: branchSwayLeft 8.5s ease-in-out infinite;
}

.ribbon-group--left .ribbon-branch:nth-of-type(9),
.ribbon-group--left .ribbon-branch:nth-of-type(12),
.ribbon-group--right .ribbon-branch:nth-of-type(9),
.ribbon-group--right .ribbon-branch:nth-of-type(12) {
  animation: branchSwayRight 9.25s ease-in-out infinite;
}

.ribbon-group--left .leaf-cluster:nth-of-type(1),
.ribbon-group--right .leaf-cluster:nth-of-type(1) {
  animation: leafClusterSwayA 8.2s ease-in-out infinite;
}

.ribbon-group--left .leaf-cluster:nth-of-type(2),
.ribbon-group--right .leaf-cluster:nth-of-type(2) {
  animation: leafClusterSwayB 9.8s ease-in-out infinite;
}

.ribbon-group--left .leaf-cluster:nth-of-type(3),
.ribbon-group--right .leaf-cluster:nth-of-type(3) {
  animation: leafClusterSwayC 8.9s ease-in-out infinite;
}

.ribbon-group--left .leaf-cluster:nth-of-type(4),
.ribbon-group--right .leaf-cluster:nth-of-type(4) {
  animation: leafClusterSwayD 10.4s ease-in-out infinite;
}

.leaf-cluster--join {
  opacity: calc(0.38 + var(--match-progress) * 0.62);
}

.ribbon-join .leaf-stem,
.ribbon-join .leaf-cluster--join {
  opacity: 0;
}

.leaf {
  opacity: 0.92;
  filter: drop-shadow(0 2px 5px rgba(34, 82, 56, 0.08));
}

.leaf--light {
  fill: rgba(179, 215, 117, 0.92);
}

.leaf--mid {
  fill: rgba(117, 173, 87, 0.9);
}

.leaf--deep {
  fill: rgba(43, 108, 68, 0.9);
}

.ribbon-node {
  fill: rgba(244, 234, 213, 0.28);
  opacity: 0.18;
  transform-box: fill-box;
  transform-origin: center;
}

.ribbon-node--soft {
  fill: rgba(152, 201, 101, 0.2);
  opacity: 0.22;
  transform-box: fill-box;
  transform-origin: center;
}

.match-active .ribbon-node {
  animation: ribbonNodePop 900ms ease-in-out infinite;
}

.match-active .ribbon-node--soft {
  animation: ribbonNodeAura 1400ms ease-out infinite;
}

.ribbon-join {
  transform-box: fill-box;
  transform-origin: center;
}

.match-active .ribbon-stem {
  animation: none;
}

.match-active .ribbon-join {
  animation: ribbonJoinBeat 950ms ease-in-out infinite;
}

.page-shell {
  position: relative;
  z-index: 2;
  width: var(--content-width);
  margin: 0 auto;
  padding-bottom: 4rem;
}

.site-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  padding-top: 1.35rem;
}

.site-controls__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(244, 234, 213, 0.88);
  border: 1px solid rgba(47, 122, 76, 0.12);
  color: var(--green-deep);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 1.15rem;
  padding: 0;
  border-radius: var(--radius-full);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  width: auto;
  height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: var(--text-soft);
  cursor: pointer;
  opacity: 0.58;
  transition: transform 220ms ease, opacity 220ms ease, filter 220ms ease;
}

.lang-switcher__button img {
  width: 3.9rem;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.lang-switcher__button span {
  display: none;
}

.lang-switcher__button.is-active {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 12px rgba(47, 122, 76, 0.16));
}

.section {
  position: relative;
  padding: 5.5rem 0 0;
}

.hero {
  padding-top: 2rem;
}

.hero__logo-lockup {
  text-align: center;
}

.hero__logo {
  width: min(18rem, 68vw);
  margin: 0 auto 1rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green-deep);
  font-family: var(--font-ui);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
}

.eyebrow--light {
  color: rgba(248, 242, 229, 0.82);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 2rem;
  align-items: center;
  min-height: 40rem;
}

.hero__copy h1,
.section-heading h2,
.cta-panel h2,
.proof-highlight h3,
.card h3,
.feature-card h3,
.step-card h3,
.strip-card h2 {
  font-family: var(--font-display);
}

.hero__copy h1 {
  margin: 0;
  max-width: none;
  font-size: clamp(2.15rem, 3.8vw, 3.35rem);
  line-height: 0.98;
}

.hero__copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero__lede {
  margin: 1.1rem 0 0;
  max-width: 33rem;
  font-size: 0.98rem;
  line-height: 1.58;
  color: var(--text-soft);
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.hero__actions,
.hero__platforms,
.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__actions {
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 11.5rem;
  padding: 1rem 1.6rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid transparent;
  font-family: var(--font-ui);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--primary {
  color: #fff;
  background: linear-gradient(135deg, #86b55b 0%, #42703b 48%, #204d34 100%);
  box-shadow: 0 12px 24px rgba(47, 122, 76, 0.18);
}

.button--ghost {
  color: var(--green-deep);
  background: rgba(255, 251, 245, 0.65);
  border-color: rgba(47, 122, 76, 0.16);
}

.button--light {
  color: var(--green-deep);
  background: #fff;
}

.button--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.55rem;
}

.hero__chips span,
.platform-chip {
  border-radius: var(--radius-full);
  border: 1px solid rgba(47, 122, 76, 0.14);
}

.hero__chips span {
  padding: 0.7rem 1rem;
  background: rgba(255, 251, 245, 0.54);
  color: var(--green-deep);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 600;
}

.hero__platforms {
  margin-top: 1.4rem;
  gap: 0.75rem;
}

.platform-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.platform-chip {
  padding: 0.72rem 1rem;
  background: rgba(232, 222, 200, 0.82);
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 0.9rem;
  font-weight: 700;
}

.platform-status {
  display: inline-flex;
  align-items: center;
  padding: 0.46rem 0.72rem;
  border-radius: var(--radius-full);
  background: rgba(47, 122, 76, 0.1);
  border: 1px solid rgba(47, 122, 76, 0.12);
  color: var(--green-deep);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: comingSoonPulse 2.4s ease-in-out infinite;
}

.hero__visual {
  position: relative;
  min-height: 34.2rem;
  margin-top: -1.4rem;
  padding-inline: 1rem;
  overflow: visible;
}

.hero__visual-glow {
  position: absolute;
  inset: 4rem 6rem 4.5rem;
  border-radius: 999px;
  background: rgba(47, 122, 76, 0.14);
  filter: blur(40px);
}

.device-stack {
  position: absolute;
  width: clamp(12.6rem, 17.8vw, 14.3rem);
  border-radius: 2.15rem;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(35, 55, 37, 0.18);
  border: 1px solid rgba(47, 122, 76, 0.1);
  background: #fff;
}

.device-stack img {
  width: 100%;
  height: auto;
  transition: opacity 300ms ease, transform 420ms ease;
}

.device-stack img.is-swapping {
  opacity: 0.08;
  transform: scale(0.965);
}

.device-stack--left {
  left: 1.55rem;
  top: 4rem;
  transform: rotate(-10.5deg) translateY(calc(var(--parallax-shift) * -0.18));
  animation: heroFloatLeft 9.8s ease-in-out infinite;
}

.device-stack--right {
  right: 1.55rem;
  top: 4.2rem;
  transform: rotate(9.5deg) translateY(calc(var(--parallax-shift) * -0.22));
  animation: heroFloatRight 10.4s ease-in-out infinite;
}

.device-stack--front {
  left: 50%;
  top: 0.15rem;
  width: clamp(13.7rem, 18.7vw, 15.2rem);
  transform: translateX(-50%) translateY(calc(var(--parallax-shift) * -0.28));
  z-index: 2;
  animation: heroFloatFront 9.4s ease-in-out infinite;
}

.floating-note {
  position: absolute;
  z-index: 3;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius-full);
  background: rgba(255, 248, 238, 0.85);
  border: 1px solid rgba(47, 122, 76, 0.12);
  box-shadow: 0 10px 24px rgba(35, 55, 37, 0.08);
  color: var(--green-deep);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-note--one {
  top: 4.7rem;
  right: 4.5rem;
}

.floating-note--two {
  left: 3.4rem;
  bottom: 6rem;
}

.floating-note--three {
  right: 4.6rem;
  bottom: 3rem;
}

.hero__strip,
.story-grid,
.benefit-grid,
.proof-grid {
  display: grid;
  gap: 1rem;
}

.hero__strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.strip-card,
.card,
.feature-card,
.step-card {
  border: 1px solid var(--paper-border);
  box-shadow: var(--shadow);
}

.strip-card {
  padding: 1.5rem;
  border-radius: 1.65rem;
  background: var(--card);
  backdrop-filter: blur(10px);
}

.strip-card__header {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.4rem;
}

.strip-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(220, 228, 184, 0.68);
}

.strip-card__icon img,
.feature-card__icon img,
.step-card__badge img,
.mini-row__icon,
.proof-highlight__icon,
.cta-panel__exchange img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.strip-card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.6rem;
}

.strip-card p,
.card p:not(.card__lead),
.feature-card p,
.step-card p,
.proof-highlight p,
.proof-list li {
  margin: 0;
  line-height: 1.62;
  color: var(--text-soft);
  text-align: justify;
  text-justify: inter-word;
  text-align-last: left;
}

.section-heading {
  max-width: 48rem;
  text-align: center;
  margin: 0 auto 2rem;
}

.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1.02;
  text-wrap: balance;
}

.story-grid {
  grid-template-columns: 1.42fr 0.58fr;
  align-items: start;
  gap: 1.1rem;
  margin-top: -0.25rem;
}

.story-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
  align-self: stretch;
}

.card {
  padding: 1.55rem;
  border-radius: 2rem;
  background: var(--card);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 42px rgba(87, 74, 45, 0.1);
}

.card--large {
  display: grid;
  gap: 1rem;
}

.card--soft {
  background: var(--card-soft);
}

.story-stack .card--soft,
.proof-column .card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card__lead {
  font-family: var(--font-display);
  max-width: none;
  font-size: clamp(2.15rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 0.15rem;
  text-align: left;
  text-wrap: pretty;
}

.card--large > p:not(.card__lead) {
  max-width: none;
  font-size: 1.02rem;
  line-height: 1.5;
}

.story-exchange {
  position: relative;
  min-height: 6.8rem;
  margin-top: 0.1rem;
  border-radius: 1.65rem;
  overflow: hidden;
  border: 1px solid rgba(47, 122, 76, 0.1);
  background:
    radial-gradient(circle at 20% 30%, rgba(220, 228, 184, 0.68), transparent 34%),
    linear-gradient(135deg, rgba(250, 245, 236, 0.92), rgba(227, 236, 204, 0.9));
}

.story-exchange__track {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 50%;
  height: 0;
  border-top: 1.5px dashed rgba(47, 122, 76, 0.24);
}

.story-exchange__item {
  position: absolute;
  top: 50%;
  width: 5.7rem;
  height: 5.7rem;
  margin-top: -2.85rem;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(59, 91, 61, 0.16));
}

.story-exchange__item--left {
  left: 2rem;
  animation: exchangeItemLeft 5.6s ease-in-out infinite;
}

.story-exchange__item--right {
  right: 2rem;
  animation: exchangeItemRight 5.6s ease-in-out infinite;
}

.story-exchange__core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4rem;
  height: 4rem;
  margin-left: -2rem;
  margin-top: -2rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(255, 251, 245, 0.98), rgba(217, 230, 177, 0.96) 54%, rgba(105, 157, 78, 0.92));
  border: 3px solid rgba(255, 249, 240, 0.9);
  box-shadow: 0 0 0 0 rgba(152, 201, 101, 0.18);
  animation: exchangeCorePulse 2.8s ease-in-out infinite;
}

.story-exchange__core img {
  width: 2.3rem;
  height: 2.3rem;
  object-fit: contain;
}

.mini-label {
  margin: 0 0 0.75rem;
  color: var(--green-deep);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.mini-row__icon {
  width: 2.2rem;
  height: 2.2rem;
}

.benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.55rem;
  border-radius: 1.9rem;
  background: rgba(255, 252, 246, 0.76);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(220, 228, 184, 0.72);
}

.feature-card h3,
.step-card h3,
.proof-highlight h3,
.card h3 {
  margin: 0 0 0.25rem;
  font-size: 2rem;
  line-height: 1.06;
}

.step-card h3 {
  max-width: 26ch;
}

.step-card__title--single-line {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.36rem, 1.55vw, 1.58rem);
  letter-spacing: -0.02em;
}

.steps-list {
  display: grid;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1rem;
  padding: 1.6rem;
  border-radius: 1.9rem;
  background: rgba(255, 252, 246, 0.76);
}

.step-card__badge {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.step-card__badge img {
  width: 3rem;
  height: 3rem;
}

.step-card__number {
  color: var(--green);
  font-family: var(--font-ui);
  font-size: 1.25rem;
  font-weight: 800;
}

.proof-grid {
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.15rem;
  align-items: stretch;
}

.proof-column {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.proof-highlight {
  position: relative;
  overflow: visible;
  padding: 2rem;
  padding-right: clamp(10.8rem, 34%, 15.5rem);
  border-radius: 2.2rem;
  background: linear-gradient(135deg, #1e5f43 0%, #2d7854 52%, #bdd58f 100%);
  box-shadow: 0 24px 56px rgba(33, 65, 44, 0.22);
}

.proof-highlight__header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.7rem;
}

.proof-highlight__icon {
  width: 3rem;
  height: 3rem;
}

.proof-highlight__visual {
  position: absolute;
  right: -1.2rem;
  bottom: -1.6rem;
  width: clamp(11.2rem, 22vw, 14.4rem);
  border-radius: 2rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 44px rgba(22, 57, 36, 0.3);
  transform: rotate(7deg);
}

.proof-highlight__visual img {
  width: 100%;
  height: auto;
}

.proof-highlight h3,
.proof-highlight p,
.proof-list li {
  color: #fff;
}

.cta-panel h2 {
  color: #f4ead5;
}

.proof-list {
  margin: 1.4rem 0 0;
  padding: 0 0 0 1rem;
}

.proof-list li + li {
  margin-top: 0.6rem;
}

.section--cta {
  padding-bottom: 6rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  padding: 3rem 2rem 3.1rem;
  text-align: center;
  background: linear-gradient(135deg, rgba(30, 77, 52, 0.98) 0%, rgba(40, 101, 64, 0.98) 52%, rgba(27, 68, 46, 0.98) 100%);
  box-shadow: 0 28px 70px rgba(25, 58, 40, 0.24);
}

.cta-panel__body {
  max-width: 41rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.85;
}

.cta-panel__actions {
  justify-content: center;
  margin-top: 2rem;
}

.cta-panel__exchange {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 3.9rem;
  height: 3.9rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, rgba(243, 237, 222, 0.98), rgba(197, 215, 146, 0.95) 58%, rgba(101, 151, 73, 0.9));
  border: 2px solid rgba(255, 249, 240, 0.82);
  box-shadow: 0 0 0 rgba(152, 201, 101, 0);
}

.cta-panel__exchange::before,
.cta-panel__exchange::after {
  content: "";
  position: absolute;
  inset: -0.25rem;
  border-radius: inherit;
  border: 2px solid rgba(220, 228, 184, 0.55);
  opacity: 0;
  transform: scale(0.88);
}

.cta-panel__exchange::after {
  inset: -0.7rem;
  border-color: rgba(152, 201, 101, 0.32);
}

.cta-panel__exchange-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 2.15rem;
  height: 2.15rem;
  transition:
    opacity 380ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-panel__exchange-icon--base {
  opacity: calc(1 - var(--match-progress));
  transform: scale(calc(1 - var(--match-progress) * 0.18));
}

.cta-panel__exchange-icon--match {
  opacity: var(--match-progress);
  transform: scale(calc(0.72 + var(--match-progress) * 0.38));
}

.match-active .cta-panel__exchange {
  animation: exchangeBadgePop 1200ms ease-in-out infinite;
  box-shadow: 0 0 0.9rem rgba(152, 201, 101, 0.45);
}

.match-active .cta-panel__exchange::before {
  animation: exchangeRing 1200ms ease-out infinite;
}

.match-active .cta-panel__exchange::after {
  animation: exchangeRing 1200ms ease-out 180ms infinite;
}

.match-zone {
  position: relative;
  width: min(34rem, calc(100% - 1rem));
  margin: -0.3rem auto 0;
  padding-top: 2.15rem;
  display: flex;
  justify-content: center;
}

.match-zone__vine {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.45rem;
  height: 2.15rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(61, 118, 76, 0.35) 0%, rgba(61, 118, 76, 0.7) 56%, rgba(114, 176, 92, 0.88) 100%);
  box-shadow: 0 0 12px rgba(61, 118, 76, 0.16);
  opacity: calc(0.28 + var(--match-progress) * 0.72);
}

.match-zone__vine::before,
.match-zone__vine::after {
  content: "";
  position: absolute;
  bottom: 0.95rem;
  width: 1.5rem;
  height: 0.24rem;
  border-radius: 999px;
  background: rgba(61, 118, 76, 0.45);
}

.match-zone__vine::before {
  right: 0.1rem;
  transform: rotate(-34deg);
  transform-origin: right center;
}

.match-zone__vine::after {
  left: 0.1rem;
  transform: rotate(34deg);
  transform-origin: left center;
}

.match-zone__leaf {
  position: absolute;
  top: 0.9rem;
  width: 1.02rem;
  height: 1.82rem;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(180deg, rgba(192, 217, 132, 0.94), rgba(84, 143, 77, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 4px 10px rgba(42, 91, 59, 0.12);
  opacity: calc(0.28 + var(--match-progress) * 0.72);
}

.match-zone__leaf--left {
  left: calc(50% - 1.2rem);
  transform: rotate(-32deg);
}

.match-zone__leaf--right {
  left: calc(50% + 0.18rem);
  transform: scaleX(-1) rotate(-32deg);
}

.match-zone__leaf::before {
  content: "";
  position: absolute;
  top: 0.92rem;
  width: 0.95rem;
  height: 0.16rem;
  border-radius: 999px;
  background: rgba(61, 118, 76, 0.56);
}

.match-zone__leaf--left::before {
  right: -0.58rem;
  transform: rotate(24deg);
  transform-origin: right center;
}

.match-zone__leaf--right::before {
  left: -0.58rem;
  transform: rotate(-24deg);
  transform-origin: left center;
}

.match-active .match-zone__vine {
  box-shadow:
    0 0 14px rgba(152, 201, 101, 0.34),
    0 0 28px rgba(47, 122, 76, 0.16);
}

.match-active .match-zone__leaf {
  filter: drop-shadow(0 8px 12px rgba(41, 95, 61, 0.2));
}

.ribbon-join {
  display: none;
}

.match-button {
  position: relative;
  width: 100%;
  margin: 0 auto;
  min-height: 11.3rem;
  overflow: visible;
}

.match-button__surface {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 11.3rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  padding: 3.15rem 1.8rem 1.7rem;
  border-radius: 2.2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(225, 221, 214, 0.96) 0%, rgba(186, 184, 178, 0.92) 100%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 24px 46px rgba(74, 72, 66, 0.15);
  overflow: hidden;
  filter: grayscale(0.5) saturate(0.5);
  transform: translateY(calc((1 - var(--match-progress)) * 10px)) scale(calc(0.96 + var(--match-progress) * 0.05));
  transition:
    filter 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 420ms ease,
    background 420ms ease,
    border-color 420ms ease;
}

.match-button__shine {
  position: absolute;
  left: 50%;
  top: 1.85rem;
  width: min(20rem, calc(100% - 7.5rem));
  height: 5.4rem;
  border-radius: 1.9rem;
  background: linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.38) 48%, transparent 80%);
  transform: translateX(calc(-50% - 140%));
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.match-button__medallion {
  position: absolute;
  top: -1.35rem;
  left: 50%;
  z-index: 3;
  width: 4.9rem;
  height: 4.9rem;
  margin-left: -2.45rem;
  display: grid;
  place-items: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 420ms ease,
    box-shadow 420ms ease;
}

.match-button__icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 4.85rem;
  height: 4.85rem;
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 320ms ease;
}

.match-button__icon--base {
  display: none;
}

.match-button__icon--match {
  opacity: calc(0.55 + var(--match-progress) * 0.45);
  filter: drop-shadow(0 10px 18px rgba(52, 93, 60, 0.18));
  transform: scale(calc(0.92 + var(--match-progress) * 0.14));
}

.match-button__copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.32rem;
}

.match-button__eyebrow {
  color: rgba(95, 95, 90, 0.86);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.match-button__label {
  position: relative;
  z-index: 1;
  color: #53514d;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 0.9;
  transition: color 320ms ease, transform 420ms ease;
}

.match-button__subtitle {
  color: rgba(94, 93, 87, 0.88);
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.6;
  max-width: 24rem;
}

.match-active .match-button__surface {
  background: linear-gradient(145deg, rgba(248, 241, 229, 0.98) 0%, rgba(204, 225, 163, 0.98) 34%, rgba(111, 165, 84, 0.98) 68%, rgba(35, 93, 62, 0.98) 100%);
  border-color: rgba(255, 248, 238, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 0 1.8rem rgba(152, 201, 101, 0.28),
    0 26px 58px rgba(26, 79, 53, 0.22);
  filter: grayscale(0) saturate(1);
  animation: matchButtonPulse 1180ms ease-in-out infinite;
}

.match-active .match-button__medallion {
  animation: matchMedallionBloom 1180ms ease-in-out infinite;
}

.match-active .match-button__icon--match {
  filter:
    drop-shadow(0 0 0.8rem rgba(196, 228, 135, 0.32))
    drop-shadow(0 12px 22px rgba(34, 82, 53, 0.22));
}

.match-active .match-button__label {
  color: #1f402d;
  transform: scale(1.04);
}

.match-active .match-button__eyebrow,
.match-active .match-button__subtitle {
  color: rgba(28, 63, 43, 0.84);
}

.match-active .match-button__shine {
  opacity: 1;
  animation: matchShine 1350ms ease-in-out infinite;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(44px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

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

@keyframes ribbonNodePop {
  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.22);
  }

  70% {
    transform: scale(0.92);
  }
}

@keyframes ribbonNodeAura {
  0% {
    opacity: 0.32;
    transform: scale(0.76);
  }

  100% {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes ribbonStemGlow {
  0%,
  100% {
    opacity: 0.55;
    stroke-width: 5.5;
  }

  50% {
    opacity: 1;
    stroke-width: 7;
  }
}

@keyframes ribbonJoinBeat {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@keyframes exchangeBadgePop {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }

  34% {
    transform: translateX(-50%) scale(1.16);
  }

  58% {
    transform: translateX(-50%) scale(0.94);
  }
}

@keyframes exchangeRing {
  0% {
    opacity: 0.46;
    transform: scale(0.86);
  }

  100% {
    opacity: 0;
    transform: scale(1.52);
  }
}

@keyframes branchSwayLeft {
  0%,
  100% {
    transform: rotate(-1.2deg) translateY(0);
  }

  50% {
    transform: rotate(1.2deg) translateY(4px);
  }
}

@keyframes branchSwayRight {
  0%,
  100% {
    transform: rotate(1.2deg) translateY(0);
  }

  50% {
    transform: rotate(-1.2deg) translateY(4px);
  }
}

@keyframes leafClusterSwayA {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }

  50% {
    transform: rotate(3deg) translateY(5px);
  }
}

@keyframes leafClusterSwayB {
  0%,
  100% {
    transform: rotate(2deg) translateY(0);
  }

  50% {
    transform: rotate(-4deg) translateY(-3px);
  }
}

@keyframes leafClusterSwayC {
  0%,
  100% {
    transform: rotate(-2deg) translateY(0);
  }

  50% {
    transform: rotate(4deg) translateY(4px);
  }
}

@keyframes leafClusterSwayD {
  0%,
  100% {
    transform: rotate(3deg) translateY(0);
  }

  50% {
    transform: rotate(-3deg) translateY(-4px);
  }
}

@keyframes leafClusterJoin {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.04) rotate(4deg);
  }
}

@keyframes matchButtonPulse {
  0%,
  100% {
    transform: scale(1);
  }

  42% {
    transform: scale(1.06);
  }

  68% {
    transform: scale(0.97);
  }
}

@keyframes matchMedallionBloom {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  42% {
    transform: translateY(-2px) scale(1.06);
  }

  68% {
    transform: translateY(1px) scale(0.98);
  }
}

@keyframes matchShine {
  0% {
    transform: translateX(calc(-50% - 140%));
  }

  55%,
  100% {
    transform: translateX(calc(-50% + 140%));
  }
}

@keyframes matchLeafLeft {
  0%,
  100% {
    transform: rotate(-42deg) translateY(0);
  }

  50% {
    transform: rotate(-32deg) translateY(3px);
  }
}

@keyframes matchLeafRight {
  0%,
  100% {
    transform: scaleX(-1) rotate(-42deg) translateY(0);
  }

  50% {
    transform: scaleX(-1) rotate(-32deg) translateY(3px);
  }
}

@keyframes comingSoonPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(47, 122, 76, 0);
  }

  50% {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(47, 122, 76, 0.12);
  }
}

@keyframes exchangeItemLeft {
  0%,
  100% {
    transform: translateX(0) rotate(-8deg);
  }

  40% {
    transform: translateX(0.6rem) rotate(-4deg);
  }

  70% {
    transform: translateX(6rem) rotate(6deg);
  }
}

@keyframes exchangeItemRight {
  0%,
  100% {
    transform: translateX(0) rotate(8deg);
  }

  40% {
    transform: translateX(-0.6rem) rotate(4deg);
  }

  70% {
    transform: translateX(-6rem) rotate(-6deg);
  }
}

@keyframes exchangeCorePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(152, 201, 101, 0.18);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(152, 201, 101, 0);
  }
}

@keyframes heroFloatLeft {
  0%,
  100% {
    transform: rotate(-9deg) translateY(calc(var(--parallax-shift) * -0.18)) translateX(0);
  }

  50% {
    transform: rotate(-7deg) translateY(calc(var(--parallax-shift) * -0.18 - 8px)) translateX(-4px);
  }
}

@keyframes heroFloatRight {
  0%,
  100% {
    transform: rotate(8deg) translateY(calc(var(--parallax-shift) * -0.22)) translateX(0);
  }

  50% {
    transform: rotate(10deg) translateY(calc(var(--parallax-shift) * -0.22 - 10px)) translateX(5px);
  }
}

@keyframes heroFloatFront {
  0%,
  100% {
    transform: translateX(-50%) translateY(calc(var(--parallax-shift) * -0.28));
  }

  50% {
    transform: translateX(-50%) translateY(calc(var(--parallax-shift) * -0.28 - 12px));
  }
}

@media (max-width: 1080px) {
  .site-controls {
    padding-top: 1rem;
  }

  .hero__grid,
  .story-grid,
  .benefit-grid,
  .proof-grid,
  .hero__strip {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__lede,
  .hero__chips,
  .hero__actions,
  .hero__platforms {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .site-controls {
    flex-direction: column;
    align-items: center;
  }

  .hero__visual {
    min-height: 29rem;
    margin-top: 0;
    padding-inline: 0;
  }

  .device-stack--left {
    left: 0.5rem;
    top: 3.35rem;
  }

  .device-stack--right {
    right: 0.5rem;
    top: 3.55rem;
  }

  .device-stack--front {
    top: 0.2rem;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 1.2rem, 100%);
  }

  .section {
    padding-top: 4.25rem;
  }

  .hero {
    padding-top: 1.3rem;
  }

  .hero__copy h1 {
    font-size: 3rem;
    line-height: 0.98;
    max-width: none;
  }

  .hero__copy h1 span {
    white-space: normal;
  }

  .hero__lede,
  .strip-card p,
  .card p:not(.card__lead),
  .feature-card p,
  .step-card p,
  .proof-highlight p,
  .proof-list li {
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .hero__actions,
  .cta-panel__actions {
    flex-direction: column;
  }

  .hero__platforms {
    justify-content: center;
  }

  .platform-pill {
    flex-direction: column;
    gap: 0.35rem;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    min-height: 24.5rem;
    margin-top: -0.2rem;
  }

  .hero__visual-glow {
    inset: 4.4rem 3.2rem 4.8rem;
    filter: blur(22px);
  }

  .lang-switcher {
    gap: 0.8rem;
  }

  .lang-switcher__button img {
    width: 3.15rem;
  }

  .device-stack {
    width: 10.4rem;
    box-shadow: 0 12px 28px rgba(35, 55, 37, 0.14);
  }

  .device-stack--front {
    width: 12.2rem;
  }

  .device-stack--left,
  .device-stack--right,
  .device-stack--front {
    animation: none;
  }

  .floating-note {
    font-size: 0.64rem;
    letter-spacing: 0.04em;
  }

  .ribbon-path {
    stroke-width: 2.8;
    opacity: 0.36;
    filter: none;
  }

  .ribbon-highlight {
    stroke-width: 4.2;
    opacity: 0.14;
    filter: none;
  }

  .ribbon-branch,
  .leaf-stem,
  .leaf-cluster {
    animation: none !important;
  }

  .floating-note--one {
    top: 0.8rem;
    right: 0.6rem;
  }

  .floating-note--two {
    left: 0.4rem;
    bottom: 3.2rem;
  }

  .floating-note--three {
    right: 0.6rem;
    bottom: 1rem;
  }

  .card,
  .feature-card,
  .step-card,
  .proof-highlight,
  .cta-panel {
    padding: 1.4rem;
  }

  .story-exchange {
    min-height: 6rem;
  }

  .story-exchange__item {
    width: 4.2rem;
    height: 4.2rem;
    margin-top: -2.1rem;
  }

  .story-exchange__item--left {
    left: 0.7rem;
  }

  .story-exchange__item--right {
    right: 0.7rem;
  }

  .story-exchange__core {
    width: 3.4rem;
    height: 3.4rem;
    margin-left: -1.7rem;
    margin-top: -1.7rem;
  }

  .match-button__surface {
    min-height: 10.8rem;
    padding: 3.8rem 1.2rem 1.35rem;
  }

  .match-button__medallion {
    width: 4.2rem;
    height: 4.2rem;
    top: -1.15rem;
    margin-left: -2.1rem;
  }

  .match-button__icon {
    width: 4.15rem;
    height: 4.15rem;
  }

  .match-button__label {
    font-size: 2.55rem;
  }

  .match-button__subtitle {
    font-size: 0.92rem;
  }

  .proof-highlight {
    padding-right: 1.4rem;
  }

  .proof-highlight__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(14rem, 78%);
    margin: 1.3rem auto 0;
    transform: rotate(4deg);
  }

  .feature-card h3,
  .step-card h3,
  .proof-highlight h3,
  .card h3,
  .card__lead {
    font-size: 1.6rem;
  }

  .step-card__title--single-line {
    white-space: normal;
    font-size: 1.6rem;
  }

  .step-card {
    grid-template-columns: 1fr;
  }

  .step-card__badge {
    justify-items: start;
  }
}
