:root {
  --ocean-deep: #0b2d33;
  --ocean: #114b5f;
  --lagoon: #1e8e8a;
  --lagoon-soft: #e2f0ee;
  --nacre: #faf7f2;
  --sand: #f0e9de;
  --surface: #ffffff;
  --outline: #e7e1d6;
  --ink: #1c2a2e;
  --ink-deep: var(--ocean-deep);
  --ink-soft: #5c6b6f;
  --cream: var(--sand);
  --paper: var(--nacre);
  --coral: #f2a989;
  --peach: #f7d7c4;
  --mint: var(--lagoon-soft);
  --sun: #e9b44c;
  --positive: #2e7d5b;
  --negative: #c4564a;
  --line: rgba(11, 45, 51, 0.16);
  --radius-app-sm: 10px;
  --radius-app-md: 16px;
  --radius-app-lg: 20px;
  --radius-app-xl: 28px;
  --radius-lg: 42px;
  --radius-md: 28px;
  --shadow-card: 0 8px 24px rgba(11, 45, 51, 0.07);
  --content-max: 1180px;
  --section-x: clamp(18px, 3.2vw, 58px);
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.pricing-modal-open,
body.payment-modal-open,
body.auth-modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  color: inherit;
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 100px;
  background: white;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: 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;
}

.site-header {
  position: fixed;
  top: 22px;
  right: var(--section-x);
  left: var(--section-x);
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: white;
  pointer-events: none;
  transition: color 300ms ease, transform 300ms ease;
}

.site-header.is-past-hero:not(.nav-open) {
  transform: none;
}

.site-header.is-past-hero .brand {
  padding: 5px 12px 5px 6px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  background: rgba(9, 25, 32, 0.5);
  box-shadow: 0 8px 32px rgba(4, 16, 22, 0.1);
  backdrop-filter: blur(18px);
}

.site-header > * {
  pointer-events: auto;
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.brand-mark {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 13px 13px 13px 4px;
  background: rgba(19, 35, 42, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: 25px;
  line-height: 1;
  backdrop-filter: blur(14px);
}

.brand-logo {
  display: block;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(4, 28, 34, 0.22));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  background: rgba(9, 25, 32, 0.34);
  box-shadow: 0 8px 32px rgba(4, 16, 22, 0.08);
  backdrop-filter: blur(18px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
}

.site-header.is-past-hero:not(.nav-open) .main-nav {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  pointer-events: none;
}

.main-nav a {
  padding: 11px 17px;
  border-radius: 100px;
  font-size: 13px;
  white-space: nowrap;
  transition: background 180ms ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.14);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 43px;
  padding: 13px 19px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 100px;
  background: rgba(9, 25, 32, 0.36);
  box-shadow: 0 8px 32px rgba(4, 16, 22, 0.08);
  font-size: 13px;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, transform 180ms ease;
}

.header-actions {
  position: relative;
  justify-self: end;
  display: flex;
  gap: 8px;
  align-items: center;
}

.auth-control { position: relative; }

.auth-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 43px;
  max-width: 180px;
  padding: 8px 15px;
  overflow: hidden;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 100px;
  color: white;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 8px 32px rgba(4, 16, 22, 0.08);
  font: inherit;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  backdrop-filter: blur(18px);
  transition: background 180ms ease, transform 180ms ease;
}

.auth-button > * {
  position: relative;
  z-index: 2;
}

.auth-button.is-premium::before {
  position: absolute;
  z-index: 1;
  top: -95%;
  left: -55%;
  width: 30%;
  height: 290%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 211, 77, 0.22),
    rgba(255, 246, 190, 0.94),
    rgba(255, 199, 44, 0.28),
    transparent
  );
  filter: blur(0.3px);
  pointer-events: none;
  content: "";
  opacity: 0;
  transform: translateX(-180%) rotate(16deg);
  animation: auth-premium-shine 3.8s ease-in-out infinite;
}

@keyframes auth-premium-shine {
  0%, 48% { opacity: 0; transform: translateX(-180%) rotate(16deg); }
  55% { opacity: 1; }
  72% { opacity: 1; transform: translateX(620%) rotate(16deg); }
  80%, 100% { opacity: 0; transform: translateX(620%) rotate(16deg); }
}

.auth-button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.auth-button:focus-visible,
.auth-menu button:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

.auth-button:disabled { cursor: wait; opacity: 0.7; }
.auth-button [data-auth-label] { overflow: hidden; text-overflow: ellipsis; }

.auth-avatar {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  object-fit: cover;
}

.auth-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(270px, calc(100vw - 24px));
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 18px;
  color: white;
  background: rgba(9, 25, 32, 0.9);
  box-shadow: 0 20px 55px rgba(4, 16, 22, 0.24);
  backdrop-filter: blur(22px);
}

.auth-menu[hidden] { display: none; }

.auth-menu strong {
  display: block;
  padding: 8px 10px 2px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-menu p {
  margin: 0;
  padding: 8px 10px 12px;
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.account-premium-badge {
  position: relative;
  isolation: isolate;
  display: flex;
  width: calc(100% - 20px);
  min-height: 36px;
  margin: 8px 10px 10px;
  padding: 8px 14px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 219, 119, 0.58);
  border-radius: 999px;
  color: #ffe39a;
  background:
    linear-gradient(110deg, rgba(255, 217, 112, 0.08), rgba(255, 197, 61, 0.17)),
    rgba(10, 35, 41, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 243, 200, 0.12),
    0 7px 22px rgba(240, 184, 45, 0.1);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0 0 12px rgba(255, 212, 91, 0.38);
  text-transform: uppercase;
}

.account-premium-badge::after {
  color: #ffd86c;
  content: "✦";
  font-size: 12px;
  text-shadow: 0 0 10px rgba(255, 214, 104, 0.72);
}

.account-premium-badge[hidden],
.account-profile-status[hidden] { display: none; }

.auth-menu .account-profile-status {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.4;
}

.auth-menu button {
  width: 100%;
  min-height: 40px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
}

.auth-menu button:hover { background: rgba(255, 255, 255, 0.18); }

.auth-modal[hidden] { display: none; }

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: grid;
  padding: 20px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.auth-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
}

.auth-modal-dialog {
  position: relative;
  width: min(480px, 100%);
  max-height: calc(100dvh - 40px);
  padding: clamp(28px, 5vw, 44px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background:
    radial-gradient(circle at 86% 3%, rgba(226, 240, 238, 0.9), transparent 38%),
    var(--paper);
  box-shadow: 0 34px 100px rgba(4, 18, 22, 0.38);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  overscroll-behavior: contain;
  scrollbar-width: none;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-modal-dialog::-webkit-scrollbar { display: none; }

.auth-modal.is-open .auth-modal-dialog {
  opacity: 1;
  transform: none;
}

.auth-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(11, 45, 51, 0.13);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.auth-modal-close span { font-size: 25px; font-weight: 300; line-height: 1; }

.auth-modal-brand {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  place-items: center;
  border-radius: 16px;
  background: var(--ocean-deep);
  box-shadow: 0 12px 28px rgba(11, 45, 51, 0.18);
}

.auth-modal-brand img { width: 38px; height: 38px; object-fit: contain; }

.auth-modal h2 {
  max-width: calc(100% - 34px);
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(32px, 8vw, 43px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.auth-modal #auth-modal-description {
  margin: 14px 0 28px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.55;
}

.auth-modal-methods { display: grid; gap: 11px; }

.auth-provider-button,
.auth-submit-button {
  display: flex;
  width: 100%;
  min-height: 52px;
  padding: 12px 18px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 100px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-provider-button {
  border: 1px solid rgba(11, 45, 51, 0.14);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 8px 24px rgba(11, 45, 51, 0.06);
}

.auth-provider-button.is-hidden { display: none; }

.auth-google-button {
  display: grid;
  width: 100%;
  min-height: 44px;
  place-items: center;
  overflow: hidden;
  border-radius: 100px;
}

.auth-google-button > div { width: 100% !important; }
.auth-google-button iframe { max-width: 100%; }
.auth-google-button.is-busy { opacity: 0.58; pointer-events: none; }

.auth-provider-button svg { width: 21px; height: 21px; flex: 0 0 auto; }
.auth-provider-button:hover { background: white; transform: translateY(-1px); box-shadow: 0 12px 30px rgba(11, 45, 51, 0.1); }

.auth-separator {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  margin: 7px 0;
  color: var(--ink-soft);
  font-size: 12px;
}

.auth-separator::before,
.auth-separator::after { height: 1px; background: rgba(11, 45, 51, 0.12); content: ""; }

.auth-email-form,
.auth-otp-form { display: grid; gap: 9px; }

.auth-email-form label,
.auth-otp-form label {
  margin-left: 4px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.auth-email-form input,
.auth-otp-form input {
  width: 100%;
  min-height: 52px;
  padding: 13px 17px;
  border: 1px solid rgba(11, 45, 51, 0.16);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.auth-email-form input:focus,
.auth-otp-form input:focus { border-color: var(--lagoon); box-shadow: 0 0 0 3px rgba(30, 142, 138, 0.13); }

.auth-otp-form input {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.auth-submit-button {
  margin-top: 4px;
  border: 1px solid var(--ocean-deep);
  color: white;
  background: var(--ocean-deep);
  box-shadow: 0 12px 30px rgba(11, 45, 51, 0.16);
}

.auth-submit-button:hover { transform: translateY(-1px); box-shadow: 0 16px 34px rgba(11, 45, 51, 0.22); }
.auth-modal button:disabled { cursor: wait; opacity: 0.58; transform: none; }

.auth-otp-step[hidden],
.auth-modal-methods[hidden] { display: none; }

.auth-otp-help { margin: 0 0 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.55; }
.auth-otp-help strong { color: var(--ink); font-weight: 600; overflow-wrap: anywhere; }

.auth-otp-actions {
  display: flex;
  margin-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-otp-actions button {
  padding: 5px 0;
  border: 0;
  color: var(--ocean);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.auth-modal-status {
  min-height: 20px;
  margin: 16px 2px 0;
  color: var(--negative);
  font-size: 12px;
  line-height: 1.45;
}

.auth-modal-status.is-success { color: var(--positive); }

.header-cta:hover {
  background: rgba(9, 25, 32, 0.62);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

/* Hero: the first viewport is the enlarged phone screen. */
.hero-scroll {
  position: relative;
  z-index: 1;
  height: 260vh;
  background: var(--paper);
}

.hero-sticky {
  --phone-scale: 5;
  --scene-opacity: 0;
  --copy-opacity: 1;
  --copy-y: 0px;
  --ui-opacity: 0;
  --cloud-opacity: 1;
  --ui-status-opacity: 0;
  --phone-x: 0px;
  --phone-y: 0px;
  --phone-rotate-x: 0deg;
  --phone-rotate-y: 0deg;
  --phone-rotate-z: 0deg;
  --chassis-depth-x: 0px;
  --chassis-depth-y: 0px;
  --phone-shadow-x: 0px;
  --phone-shadow-y: 0px;
  --phone-shadow-opacity: 0;
  --phone-shadow-blur: 38px;
  --glass-opacity: 0;
  --scene-x: 0px;
  --scene-y: 0px;
  --scene-scale: 1.08;
  --sun-x: 0px;
  --sun-y: 0px;
  --phone-cta-offset: 350px;
  --phone-waitlist-opacity: 0;
  --phone-waitlist-y: 10px;
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  background: #c9d9d6;
  isolation: isolate;
  contain: paint style;
}

.island-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(9, 37, 46, 0.06), rgba(8, 34, 42, 0.2)),
    url("./images/images1.jpg") center 52% / cover no-repeat;
  opacity: var(--scene-opacity);
  filter: saturate(0.92) brightness(calc(0.72 + var(--scene-opacity) * 0.28));
  transform: translate3d(var(--scene-x), var(--scene-y), 0) scale(var(--scene-scale));
  transform-origin: center;
  will-change: opacity, transform;
  transition: filter 80ms linear;
}

.scene-sun {
  position: absolute;
  top: 16%;
  left: 19%;
  width: 17vw;
  min-width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 222, 153, 0.7);
  filter: blur(18px);
  transform: translate3d(var(--sun-x), var(--sun-y), 0);
  will-change: transform;
}

.scene-cloud {
  position: absolute;
  height: 18%;
  border-radius: 50%;
  background: rgba(243, 245, 230, 0.42);
  filter: blur(36px);
}

.scene-cloud-one {
  top: 9%;
  right: -2%;
  width: 46%;
  transform: rotate(-8deg);
}

.scene-cloud-two {
  top: 24%;
  left: -8%;
  width: 36%;
}

.scene-ridge {
  position: absolute;
  right: -5%;
  bottom: 29%;
  left: -5%;
  height: 34%;
  transform-origin: bottom;
  clip-path: polygon(0 68%, 8% 50%, 16% 59%, 27% 26%, 36% 51%, 45% 18%, 52% 48%, 62% 29%, 72% 54%, 83% 20%, 100% 53%, 100% 100%, 0 100%);
}

.scene-ridge-far {
  bottom: 37%;
  background: #639184;
  opacity: 0.76;
  filter: blur(4px);
}

.scene-ridge-near {
  background: linear-gradient(90deg, #21483f, #315b4d 42%, #163c38);
}

.scene-lagoon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 33%;
  background:
    repeating-linear-gradient(174deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, #376c68, #163d43);
}

.scene-lagoon::after {
  position: absolute;
  top: 13%;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: rgba(255, 225, 166, 0.46);
  box-shadow: 0 21px 28px rgba(255, 225, 166, 0.28);
}

.scene-shore {
  position: absolute;
  right: -2%;
  bottom: 24%;
  left: -2%;
  height: 11%;
  background: #203f36;
  clip-path: polygon(0 50%, 8% 30%, 15% 62%, 25% 33%, 36% 57%, 47% 26%, 57% 54%, 69% 31%, 80% 60%, 90% 26%, 100% 49%, 100% 100%, 0 100%);
}

.hero-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 8;
  width: min(90vw, 960px);
  color: white;
  text-align: center;
  opacity: var(--copy-opacity);
  transform: translate(-50%, calc(-50% + var(--copy-y)));
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #587078;
}

.hero-copy h1,
.narrow-copy h2,
.showcase-copy h2,
.editorial-copy h2,
.split-copy h2,
.cinematic-copy h2,
.faq-heading h2,
.final-copy h2 {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  font-size: clamp(52px, 7.3vw, 132px);
  line-height: 0.94;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 500px;
  margin: 25px auto 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(14px, 1.15vw, 18px);
}

.hero-primary-cta {
  display: inline-flex;
  min-height: 46px;
  margin-top: 28px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 100px;
  color: var(--ocean-deep);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(3, 18, 24, 0.16);
  font-size: 13px;
  font-weight: 500;
  transition: transform 180ms ease, background 180ms ease;
  pointer-events: auto;
}

.hero-primary-cta:hover {
  background: white;
  transform: translateY(-2px);
}

.phone-stage {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  perspective: 1300px;
  perspective-origin: 50% 48%;
}

.hero-waitlist-cta {
  display: flex;
  width: max-content;
  min-height: 46px;
  margin: 12px auto 0;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 100px;
  color: white;
  background: rgba(9, 37, 46, 0.28);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.hero-waitlist-cta:hover {
  background: rgba(9, 37, 46, 0.46);
  transform: translateY(-2px);
}

.hero-waitlist-cta span:last-child { font-size: 17px; line-height: 1; }

.phone-waitlist-cta {
  position: absolute;
  top: calc(50% + var(--phone-cta-offset));
  left: 50%;
  z-index: 9;
  display: inline-flex;
  min-height: 50px;
  max-width: calc(100% - 40px);
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: var(--ocean-deep);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(4, 24, 30, 0.18);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  opacity: var(--phone-waitlist-opacity);
  transform: translate3d(-50%, var(--phone-waitlist-y), 0);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  backdrop-filter: blur(10px);
  pointer-events: none;
}

.phone-waitlist-cta.is-visible { pointer-events: auto; }

.phone-waitlist-cta.is-visible:hover {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 17px 38px rgba(4, 24, 30, 0.24);
  transform: translate3d(-50%, calc(var(--phone-waitlist-y) - 2px), 0);
}

.phone-waitlist-cta span:last-child { font-size: 17px; line-height: 1; }

.phone-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 810px;
  transform: translate3d(calc(-50% + var(--phone-x)), calc(-50% + var(--phone-y)), 0)
    rotateX(var(--phone-rotate-x)) rotateY(var(--phone-rotate-y)) rotateZ(var(--phone-rotate-z))
    scale(var(--phone-scale));
  transform-origin: center;
  will-change: transform;
}

.phone-shadow {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 70px;
  background: rgba(4, 20, 25, 0.3);
  box-shadow:
    20px 32px 48px rgba(4, 20, 25, 0.3),
    42px 58px 92px rgba(4, 20, 25, 0.22);
  filter: blur(var(--phone-shadow-blur));
  opacity: var(--phone-shadow-opacity);
  transform: translate3d(
      var(--phone-shadow-x),
      var(--phone-shadow-y),
      0
    )
    scale(0.985);
}

.phone-shell {
  position: relative;
  width: 100%;
  height: 100%;
}

.phone-depth {
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(236, 210, 200, 0.46);
  border-radius: 67px;
  background:
    linear-gradient(90deg, #09151a 0 8%, #455158 17%, #181f24 48%, #ad8f89 78%, #172329 100%);
  box-shadow:
    -2px 2px 0 rgba(255, 255, 255, 0.2),
    -8px 10px 20px rgba(4, 17, 22, 0.22);
  transform: translate3d(var(--chassis-depth-x), var(--chassis-depth-y), 0) scale(0.997);
  will-change: transform;
}

.phone-bezel {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 64px;
  background:
    linear-gradient(102deg, rgba(255, 255, 255, 0.74), transparent 8% 88%, rgba(255, 232, 222, 0.45)),
    linear-gradient(118deg, #26343a 0%, #d9bdb5 13%, #4b575d 22%, #111b20 44%, #9d827c 73%, #25343a 100%);
  box-shadow:
    0 0 0 1px #0a151a,
    0 0 0 2px rgba(220, 193, 184, 0.36),
    inset 1px 0 0 rgba(255, 255, 255, 0.66),
    inset -2px 0 0 rgba(5, 16, 20, 0.58),
    0 18px 38px rgba(7, 24, 28, 0.18);
}

.phone-shell::before,
.phone-shell::after {
  position: absolute;
  left: -5px;
  z-index: 2;
  width: 4px;
  content: "";
  border-radius: 5px 0 0 5px;
  background: linear-gradient(90deg, #101c21, #6d7578 68%, #17242a);
  box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.42);
}

.phone-shell::before { top: 145px; height: 68px; }
.phone-shell::after { top: 230px; height: 104px; }

.phone-screen-mask {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 54px;
  background: linear-gradient(160deg, #132d39 0%, #1f3d47 55%, #3f4c4e 100%);
  box-shadow:
    0 0 0 1px rgba(4, 12, 16, 0.8),
    inset 1px 1px 0 rgba(255, 255, 255, 0.2),
    inset -1px -1px 0 rgba(0, 0, 0, 0.3);
  isolation: isolate;
}

.phone-screen-plane {
  position: absolute;
  inset: 0;
  transform: none;
  -webkit-font-smoothing: antialiased;
}

.phone-screen-mask::after {
  position: absolute;
  inset: 0;
  z-index: 8;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(106deg, rgba(255, 255, 255, 0.14), transparent 19% 76%, rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 18%);
  opacity: var(--glass-opacity);
  pointer-events: none;
}

.phone-clouds {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: var(--cloud-opacity);
  background:
    radial-gradient(circle at 50% 54%, rgba(69, 102, 111, 0.44), transparent 33%),
    linear-gradient(135deg, #0e2b39, #38474d);
}

.phone-clouds span {
  position: absolute;
  display: block;
  width: 300px;
  height: 100px;
  border-radius: 50%;
  background: rgba(178, 190, 189, 0.15);
  filter: blur(35px);
}

.phone-clouds span:nth-child(1) { top: 12%; left: -20%; transform: rotate(18deg); }
.phone-clouds span:nth-child(2) { top: 48%; right: -18%; transform: rotate(-18deg); }
.phone-clouds span:nth-child(3) { bottom: 6%; left: 2%; }

.phone-status {
  position: absolute;
  top: 14px;
  right: 25px;
  left: 25px;
  z-index: 6;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #253a40;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  opacity: var(--ui-status-opacity);
}

.status-icons {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #493b3a;
}

.status-icons svg {
  display: block;
  overflow: visible;
  fill: currentColor;
}

.status-signal { width: 14px; height: 11px; }
.status-wifi { width: 16px; height: 13px; fill: none !important; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; }
.status-wifi circle { fill: currentColor; stroke: none; }
.status-battery { width: 22px; height: 11px; fill: none !important; stroke: currentColor; stroke-width: 1.25; }
.status-battery .battery-level { fill: currentColor; stroke: none; }

.dynamic-island {
  width: 104px;
  height: 30px;
  border-radius: 20px;
  background: #0b1116;
}

.puna-interface {
  position: absolute;
  inset: 0;
  padding: 58px 20px 16px;
  color: #193a42;
  background:
    radial-gradient(circle at 80% 13%, rgba(255, 238, 190, 0.9), transparent 28%),
    linear-gradient(160deg, #fbf7ed 0%, #f9d6c6 48%, #f0e9da 100%);
  opacity: var(--ui-opacity);
}

.phone-demo-content {
  position: absolute;
  inset: 58px 20px 140px;
  display: flex;
  min-height: 0;
  flex-direction: column;
  overflow: hidden;
}

.puna-interface.is-demo-ready .phone-demo-intro,
.puna-interface.is-demo-ready .phone-demo-summary {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

.puna-interface.is-demo-ready .phone-demo-intro.is-visible,
.puna-interface.is-demo-ready .phone-demo-summary.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.phone-demo-intro,
.phone-demo-summary {
  transition:
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.chat-heading {
  margin-top: 74px;
}

.chat-heading span {
  color: #526b70;
  font-size: 14px;
}

.chat-heading h2 {
  margin: 7px 0 22px;
  font-family: "Manrope", sans-serif;
  font-size: 43px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.chat-card {
  padding: 18px;
  border: 1px solid rgba(24, 51, 59, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 25px rgba(87, 61, 43, 0.07);
}

.chat-card span,
.chat-card small {
  display: block;
  font-size: 12px;
}

.chat-card strong {
  display: block;
  margin: 6px 0;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  font-weight: 500;
}

.chat-card small { color: #668078; }

.phone-conversation {
  min-height: 0;
  flex: 1;
  margin-top: 14px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(to bottom, transparent 0, #000 12px, #000 100%);
}

.phone-conversation::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.phone-message-list {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 12px 2px 9px;
}

.phone-demo-message {
  width: fit-content;
  max-width: 88%;
  padding: 10px 12px;
  border: 1px solid rgba(24, 51, 59, 0.08);
  color: #253f45;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 7px 18px rgba(76, 55, 42, 0.055);
  font-size: 11.5px;
  line-height: 1.38;
  opacity: 0;
  transform: translate3d(0, 12px, 0);
  transition:
    opacity 300ms ease,
    transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.phone-demo-message.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.phone-demo-message.is-user {
  align-self: flex-end;
  max-width: 82%;
  border-radius: 18px 18px 5px 18px;
  background: rgba(255, 255, 255, 0.9);
}

.phone-demo-message.is-assistant {
  align-self: flex-start;
  border-radius: 18px 18px 18px 5px;
}

.puna-interface.is-resetting .phone-demo-intro,
.puna-interface.is-resetting .phone-demo-summary,
.puna-interface.is-resetting .phone-demo-message {
  opacity: 0;
  transform: translate3d(0, -8px, 0);
}

.app-composer {
  position: absolute;
  right: 18px;
  bottom: 75px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 8px 7px 16px;
  border: 1px solid rgba(24, 51, 59, 0.1);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.78);
  color: #708084;
  font-size: 12px;
  pointer-events: none;
}

.app-composer button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}

.app-tabs {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  justify-content: space-around;
  color: #778487;
  font-size: 9px;
}

.app-tabs span {
  display: grid;
  gap: 4px;
  justify-items: center;
}

.app-tabs b {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
}

.app-tabs .active { color: var(--ink); }
.app-tabs .active b { color: white; background: var(--ink); }

.hero-progress {
  position: absolute;
  right: 23px;
  bottom: 23px;
  z-index: 9;
  width: 2px;
  height: 72px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-progress span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  background: white;
  transform: scaleY(0);
  transform-origin: bottom;
}

/* Shared content */
.section-shell {
  width: calc(100% - var(--section-x) * 2);
  max-width: 1500px;
  margin-inline: auto;
}

.section-pad {
  padding: clamp(88px, 10vw, 170px) var(--section-x);
}

.narrow-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.narrow-copy h2 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 1;
}

.narrow-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 26px auto;
  color: #61737a;
  font-size: 16px;
  line-height: 1.55;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
}

.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(3px, -3px); }

.showcase-card {
  position: relative;
  min-height: min(830px, 88vh);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(211, 232, 213, 0.52), transparent 25%),
    linear-gradient(145deg, #17323b 0%, #335c5f 52%, #808b68 100%);
}

.showcase-copy {
  position: absolute;
  top: clamp(34px, 5vw, 72px);
  left: clamp(28px, 5vw, 76px);
  z-index: 4;
  max-width: 430px;
}

.showcase-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(38px, 4vw, 68px);
  line-height: 0.98;
}

.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 100px;
  font-size: 12px;
  transition: transform 180ms ease, background 180ms ease;
}

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

.pill-button.light {
  color: var(--ink);
  background: white;
}

.pill-button.outline {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.pill-button.premium {
  color: white;
  background: var(--ocean);
  box-shadow: 0 10px 26px rgba(11, 45, 51, 0.18);
}

.showcase-description {
  max-width: 360px;
  margin: -12px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

.perspective-phone {
  position: absolute;
  top: 35%;
  left: 50%;
  width: min(510px, 58vw);
  height: 690px;
  padding: 28px;
  border: 7px solid #101d22;
  border-radius: 68px;
  color: var(--ink);
  background: #f3d7c7;
  box-shadow: 0 52px 100px rgba(6, 18, 20, 0.5);
  transform: translateX(-50%) perspective(800px) rotateX(48deg) rotateZ(-2deg);
  transform-origin: center top;
  animation: budget-phone-float 7.6s ease-in-out infinite;
}

@keyframes budget-phone-float {
  0%, 100% { transform: translateX(-50%) translateY(0) perspective(800px) rotateX(48deg) rotateZ(-2deg); }
  48% { transform: translateX(-50%) translateY(-9px) perspective(800px) rotateX(47deg) rotateZ(-1.65deg); }
}

.mini-speaker {
  width: 100px;
  height: 26px;
  margin: -13px auto 35px;
  border-radius: 20px;
  background: #111a1e;
}

.perspective-ui {
  padding: 25px;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.75);
}

.perspective-ui p { margin: 0; font-size: 14px; }
.perspective-ui strong { display: block; margin: 10px 0; font-size: 44px; }

.budget-line {
  height: 9px;
  margin: 28px 0;
  overflow: hidden;
  border-radius: 20px;
  background: #d9ded9;
}

.budget-line i {
  display: block;
  width: 68%;
  height: 100%;
  background: var(--coral);
  transform: scaleX(var(--budget-progress, 1));
  transform-origin: left center;
  will-change: transform;
}
.perspective-ui ul { margin: 0; padding: 0; list-style: none; }
.perspective-ui li {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  opacity: var(--budget-row-reveal, 1);
  filter: blur(calc((1 - var(--budget-row-reveal, 1)) * 5px));
  transform: translateY(calc((1 - var(--budget-row-reveal, 1)) * 12px));
  will-change: opacity, filter, transform;
}

[data-budget-kicker], [data-budget-amount] {
  opacity: var(--budget-copy-reveal, 1);
  transform: translateY(calc((1 - var(--budget-copy-reveal, 1)) * 8px));
  will-change: opacity, transform;
}

.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding-top: 4px;
}

.visual-card {
  position: relative;
  min-height: clamp(540px, 63vw, 820px);
  overflow: hidden;
}

.duo-grid .visual-card:first-child { border-radius: var(--radius-lg) 5px 5px var(--radius-lg); }
.duo-grid .visual-card:last-child { border-radius: 5px var(--radius-lg) var(--radius-lg) 5px; }

.portrait-visual {
  background-color: #24353d;
  background-image:
    linear-gradient(180deg, transparent 54%, rgba(5, 25, 31, 0.5) 100%),
    url("./images/images4.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.lagoon-visual {
  --bubble-cycle-duration: 10s;
  --bubble-blur: 14px;
  --bubble-glow-opacity: 0.52;
  background:
    radial-gradient(circle at 76% 15%, rgba(240, 233, 222, 0.24), transparent 27%),
    linear-gradient(150deg, var(--ocean-deep) 0%, #4d6a70 52%, #b4a88f 100%);
}

.puna-bubble-scene {
  position: absolute;
  z-index: 1;
  inset: 5% 4% 20%;
  overflow: hidden;
  container-type: size;
}

.expense-bubble,
.puna-bubble-core {
  position: absolute;
  top: 47%;
  left: 50%;
  display: grid;
  min-width: var(--bubble-size, clamp(84px, 9.2vw, 132px));
  min-height: clamp(48px, 5.2vw, 70px);
  padding: 13px 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(226, 240, 238, 0.08));
  box-shadow: 0 18px 34px rgba(7, 29, 35, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(calc(-50% + var(--x)), calc(-50% + var(--y)), 0);
  animation: puna-expense-cycle var(--bubble-cycle-duration) cubic-bezier(0.45, 0, 0.18, 1) infinite;
  animation-delay: var(--delay, 0s);
  animation-fill-mode: both;
  backdrop-filter: blur(var(--bubble-blur));
  will-change: transform, opacity;
}

.bubble-courses { --x: -31cqw; --y: -26cqh; --drift-x: 2.2cqw; --drift-y: -1.8cqh; --delay: 0s; }
.bubble-restaurant { --x: 25cqw; --y: -29cqh; --drift-x: -2.1cqw; --drift-y: 1.7cqh; --delay: 0.18s; }
.bubble-essence { --x: -35cqw; --y: -4cqh; --drift-x: 1.8cqw; --drift-y: 2.3cqh; --delay: 0.36s; }
.bubble-cinema { --x: 31cqw; --y: -4cqh; --drift-x: -2.5cqw; --drift-y: -1.6cqh; --delay: 0.54s; }
.bubble-vini { --x: -27cqw; --y: 21cqh; --drift-x: 2.4cqw; --drift-y: -2cqh; --delay: 0.72s; }
.bubble-abonnement { --x: 25cqw; --y: 25cqh; --drift-x: -1.7cqw; --drift-y: 1.9cqh; --delay: 0.9s; --bubble-size: clamp(104px, 11vw, 150px); }
.bubble-loyer { --x: -3cqw; --y: -31cqh; --drift-x: 2cqw; --drift-y: 1.7cqh; --delay: 1.08s; }
.bubble-loisirs { --x: 1cqw; --y: 31cqh; --drift-x: -2.2cqw; --drift-y: -1.5cqh; --delay: 1.26s; }

.puna-bubble-glow {
  position: absolute;
  top: 47%;
  left: 50%;
  width: clamp(180px, 24vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 180, 76, var(--bubble-glow-opacity)) 0%, rgba(233, 180, 76, 0.12) 42%, transparent 72%);
  filter: blur(13px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.55);
  animation: puna-core-glow var(--bubble-cycle-duration) ease-in-out infinite;
  will-change: transform, opacity;
}

.puna-bubble-core {
  z-index: 2;
  width: clamp(150px, 19vw, 250px);
  height: clamp(150px, 19vw, 250px);
  min-width: 0;
  min-height: 0;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.34);
  color: white;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(17, 75, 95, 0.36));
  box-shadow: 0 30px 70px rgba(5, 28, 34, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.26);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(27px, 3.2vw, 46px);
  font-weight: 500;
  letter-spacing: -0.055em;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.6);
  animation: puna-core-cycle var(--bubble-cycle-duration) cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.lagoon-visual.is-paused .expense-bubble,
.lagoon-visual.is-paused .puna-bubble-core,
.lagoon-visual.is-paused .puna-bubble-glow {
  animation-play-state: paused;
}

@keyframes puna-expense-cycle {
  0%, 4% { opacity: 0; transform: translate3d(calc(-50% + var(--x)), calc(-50% + var(--y) + 1.5cqh), 0) scale(0.9); }
  9% { opacity: 1; transform: translate3d(calc(-50% + var(--x)), calc(-50% + var(--y)), 0) scale(1); }
  15% { transform: translate3d(calc(-50% + var(--x) + var(--drift-x)), calc(-50% + var(--y) + var(--drift-y)), 0) scale(1); }
  28% { transform: translate3d(calc(-50% + var(--x) - var(--drift-x)), calc(-50% + var(--y) - var(--drift-y)), 0) scale(0.985); }
  40% { opacity: 1; transform: translate3d(calc(-50% + var(--x)), calc(-50% + var(--y)), 0) scale(1); }
  60% { opacity: 0.17; transform: translate3d(-50%, -50%, 0) scale(0.48); }
  80% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(0.34); }
  88% { opacity: 0.16; transform: translate3d(calc(-50% + var(--x)), calc(-50% + var(--y)), 0) scale(0.68); }
  100% { opacity: 0; transform: translate3d(calc(-50% + var(--x)), calc(-50% + var(--y) + 1.5cqh), 0) scale(0.92); }
}

@keyframes puna-core-cycle {
  0%, 51% { opacity: 0; transform: translate(-50%, -50%) scale(0.58); }
  61% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  79% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
  89%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.12); }
}

@keyframes puna-core-glow {
  0%, 51% { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  63% { opacity: 0.82; transform: translate(-50%, -50%) scale(1); }
  80% { opacity: 0.58; transform: translate(-50%, -50%) scale(1.08); }
  91%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(1.24); }
}

.card-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 3;
  max-width: 280px;
}

.light-caption { color: white; }
.card-caption span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.12em; }
.card-caption p { margin: 8px 0 0; font-size: 17px; line-height: 1.25; }
.statement {
  display: grid;
  justify-items: center;
  text-align: center;
}

.statement p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4.4vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}

.knot-mark {
  display: grid;
  width: 44px;
  height: 44px;
  margin-top: 35px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--lagoon);
  font-size: 25px;
}

.editorial-card {
  position: relative;
  min-height: min(850px, 88vh);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink-deep);
}

.editorial-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 28%, rgba(249, 197, 130, 0.75), transparent 21%),
    linear-gradient(135deg, #234d57, #8eb7af 45%, #e1a179 100%);
}

.editorial-art.editorial-photo {
  background: url("./images/image5.jpg") 58% center / cover no-repeat;
}

.editorial-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 34, 41, 0.82), transparent 55%);
}

.editorial-copy {
  position: absolute;
  top: 50%;
  left: clamp(32px, 6vw, 90px);
  z-index: 4;
  max-width: 550px;
  transform: translateY(-50%);
}

.editorial-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 0.96;
}

.editorial-copy > p:not(.eyebrow) {
  max-width: 370px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.cinematic-card {
  position: relative;
  min-height: min(850px, 88vh);
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: white;
  background: var(--ink-deep);
}

.cinematic-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #173842;
}

.cinematic-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.cinematic-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 34, 41, 0.82), transparent 55%);
}

.cinematic-copy {
  position: absolute;
  top: 50%;
  left: clamp(32px, 6vw, 90px);
  z-index: 4;
  max-width: 550px;
  transform: translateY(-50%);
}

.cinematic-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: 0.96;
}

.cinematic-copy > p:not(.eyebrow) {
  max-width: 390px;
  margin: 0 0 25px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.55;
}

.split-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 800px;
  padding-block: clamp(72px, 8vw, 130px) 0;
}

.split-feature.reverse { grid-template-columns: 0.95fr 1.05fr; }

.split-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.blur-visual {
  background-color: #4e8f91;
  background-image: url("./images/images3.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glass-streak {
  position: absolute;
  top: 42%;
  right: -10%;
  left: -10%;
  height: 18%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 100%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(8, 22, 26, 0.3);
  backdrop-filter: blur(18px);
  transform: rotate(-3deg);
}

.split-copy {
  max-width: 470px;
  padding: clamp(38px, 7vw, 110px);
}

.split-copy h2 {
  font-size: clamp(42px, 4.7vw, 70px);
  line-height: 0.98;
}

.split-copy > p:not(.eyebrow) {
  margin: 25px 0;
  color: #61737a;
  line-height: 1.6;
}

.horizon-visual {
  --goal-cycle-duration: 11s;
  background:
    linear-gradient(180deg, rgba(11, 45, 51, 0.08), rgba(11, 45, 51, 0.24)),
    url("./images/image6.jpg") center / cover no-repeat;
}

.goal-landscape {
  position: absolute;
  inset: 0;
  overflow: hidden;
  container-type: size;
}

.horizon-sun {
  position: absolute;
  top: 7%;
  left: 50%;
  width: clamp(170px, 30vw, 350px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 230, 164, 0.94) 0%, rgba(233, 180, 76, 0.42) 32%, rgba(233, 180, 76, 0.08) 64%, transparent 75%);
  filter: blur(7px);
  opacity: 0.42;
  transform: translateX(-50%) scale(0.74);
  animation: goal-sun-cycle var(--goal-cycle-duration) ease-in-out infinite;
  will-change: transform, opacity;
}

.horizon-land {
  position: absolute;
  right: -8%;
  bottom: -2%;
  left: -8%;
  transform-origin: center bottom;
  will-change: transform;
}

.horizon-land-far {
  height: 55%;
  clip-path: polygon(0 54%, 13% 39%, 25% 51%, 40% 18%, 54% 49%, 68% 27%, 81% 52%, 93% 33%, 100% 47%, 100% 100%, 0 100%);
  background: #6f8d7e;
  opacity: 0.58;
  animation: goal-land-far var(--goal-cycle-duration) ease-in-out infinite;
}

.horizon-land-mid {
  height: 43%;
  clip-path: polygon(0 56%, 15% 26%, 31% 54%, 46% 12%, 62% 52%, 77% 24%, 91% 55%, 100% 38%, 100% 100%, 0 100%);
  background: #42695e;
  opacity: 0.84;
  animation: goal-land-mid var(--goal-cycle-duration) ease-in-out infinite;
}

.horizon-land-near {
  height: 28%;
  clip-path: polygon(0 55%, 14% 31%, 30% 47%, 49% 18%, 68% 48%, 83% 29%, 100% 52%, 100% 100%, 0 100%);
  background: var(--ocean-deep);
  opacity: 0.97;
  animation: goal-land-near var(--goal-cycle-duration) ease-in-out infinite;
}

.goal-path {
  position: absolute;
  top: 44%;
  left: 36%;
  width: 28%;
  height: 54%;
  overflow: visible;
  filter: drop-shadow(0 0 10px rgba(233, 180, 76, 0.24));
}

.goal-path path {
  fill: none;
  stroke: url("#goal-path-gradient");
  stroke-linecap: round;
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.goal-card {
  position: absolute;
  top: 14%;
  left: 50%;
  z-index: 4;
  width: min(66%, 360px);
  padding: clamp(20px, 2.7vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius-app-xl);
  color: white;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(11, 45, 51, 0.2));
  box-shadow: 0 28px 64px rgba(9, 35, 39, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateX(-50%);
  animation: goal-card-float var(--goal-cycle-duration) ease-in-out infinite;
  backdrop-filter: blur(18px);
  will-change: transform;
}

.goal-card > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.goal-card strong {
  display: block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.goal-card-values {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 15px;
}

.goal-card-values small { color: rgba(255, 255, 255, 0.76); font-size: clamp(10px, 0.9vw, 13px); }
.goal-card-values b { font-size: clamp(15px, 1.4vw, 19px); font-weight: 600; }

.goal-progress {
  display: block;
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.goal-progress i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #d6e5df, #f0ca75);
  box-shadow: 0 0 14px rgba(233, 180, 76, 0.28);
  transform: scaleX(0.35);
  transform-origin: left center;
  will-change: transform;
}

.goal-contribution {
  position: absolute;
  top: 42%;
  left: 50%;
  z-index: 5;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(240, 233, 222, 0.16);
  box-shadow: 0 14px 30px rgba(7, 31, 35, 0.16);
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 600;
  opacity: 0;
  backdrop-filter: blur(13px);
  will-change: transform, opacity;
}

.contribution-one { animation: goal-contribution-one var(--goal-cycle-duration) cubic-bezier(0.45, 0, 0.2, 1) infinite; }
.contribution-two { animation: goal-contribution-two var(--goal-cycle-duration) cubic-bezier(0.45, 0, 0.2, 1) infinite; }
.contribution-three { animation: goal-contribution-three var(--goal-cycle-duration) cubic-bezier(0.45, 0, 0.2, 1) infinite; }
.contribution-four { animation: goal-contribution-four var(--goal-cycle-duration) cubic-bezier(0.45, 0, 0.2, 1) infinite; }
.contribution-five { animation: goal-contribution-five var(--goal-cycle-duration) cubic-bezier(0.45, 0, 0.2, 1) infinite; }

.horizon-visual.is-paused .horizon-sun,
.horizon-visual.is-paused .horizon-land,
.horizon-visual.is-paused .goal-card,
.horizon-visual.is-paused .goal-contribution {
  animation-play-state: paused;
}

@keyframes goal-land-far {
  0%, 100% { transform: translate3d(-1.2%, 0, 0) scale(1.02); }
  50% { transform: translate3d(1.2%, 1%, 0) scale(1.035); }
}

@keyframes goal-land-mid {
  0%, 100% { transform: translate3d(1%, 0, 0) scale(1.025); }
  50% { transform: translate3d(-1.4%, -0.5%, 0) scale(1.04); }
}

@keyframes goal-land-near {
  0%, 100% { transform: translate3d(-0.8%, 0, 0) scale(1.02); }
  50% { transform: translate3d(1.1%, 0.7%, 0) scale(1.035); }
}

@keyframes goal-card-float {
  0%, 100% { transform: translate3d(-50%, 0, 0); }
  50% { transform: translate3d(-50%, -5px, 0); }
}

@keyframes goal-sun-cycle {
  0%, 16%, 100% { opacity: 0.38; transform: translateX(-50%) scale(0.72); }
  70%, 88% { opacity: 0.92; transform: translateX(-50%) scale(1.08); }
}

@keyframes goal-contribution-one {
  0%, 2%, 100% { opacity: 0; transform: translate3d(calc(-50% - 3cqw), 42cqh, 0) scale(0.9); }
  5% { opacity: 1; transform: translate3d(calc(-50% - 3cqw), 40cqh, 0) scale(1); }
  13% { opacity: 1; transform: translate3d(calc(-50% - 12cqw), 21cqh, 0) scale(1); }
  18% { opacity: 1; transform: translate3d(-50%, 1cqh, 0) scale(0.86); }
  23% { opacity: 0; transform: translate3d(-50%, -2cqh, 0) scale(0.62); }
}

@keyframes goal-contribution-two {
  0%, 16%, 100% { opacity: 0; transform: translate3d(calc(-50% + 4cqw), 42cqh, 0) scale(0.9); }
  19% { opacity: 1; transform: translate3d(calc(-50% + 4cqw), 40cqh, 0) scale(1); }
  27% { opacity: 1; transform: translate3d(calc(-50% + 13cqw), 22cqh, 0) scale(1); }
  32% { opacity: 1; transform: translate3d(-50%, 1cqh, 0) scale(0.86); }
  37% { opacity: 0; transform: translate3d(-50%, -2cqh, 0) scale(0.62); }
}

@keyframes goal-contribution-three {
  0%, 30%, 100% { opacity: 0; transform: translate3d(calc(-50% - 2cqw), 42cqh, 0) scale(0.9); }
  33% { opacity: 1; transform: translate3d(calc(-50% - 2cqw), 40cqh, 0) scale(1); }
  41% { opacity: 1; transform: translate3d(calc(-50% - 10cqw), 20cqh, 0) scale(1); }
  46% { opacity: 1; transform: translate3d(-50%, 1cqh, 0) scale(0.86); }
  51% { opacity: 0; transform: translate3d(-50%, -2cqh, 0) scale(0.62); }
}

@keyframes goal-contribution-four {
  0%, 44%, 100% { opacity: 0; transform: translate3d(calc(-50% + 6cqw), 42cqh, 0) scale(0.9); }
  47% { opacity: 1; transform: translate3d(calc(-50% + 6cqw), 40cqh, 0) scale(1); }
  55% { opacity: 1; transform: translate3d(calc(-50% + 14cqw), 21cqh, 0) scale(1); }
  60% { opacity: 1; transform: translate3d(-50%, 1cqh, 0) scale(0.86); }
  65% { opacity: 0; transform: translate3d(-50%, -2cqh, 0) scale(0.62); }
}

@keyframes goal-contribution-five {
  0%, 58%, 100% { opacity: 0; transform: translate3d(calc(-50% - 5cqw), 42cqh, 0) scale(0.9); }
  61% { opacity: 1; transform: translate3d(calc(-50% - 5cqw), 40cqh, 0) scale(1); }
  69% { opacity: 1; transform: translate3d(calc(-50% - 13cqw), 22cqh, 0) scale(1); }
  74% { opacity: 1; transform: translate3d(-50%, 1cqh, 0) scale(0.86); }
  79% { opacity: 0; transform: translate3d(-50%, -2cqh, 0) scale(0.62); }
}

.compact-statement { padding-bottom: clamp(58px, 6vw, 92px); }

.use-cases {
  --use-case-speed: 32s;
  width: 100%;
  overflow: hidden;
  padding-bottom: clamp(62px, 7vw, 105px);
}

.use-case-marquee {
  display: flex;
  width: max-content;
  transform: translate3d(-50%, 0, 0);
  animation: use-cases-left-to-right var(--use-case-speed) linear infinite;
  will-change: transform;
}

.use-case-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding-right: 16px;
}

.use-cases.is-paused .use-case-marquee,
.use-cases:hover .use-case-marquee { animation-play-state: paused; }

@keyframes use-cases-left-to-right {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.use-card {
  position: relative;
  width: clamp(265px, 24vw, 390px);
  min-height: 210px;
  padding: 27px;
  border-radius: 28px;
}

.use-card p {
  max-width: 240px;
  margin: 34px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.14;
  letter-spacing: -0.03em;
}

.use-card small { position: absolute; bottom: 25px; color: rgba(24, 51, 59, 0.62); }
.use-card-peach { background: #fad7c5; }
.use-card-cream { background: #efe8da; }
.use-card-blue { color: white; background: #456c78; }
.use-card-blue small { color: rgba(255, 255, 255, 0.65); }
.use-card-green { background: #bfd5bd; }
.quote-mark { font-family: Georgia, serif; font-size: 42px; line-height: 0.6; }

.use-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--ink);
}

.proof {
  text-align: center;
}

.pricing-heading {
  max-width: 760px;
  margin: 0 auto 54px;
}

.pricing-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(44px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pricing-heading > p:last-child {
  max-width: 590px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: var(--content-max);
  margin: 0 auto;
  text-align: left;
}

.plan-card {
  display: flex;
  min-height: 520px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--outline);
  border-radius: var(--radius-app-xl);
  flex-direction: column;
  background: var(--surface);
  box-shadow: var(--shadow-card);
}

.plan-card-premium {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 85% 12%, rgba(30, 142, 138, 0.42), transparent 34%),
    var(--ocean-deep);
  box-shadow: 0 28px 70px rgba(11, 45, 51, 0.2);
}

.plan-card > div:first-child:not(.plan-topline),
.plan-topline {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  flex-direction: column;
}

.plan-topline {
  justify-content: space-between;
  flex-direction: row;
}

.plan-label,
.best-offer {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.plan-card > div > strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 48px;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.plan-card small { color: var(--ink-soft); }
.plan-card-premium small { color: rgba(255, 255, 255, 0.62); }

.best-offer {
  padding: 8px 11px;
  border-radius: 100px;
  color: var(--ocean-deep);
  background: var(--sun);
  letter-spacing: 0.06em;
}

.premium-plan-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 22px 0 0;
}

.premium-plan-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.premium-plan-radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.premium-plan-choice {
  position: relative;
  display: flex;
  min-height: 82px;
  padding: 15px 42px 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-app-md);
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.025);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.premium-plan-choice::after {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: transparent;
  box-shadow: inset 0 0 0 4px transparent;
  content: "";
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.premium-plan-choice > strong { font-size: 17px; font-weight: 600; }
.premium-plan-option:hover .premium-plan-choice { background: rgba(255, 255, 255, 0.065); }
.premium-plan-option.is-selected .premium-plan-choice { border-color: rgba(255, 255, 255, 0.78); background: rgba(255, 255, 255, 0.14); box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13), 0 8px 24px rgba(0, 0, 0, 0.08); }
.premium-plan-option.is-selected .premium-plan-choice::after { border-color: var(--sun); background: var(--sun); box-shadow: inset 0 0 0 4px var(--ocean-deep); }
.premium-plan-radio:focus-visible + .premium-plan-choice { outline: 3px solid var(--sun); outline-offset: 3px; }

.premium-plan-choice .best-offer {
  width: fit-content;
  padding: 6px 8px;
  font-size: 9px;
  white-space: nowrap;
}

.premium-price-display {
  display: grid;
  min-height: 0;
  margin-top: 20px;
  align-content: start;
}

.premium-price-display > strong {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.premium-price-display > span { margin-top: 8px; color: rgba(255, 255, 255, 0.72); font-size: 13px; }
.premium-price-display > small { margin-top: 11px; color: rgba(255, 255, 255, 0.6); }
.premium-price-display > small[hidden] { display: none; }
.premium-price-display .premium-saving { color: #f2d58f; font-weight: 600; }

.premium-plan-selector[hidden],
.premium-price-display[hidden],
.premium-reassurance[hidden],
[data-premium-cta][hidden] { display: none; }

.plan-card-premium ul {
  margin: 24px 0;
}

.plan-card-premium .pill-button {
  width: fit-content;
  min-height: 52px;
  margin-top: 0;
  padding-inline: 25px;
  background: var(--lagoon);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  font-size: 13px;
  font-weight: 600;
}

.plan-card-premium .pill-button:hover {
  background: #27a19c;
}

.premium-reassurance {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: 11px;
  line-height: 1.45;
}

.paypal-sandbox-notice {
  width: fit-content;
  margin: 16px 0 0;
  padding: 8px 11px;
  border: 1px solid rgba(242, 213, 143, 0.65);
  border-radius: 10px;
  color: #ffe49c;
  background: rgba(242, 213, 143, 0.12);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  text-transform: uppercase;
}

.paypal-sandbox-notice[hidden] { display: none; }

[data-premium-cta][aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
  pointer-events: none;
}

.premium-active-state {
  display: grid;
  min-height: 162px;
  margin: 22px 0 0;
  padding: 26px;
  align-content: center;
  gap: 9px;
  border: 1px solid rgba(242, 213, 143, 0.3);
  border-radius: var(--radius-app-md);
  background: rgba(255, 255, 255, 0.08);
}

.premium-active-state[hidden] { display: none; }
.premium-active-state strong { color: #f2d58f; font-size: 24px; font-weight: 600; }
.premium-active-state span { color: rgba(255, 255, 255, 0.75); font-size: 14px; line-height: 1.55; }

.plan-card ul {
  display: grid;
  gap: 13px;
  margin: 36px 0 32px;
  padding: 0;
  list-style: none;
}

.plan-card li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.plan-card-premium li { color: rgba(255, 255, 255, 0.78); }
.plan-card li::before { position: absolute; top: 0; left: 0; color: var(--lagoon); content: "✓"; font-weight: 700; }
.plan-card .pill-button { width: fit-content; margin-top: auto; }

.plan-card-premium .pill-button { margin-top: 0; }

.pricing-modal[hidden] { display: none; }

.pricing-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  padding: 16px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}

.pricing-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.pricing-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 22, 0.72);
  backdrop-filter: blur(12px);
}

.pricing-modal-dialog {
  position: relative;
  width: min(1180px, 100%);
  max-height: calc(100dvh - 32px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-app-xl);
  background: var(--paper);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.35);
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-modal.is-open .pricing-modal-dialog {
  opacity: 1;
  transform: none;
}

.pricing-modal-scroll {
  max-height: calc(100dvh - 32px);
  padding: clamp(38px, 5vw, 64px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.pricing-modal-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.pricing-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  display: grid;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(11, 45, 51, 0.14);
  border-radius: 50%;
  background: rgba(250, 247, 242, 0.88);
  box-shadow: 0 10px 30px rgba(11, 45, 51, 0.12);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.pricing-modal-close span {
  font-size: 25px;
  font-weight: 300;
  line-height: 1;
}

.pricing-modal-heading {
  max-width: 680px;
  margin: 0 auto 34px;
  padding-inline: 20px;
  text-align: center;
}

.pricing-modal-heading h2 {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.pricing-modal-heading > p:last-child {
  max-width: 540px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.pricing-modal .pricing-grid {
  width: 100%;
  max-width: none;
}

.pricing-modal .plan-card.reveal {
  opacity: 1;
  transform: none;
}

.payment-modal[hidden] { display: none; }

.payment-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  padding: 20px;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.payment-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.payment-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 18, 22, 0.68);
  backdrop-filter: blur(12px);
}

.payment-modal-dialog {
  position: relative;
  width: min(540px, 100%);
  max-height: calc(100dvh - 40px);
  padding: clamp(28px, 5vw, 44px);
  overflow-x: hidden;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 2%, rgba(226, 240, 238, 0.92), transparent 38%),
    var(--paper);
  box-shadow: 0 34px 100px rgba(4, 18, 22, 0.4);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  overscroll-behavior: contain;
  scrollbar-width: none;
  transition: opacity 240ms ease, transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.payment-modal-dialog::-webkit-scrollbar { display: none; }

.payment-modal.is-open .payment-modal-dialog {
  opacity: 1;
  transform: none;
}

.payment-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(11, 45, 51, 0.13);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.payment-modal-close span { font-size: 25px; font-weight: 300; line-height: 1; }
.payment-modal-close:disabled { cursor: wait; opacity: 0.55; }

.payment-modal-brand {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 16px;
  background: var(--ocean-deep);
  box-shadow: 0 12px 28px rgba(11, 45, 51, 0.18);
}

.payment-modal-brand img { width: 38px; height: 38px; object-fit: contain; }

.payment-modal-environment {
  margin: 0 0 10px;
  color: var(--lagoon);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.payment-modal h2 {
  max-width: calc(100% - 34px);
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: clamp(32px, 8vw, 43px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.payment-modal-plan {
  display: flex;
  margin: 18px 0 26px;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-app-md);
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.64);
}

.payment-modal-plan strong { color: var(--ink); font-size: 15px; }
.payment-modal-plan span { text-align: right; font-size: 14px; }

.payment-mode-selector {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  border: 0;
}

.payment-mode-option {
  position: relative;
  display: block;
  cursor: pointer;
}

.payment-mode-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.payment-mode-option > span {
  position: relative;
  display: block;
  min-height: 76px;
  padding: 14px 42px 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-app-md);
  background: rgba(255, 255, 255, 0.58);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.payment-mode-option > span::after {
  position: absolute;
  top: 17px;
  right: 16px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(11, 45, 51, 0.32);
  border-radius: 50%;
  content: "";
}

.payment-mode-option strong,
.payment-mode-option small { display: block; }
.payment-mode-option strong { margin-bottom: 4px; color: var(--ink); font-size: 14px; }
.payment-mode-option small { color: var(--ink-soft); font-size: 12px; line-height: 1.4; }
.payment-mode-option.is-selected > span {
  border-color: var(--lagoon);
  background: var(--lagoon-soft);
  box-shadow: inset 0 0 0 1px rgba(30, 142, 138, 0.08);
}
.payment-mode-option.is-selected > span::after {
  border-color: var(--lagoon);
  background: var(--lagoon);
  box-shadow: inset 0 0 0 4px var(--paper);
}
.payment-mode-option input:focus-visible + span { outline: 3px solid var(--sun); outline-offset: 2px; }
.payment-mode-option:has(input:disabled) { cursor: wait; opacity: 0.58; }

.payment-modal-loading,
.payment-modal-error {
  margin: 0 0 16px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
}

.payment-modal-loading { color: var(--ink-soft); background: var(--lagoon-soft); }
.payment-modal-error { color: #8d3028; background: #f9e4df; }
.payment-modal-error[hidden],
.payment-modal-loading[hidden] { display: none; }

.paypal-buttons-panel[hidden] { display: none; }

.paypal-payment-buttons {
  position: relative;
  z-index: 0;
  min-height: 44px;
}

.paypal-server-subscription-button {
  width: 100%;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 8px;
  color: #082c64;
  background: #ffc439;
  box-shadow: 0 8px 20px rgba(8, 44, 100, 0.14);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.paypal-server-subscription-button:hover:not(:disabled) {
  filter: brightness(1.03);
  transform: translateY(-1px);
}

.paypal-server-subscription-button:focus-visible {
  outline: 3px solid var(--lagoon);
  outline-offset: 3px;
}

.paypal-server-subscription-button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.payment-modal-funding-note {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 520px) {
  .payment-modal { padding: 8px; }
  .payment-modal-dialog {
    max-height: calc(100dvh - 16px);
    padding: 62px 20px 24px;
    border-radius: 22px;
  }
  .payment-modal-close { top: 12px; right: 12px; }
  .payment-modal-brand { margin-bottom: 16px; }
  .payment-modal-plan { align-items: flex-start; flex-direction: column; gap: 5px; }
  .payment-modal-plan span { text-align: left; }
  .payment-mode-option > span { min-height: 72px; padding-inline: 14px 38px; }
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--content-max);
  margin: 14px auto 0;
  overflow: hidden;
  border: 1px solid var(--outline);
  border-radius: var(--radius-app-xl);
  text-align: left;
  background: var(--lagoon-soft);
}

.trust-strip article { min-height: 210px; padding: 30px; border-right: 1px solid rgba(11, 45, 51, 0.12); }
.trust-strip article:last-child { border-right: 0; }
.trust-strip span { color: var(--lagoon); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; }
.trust-strip strong { display: block; margin: 28px 0 10px; font-size: 18px; }
.trust-strip p { margin: 0; color: var(--ink-soft); font-size: 13px; line-height: 1.55; }

.logo-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1180px;
  margin: 55px auto 0;
  border-block: 1px solid var(--line);
}

.logo-strip span {
  display: grid;
  min-height: 120px;
  place-items: center;
  border-right: 1px solid var(--line);
  color: #6d8085;
  font-size: 11px;
  letter-spacing: 0.13em;
}

.logo-strip span:last-child { border-right: 0; }

.faq-section {
  padding-top: 40px;
  background: linear-gradient(180deg, var(--paper), #f0ebe3);
}

.faq-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 9vw, 145px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 80px);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 30px 80px rgba(50, 58, 51, 0.05);
}

.faq-heading h2,
.final-copy h2 {
  font-size: clamp(44px, 5.5vw, 76px);
  line-height: 0.98;
}

.faq-heading > p:not(.eyebrow) { margin: 28px 0 12px; color: #6d7c80; font-size: 13px; }

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child { border-bottom: 1px solid var(--line); }

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
  cursor: pointer;
  font-size: 15px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 22px; font-weight: 300; transition: transform 180ms ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -7px 40px 23px 0; color: #61737a; font-size: 13px; line-height: 1.6; }

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 650px);
  align-items: center;
  justify-items: center;
  justify-content: center;
  min-height: 860px;
  text-align: center;
  background:
    radial-gradient(circle at 75% 48%, rgba(242, 169, 137, 0.22), transparent 20%),
    linear-gradient(180deg, #f0ebe3, #f8e7dc);
}

.final-copy > p:not(.eyebrow):not(.form-message) { margin: 26px 0; color: #61737a; }

.waitlist-form {
  position: relative;
  display: flex;
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.64);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.waitlist-form:focus-within {
  border-color: rgba(24, 51, 59, 0.48);
  box-shadow: 0 0 0 3px rgba(24, 51, 59, 0.12);
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
}

.waitlist-form button {
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 100px;
  color: white;
  background: var(--ink);
  cursor: pointer;
}

.waitlist-form button:focus-visible {
  outline: 3px solid rgba(24, 51, 59, 0.28);
  outline-offset: 3px;
}

.waitlist-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.waitlist-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  pointer-events: none;
}

.form-message { min-height: 20px; margin: 9px 0 0; color: #467568; font-size: 12px; }
.form-message.is-error { color: #9a4d43; }

.site-footer {
  margin-bottom: 12px;
  padding: clamp(38px, 5vw, 70px);
  border-radius: var(--radius-lg);
  color: rgba(255, 255, 255, 0.75);
  background: #102b33;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-top p { font-family: "Manrope", sans-serif; font-size: 20px; }
.footer-brand { color: white; }

.footer-grid {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.3fr;
  gap: 30px;
  padding: 55px 0 70px;
}

.footer-grid > div { display: grid; align-content: start; gap: 13px; font-size: 12px; }
.footer-grid span { margin-bottom: 7px; color: rgba(255, 255, 255, 0.38); text-transform: uppercase; letter-spacing: 0.12em; }
.footer-grid a:hover { color: white; }
.footer-newsletter p { max-width: 250px; margin: 0; font-size: 19px; }
.footer-newsletter a { width: fit-content; padding-bottom: 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.4); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom div { display: flex; gap: 18px; font-size: 10px; }

.auth-callback-page {
  display: grid;
  min-height: 100dvh;
  padding: 24px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, #102b36, #345e61 60%, #8b9273);
}

.auth-callback-card {
  width: min(100%, 460px);
  padding: clamp(32px, 8vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 32px;
  background: rgba(9, 25, 32, 0.38);
  box-shadow: 0 30px 80px rgba(4, 16, 22, 0.22);
  text-align: center;
  backdrop-filter: blur(20px);
}

.auth-callback-card img { width: 64px; height: 64px; object-fit: contain; }
.auth-callback-card h1 { margin: 22px 0 12px; font-family: "Manrope", sans-serif; font-size: clamp(34px, 8vw, 54px); font-weight: 400; letter-spacing: -0.05em; }
.auth-callback-card p { margin: 0; color: rgba(255, 255, 255, 0.72); line-height: 1.5; }
.auth-callback-card a { display: inline-flex; margin-top: 24px; padding: 12px 18px; border-radius: 100px; color: var(--ink); background: white; }

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 800ms cubic-bezier(0.22, 1, 0.36, 1), transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  :root { --radius-lg: 32px; }
  .site-header { grid-template-columns: 1fr auto auto; gap: 10px; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    gap: 4px;
    align-content: center;
    height: 100vh;
    padding: 120px 24px 40px;
    border: 0;
    border-radius: 0;
    background: rgba(12, 38, 47, 0.97);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 240ms ease, visibility 240ms ease, transform 240ms ease;
  }

  .main-nav a { padding: 15px; font-size: 26px; text-align: center; }
  .site-header.nav-open .main-nav { opacity: 1; visibility: visible; transform: none; }
  .header-cta { padding: 12px 16px; }
  .auth-button { padding-inline: 13px; }
  .menu-toggle {
    position: relative;
    z-index: 5;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    background: rgba(9, 25, 32, 0.34);
    backdrop-filter: blur(15px);
  }

  .menu-toggle span { position: absolute; width: 15px; height: 1px; background: white; transition: transform 180ms ease; }
  .menu-toggle span:first-child { transform: translateY(-3px); }
  .menu-toggle span:last-child { transform: translateY(3px); }
  .site-header.nav-open .menu-toggle span:first-child { transform: rotate(45deg); }
  .site-header.nav-open .menu-toggle span:last-child { transform: rotate(-45deg); }
  .split-feature, .split-feature.reverse { grid-template-columns: 1fr 1fr; min-height: 650px; }
  .split-visual { min-height: 510px; }
  .split-copy { padding: clamp(30px, 5vw, 55px); }
  .faq-shell { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(11, 45, 51, 0.12); }
  .trust-strip article:last-child { border-bottom: 0; }
}

@media (max-width: 720px) {
  :root { --section-x: 12px; --radius-lg: 26px; --radius-md: 22px; }
  .site-header { top: 13px; }
  .site-header.is-past-hero .brand,
  .main-nav,
  .header-cta,
  .auth-button,
  .menu-toggle { -webkit-backdrop-filter: none; backdrop-filter: none; }
  .brand { font-size: 19px; }
  .brand-mark { width: 35px; height: 35px; font-size: 22px; }
  .brand-logo { width: 37px; height: 37px; }
  .header-actions { gap: 6px; }
  .header-cta { min-height: 39px; padding: 10px 12px; font-size: 11px; }
  .auth-button { min-height: 39px; max-width: 115px; padding: 7px 10px; font-size: 11px; }
  .auth-avatar { width: 23px; height: 23px; }
  .auth-modal { padding: 12px; }
  .auth-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 30px 20px 24px;
    border-radius: 24px;
  }
  .auth-modal-close { top: 12px; right: 12px; }
  .auth-modal-brand { margin-bottom: 22px; }
  .auth-modal #auth-modal-description { margin-bottom: 24px; }
  .auth-provider-button, .auth-submit-button { min-height: 50px; }
  .auth-otp-actions { align-items: flex-start; flex-direction: column; }
  .hero-scroll { height: 145vh; height: 145svh; }
  .hero-sticky {
    --mobile-phone-scale: 0.78;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    border-radius: 0 0 22px 22px;
    background: #173640;
  }
  .island-scene {
    opacity: 0;
    filter: none;
    transform: translate3d(0, 8px, 0) scale(1.02);
    transition: opacity 240ms ease-out, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-copy {
    top: 48%;
    opacity: 1;
    transform: translate3d(-50%, -50%, 0);
    transition: opacity 180ms ease-out, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .hero-copy h1 { font-size: clamp(46px, 15vw, 68px); }
  .hero-subtitle { max-width: 300px; line-height: 1.45; }
  .hero-primary-cta { margin-top: 24px; }
  .hero-waitlist-cta { min-height: 46px; padding-inline: 20px; font-size: 12px; }
  .phone-waitlist-cta {
    top: calc(50% + 270px);
    min-height: 48px;
    padding-inline: 20px;
    opacity: 0;
    font-size: 12px;
    transform: translate3d(-50%, 8px, 0);
    transition: opacity 160ms ease-out, transform 200ms cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: none;
  }
  .phone-3d {
    width: 345px;
    height: 716px;
    opacity: 0;
    backface-visibility: hidden;
    transform: translate3d(-50%, calc(-50% - 14px), 0) scale(var(--mobile-phone-scale));
    transition: opacity 200ms ease-out, transform 250ms cubic-bezier(0.22, 1, 0.36, 1);
  }
  .phone-stage { perspective: none; contain: layout paint style; }
  .phone-shadow {
    inset: 8px;
    background: transparent;
    box-shadow: 14px 26px 38px rgba(4, 20, 25, 0.34);
    filter: none;
    opacity: 0.42;
  }
  .phone-depth { will-change: auto; }
  .phone-clouds span { display: none; }
  .phone-screen-mask::after { display: none; }
  .phone-demo-intro,
  .phone-demo-summary,
  .phone-demo-message {
    transition: opacity 220ms ease-out, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: auto;
  }
  .phone-clouds { opacity: 0; }
  .puna-interface, .phone-status { opacity: 1; }
  .hero-copy, .phone-3d, .island-scene { will-change: opacity, transform; }
  .puna-interface, .phone-status { will-change: opacity; }
  .hero-sticky.is-mobile-phone-revealed .island-scene {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  .hero-sticky.is-mobile-phone-revealed .hero-copy {
    opacity: 0;
    transform: translate3d(-50%, calc(-50% - 12px), 0);
    pointer-events: none;
  }
  .hero-sticky.is-mobile-phone-revealed .phone-3d {
    opacity: 1;
    transform: translate3d(-50%, calc(-50% - 24px), 0) scale(var(--mobile-phone-scale));
  }
  .hero-sticky.is-mobile-phone-revealed .phone-waitlist-cta {
    opacity: 1;
    transform: translate3d(-50%, 0, 0);
    transition-delay: 90ms;
  }
  .phone-bezel { border-radius: 57px; }
  .phone-depth { border-radius: 60px; }
  .phone-screen-mask { border-radius: 48px; }
  .phone-status { top: 12px; }
  .dynamic-island { width: 92px; height: 26px; }
  .puna-interface { padding: 52px 18px 14px; }
  .phone-demo-content { inset: 52px 18px 132px; }
  .chat-heading { margin-top: 60px; }
  .chat-heading h2 { font-size: 38px; margin-bottom: 15px; }
  .chat-card { padding: 14px; }
  .chat-card strong { font-size: 27px; }
  .app-composer { bottom: 68px; }
  .hero-progress { display: none; }
  .section-pad { padding-block: clamp(72px, 22vw, 110px); }
  .narrow-copy h2 { font-size: 43px; }
  .showcase-card { min-height: 670px; border-radius: var(--radius-lg); }
  .showcase-copy { right: 24px; left: 24px; }
  .showcase-copy h2 { font-size: 42px; }
  .showcase-description { max-width: 290px; font-size: 13px; }
  .perspective-phone { top: 43%; width: 350px; height: 550px; padding: 19px; transform: translateX(-50%) perspective(800px) rotateX(50deg) rotateZ(-2deg); animation-name: budget-phone-float-mobile; }
  @keyframes budget-phone-float-mobile {
    0%, 100% { transform: translateX(-50%) translateY(0) perspective(800px) rotateX(50deg) rotateZ(-2deg); }
    48% { transform: translateX(-50%) translateY(-6px) perspective(800px) rotateX(49deg) rotateZ(-1.7deg); }
  }
  .perspective-ui { padding: 18px; }
  .perspective-ui strong { font-size: 34px; }
  .duo-grid { grid-template-columns: 1fr; gap: 4px; }
  .visual-card { min-height: 540px; }
  .duo-grid .visual-card:first-child, .duo-grid .visual-card:last-child { border-radius: var(--radius-lg); }
  .puna-bubble-scene { inset: 6% 3% 22%; }
  .expense-bubble { min-width: var(--bubble-size, clamp(76px, 25vw, 112px)); min-height: 46px; padding: 11px 15px; }
  .bubble-abonnement { --bubble-size: clamp(100px, 31vw, 132px); }
  .puna-bubble-core { width: clamp(140px, 44vw, 190px); height: clamp(140px, 44vw, 190px); }
  .statement p { font-size: 37px; }
  .editorial-card, .cinematic-card { min-height: 690px; }
  .editorial-art::after, .cinematic-art::after { background: linear-gradient(180deg, transparent 20%, rgba(8, 34, 41, 0.88) 90%); }
  .editorial-copy, .cinematic-copy { top: auto; right: 26px; bottom: 35px; left: 26px; transform: none; }
  .editorial-copy h2, .cinematic-copy h2 { font-size: 45px; }
  .split-feature, .split-feature.reverse { display: flex; min-height: 0; padding-top: 64px; flex-direction: column; }
  .split-feature.reverse .split-copy { order: 2; }
  .split-feature.reverse .split-visual { order: 1; }
  .split-visual { width: 100%; min-height: 470px; }
  .goal-card { top: 11%; width: min(78%, 310px); padding: 20px; }
  .goal-card-values { margin-block: 16px 12px; }
  .goal-path { top: 42%; left: 31%; width: 38%; height: 56%; }
  .goal-contribution { padding: 10px 13px; font-size: 10px; }
  .split-copy { max-width: none; padding: 35px 14px 0; }
  .split-copy h2 { font-size: 43px; }
  .use-case-track { padding-right: 12px; }
  .use-card { flex: 0 0 82vw; }
  .logo-strip { grid-template-columns: repeat(2, 1fr); }
  .logo-strip span { min-height: 95px; border-bottom: 1px solid var(--line); }
  .logo-strip span:nth-child(2n) { border-right: 0; }
  .logo-strip span:last-child { grid-column: 1 / -1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-heading { margin-bottom: 38px; }
  .pricing-heading h2 { font-size: 47px; }
  .plan-card { min-height: 0; }
  .premium-plan-choice { min-height: 92px; padding: 14px 40px 14px 14px; }
  .pricing-modal { padding: 8px; }
  .pricing-modal-dialog { max-height: calc(100dvh - 16px); border-radius: 22px; }
  .pricing-modal-scroll { max-height: calc(100dvh - 16px); padding: 62px 12px 18px; }
  .pricing-modal-close { position: absolute; top: 12px; right: 12px; }
  .pricing-modal-heading { margin-bottom: 28px; padding-inline: 12px; }
  .pricing-modal-heading h2 { font-size: 43px; }
  .pricing-modal .pricing-grid { gap: 10px; }
  .pricing-modal .plan-card { padding: 28px 22px; }
  .pricing-modal .premium-plan-choice { min-height: 82px; }
  .faq-section { padding-inline: 12px; }
  .faq-shell { gap: 50px; padding: 34px 22px; }
  .faq-heading h2, .final-copy h2 { font-size: 48px; }
  .final-cta { grid-template-columns: 1fr; justify-items: center; min-height: 0; text-align: center; }
  .waitlist-form { margin-inline: auto; }
  .site-footer { padding: 34px 24px; }
  .footer-top { align-items: flex-start; padding-bottom: 35px; }
  .footer-top p { max-width: 100px; margin: 5px 0; text-align: right; }
  .footer-grid { grid-template-columns: 1fr 1fr; padding-block: 40px; }
  .footer-newsletter { grid-column: 1 / -1; margin-top: 20px; }
  .footer-bottom { align-items: flex-start; gap: 15px; flex-direction: column; }
}

@media (max-width: 480px) {
  .hero-sticky { --phone-scale: 1.36; }
}

@media (max-width: 400px) {
  .hero-sticky { --phone-scale: 1.36; }
  .site-header { gap: 7px; }
  .site-header > .brand span { display: none; }
  .header-cta { padding-inline: 10px; }
  .auth-button { max-width: 104px; padding-inline: 9px; }
  .hero-copy h1 { font-size: 43px; }
  .phone-3d { width: 326px; height: 680px; }
  .phone-depth { border-radius: 58px; }
  .phone-demo-content { inset-inline: 17px; bottom: 127px; }
  .chat-heading { margin-top: 53px; }
  .chat-card-summary { padding: 12px; }
  .phone-demo-message { max-width: 90%; font-size: 11px; }
  .waitlist-form { display: grid; gap: 7px; padding: 7px; border-radius: 20px; }
  .waitlist-form input { min-height: 45px; text-align: center; }
  .premium-plan-selector { gap: 6px; }
  .premium-plan-choice { padding: 13px 34px 13px 12px; }
  .premium-plan-choice::after { top: 13px; right: 12px; }
  .premium-plan-choice .best-offer { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .hero-scroll { height: 110vh; }
  .hero-sticky { --phone-scale: 0.9; --scene-opacity: 1; --copy-opacity: 0; --ui-opacity: 1; --ui-status-opacity: 1; --cloud-opacity: 0; --phone-rotate-x: 0.2deg; --phone-rotate-y: -1.4deg; --phone-rotate-z: 0.05deg; --chassis-depth-x: -6px; --chassis-depth-y: 4px; --phone-shadow-x: 14px; --phone-shadow-y: 22px; --phone-shadow-opacity: 0.5; --glass-opacity: 0.3; position: relative; }
  .puna-interface.is-demo-ready .phone-demo-intro,
  .puna-interface.is-demo-ready .phone-demo-summary,
  .phone-demo-message { opacity: 1; transform: none; }
  .reveal { opacity: 1; transform: none; }
  [data-budget-kicker], [data-budget-amount], .perspective-ui li { --budget-copy-reveal: 1; --budget-row-reveal: 1; opacity: 1; filter: none; transform: none; }
  [data-budget-progress] { --budget-progress: 1; }
  .expense-bubble { animation: none; opacity: 0.72; }
  .puna-bubble-core { animation: none; opacity: 1; transform: translate(-50%, -50%) scale(0.82); }
  .puna-bubble-glow { animation: none; opacity: 0.54; transform: translate(-50%, -50%) scale(0.9); }
  .horizon-sun, .horizon-land, .goal-card, .goal-progress i, .goal-contribution { animation: none; }
  .horizon-sun { opacity: 0.9; transform: translateX(-50%) scale(1); }
  .horizon-land { transform: none; }
  .goal-card { transform: translateX(-50%); }
  .goal-progress i { transform: scaleX(0.62); }
  .contribution-one { opacity: 0.9; transform: translate3d(calc(-50% - 22cqw), 26cqh, 0); }
  .contribution-two { opacity: 0.9; transform: translate3d(calc(-50% + 4cqw), 34cqh, 0); }
  .contribution-three { opacity: 0.9; transform: translate3d(calc(-50% + 19cqw), 22cqh, 0); }
  .contribution-four { opacity: 0.9; transform: translate3d(calc(-50% - 8cqw), 15cqh, 0); }
  .contribution-five { opacity: 0.9; transform: translate3d(calc(-50% + 12cqw), 10cqh, 0); }
  .use-cases { overflow-x: auto; }
  .use-case-marquee { width: max-content; padding-inline: 12px; animation: none; transform: none; }
  .use-case-track[aria-hidden="true"] { display: none; }
}
