:root {
  --ink: #101318;
  --muted: #5b6470;
  --line: rgba(16, 19, 24, 0.12);
  --paper: #fbfaf7;
  --soft: #f1f5ee;
  --green: #0bbf79;
  --green-dark: #087a52;
  --blue: #1d63ff;
  --coral: #ff6b57;
  --yellow: #f7c948;
  --shadow: 0 24px 80px rgba(16, 19, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: rgba(11, 191, 121, 0.25);
}

a {
  color: inherit;
}

.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: 14px;
  left: 50%;
  z-index: 30;
  display: flex;
  width: min(1180px, calc(100% - 28px));
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 40px rgba(16, 19, 24, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 50px rgba(16, 19, 24, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  text-decoration: none;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(16, 19, 24, 0.72);
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-select select {
  height: 42px;
  max-width: 136px;
  padding: 0 12px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
}

.header-cta,
.btn {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.btn.primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(16, 19, 24, 0.16);
}

.header-cta:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(16, 19, 24, 0.2);
}

.btn.secondary {
  color: var(--ink);
  border: 1px solid rgba(16, 19, 24, 0.18);
  background: rgba(255, 255, 255, 0.66);
}

.btn.secondary:hover {
  background: #fff;
  transform: translateY(-2px);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  align-items: center;
  padding: 118px 24px 88px;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 3%;
  bottom: 0;
  width: 78%;
  height: 100%;
  background-image: url("assets/hero-options/hero-option-02.png");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  transform: scale(0.94);
  transform-origin: center right;
  animation: heroDrift 16s ease-in-out infinite alternate;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 82%, transparent 100%),
    linear-gradient(180deg, #000 0%, #000 82%, transparent 100%);
  mask-composite: intersect;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.99) 0%, rgba(251, 250, 247, 0.93) 34%, rgba(251, 250, 247, 0.38) 66%, rgba(251, 250, 247, 0.08) 100%),
    linear-gradient(180deg, rgba(251, 250, 247, 0.04), rgba(251, 250, 247, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 24%;
  background: linear-gradient(90deg, rgba(251, 250, 247, 0), var(--paper) 88%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 8vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(570px, 100%);
  margin: 28px 0 0;
  color: #2f3740;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: #2f3740;
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.trust-item {
  min-height: 112px;
  padding: 24px;
  border-right: 1px solid rgba(16, 19, 24, 0.08);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1;
}

.trust-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 750;
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-head {
  width: min(730px, 100%);
}

.section-head h2,
.split-copy h2,
.scenario-copy h2,
.download h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.split-copy p,
.download p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.feature-card,
.price-card,
.faq details {
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 36px rgba(16, 19, 24, 0.06);
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-card:nth-child(2) .icon {
  color: var(--blue);
}

.feature-card:nth-child(3) .icon {
  color: var(--coral);
}

.feature-card:nth-child(4) .icon {
  color: var(--green-dark);
}

.icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #f4f6f4;
  color: var(--green);
  font-size: 1.45rem;
  font-weight: 900;
}

.feature-card h3 {
  margin: 32px 0 10px;
  font-size: 1.18rem;
}

.feature-card p,
.price-card p,
.price-card li,
.faq p,
.check-list li {
  color: var(--muted);
}

.scenario-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(420px, 1.05fr) minmax(210px, 0.45fr);
  gap: 30px;
  align-items: center;
  padding: 92px max(24px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 48% 50%, rgba(11, 191, 121, 0.14), transparent 29%),
    radial-gradient(circle at 82% 22%, rgba(11, 191, 121, 0.08), transparent 22%),
    linear-gradient(180deg, #fbfaf7, #eef8f2);
  color: var(--ink);
}

.scenario-copy h2 {
  max-width: 500px;
}

.scenario-band .eyebrow {
  color: var(--green-dark);
}

.scenario-list {
  display: grid;
  gap: 10px;
  align-content: center;
  justify-items: start;
}

.scenario-art,
.inline-art,
.app-panel {
  border: 1px solid rgba(16, 19, 24, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(16, 19, 24, 0.06);
  overflow: hidden;
}

.scenario-art {
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.scenario-art img,
.inline-art img,
.section-art {
  display: block;
  width: 100%;
  height: auto;
}

.scenario-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(11, 191, 121, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
  box-shadow: 0 10px 26px rgba(16, 19, 24, 0.04);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
}

.split-copy {
  width: min(820px, 100%);
}

.ios-art-panel {
  display: grid;
  min-height: 520px;
  place-items: center;
  overflow: visible;
}

.ios-art-panel .section-art {
  width: min(430px, 100%);
  max-height: 560px;
  object-fit: contain;
}

.phone-shell {
  width: min(310px, 78vw);
  padding: 12px;
  border: 1px solid rgba(16, 19, 24, 0.2);
  border-radius: 42px;
  background: #151922;
  box-shadow: 0 30px 80px rgba(16, 19, 24, 0.28);
}

.phone-top {
  width: 88px;
  height: 22px;
  margin: 4px auto 10px;
  border-radius: 999px;
  background: #05070a;
}

.phone-screen {
  display: flex;
  min-height: 540px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 20px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #0d1118;
  color: #fff;
}

.app-status {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 800;
}

.app-status strong {
  color: var(--green);
}

.connect-ring {
  position: relative;
  display: grid;
  width: 172px;
  height: 172px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(11, 191, 121, 0.14);
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(11, 191, 121, 0.28),
    0 0 60px rgba(11, 191, 121, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
}

.connect-ring span {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 28px rgba(11, 191, 121, 0.55);
}

.phone-screen p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 800;
  text-align: center;
}

.mini-stats {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-stats span {
  padding: 10px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 850;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 750;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 191, 121, 0.14);
  color: var(--green-dark);
  content: "✓";
  font-size: 0.86rem;
  font-weight: 900;
}

.pricing {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}

.pricing .section-head {
  position: relative;
  z-index: 1;
}

.inline-art {
  width: min(720px, 100%);
  margin: 28px 0 22px;
}

.pricing-art {
  position: absolute;
  right: -20px;
  top: 36px;
  z-index: 0;
  width: min(640px, 48%);
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.2;
  pointer-events: none;
}

.pricing-art img {
  mix-blend-mode: multiply;
}

.pricing-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.price-card {
  position: relative;
  padding: 28px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(8px);
}

.price-card.featured {
  border-color: rgba(11, 191, 121, 0.46);
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.badge {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 191, 121, 0.14);
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
}

.plan-name {
  margin: 0;
  color: var(--green-dark) !important;
  font-weight: 900;
}

.price-card h3 {
  margin: 8px 0 8px;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding-left: 18px;
}

.faq {
  padding-top: 40px;
}

.faq-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 36px;
  align-items: center;
  margin-top: 36px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 0;
}

.faq-art {
  width: 100%;
  margin: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.faq-art img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.faq details {
  padding: 0 22px;
}

.faq summary {
  cursor: pointer;
  padding: 22px 0;
  font-size: 1.04rem;
  font-weight: 900;
}

.faq p {
  margin: 0;
  padding: 0 0 22px;
}

.download {
  padding: 96px 24px;
  background:
    linear-gradient(135deg, rgba(17, 24, 32, 0.95), rgba(8, 122, 82, 0.92)),
    #111820;
  color: #fff;
}

.download-inner {
  width: min(840px, 100%);
  margin: 0 auto;
  text-align: center;
}

.download .eyebrow {
  color: var(--yellow);
}

.download p {
  color: rgba(255, 255, 255, 0.76);
}

.download .btn {
  margin-top: 30px;
  color: var(--ink);
  background: #fff;
}

.legal-section {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto;
  padding: 72px 0 20px;
}

.legal-section article {
  scroll-margin-top: 110px;
  padding: 26px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.legal-page {
  background:
    linear-gradient(180deg, rgba(11, 191, 121, 0.08), rgba(251, 250, 247, 0) 280px),
    var(--paper);
}

.legal-document {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 138px 0 28px;
}

.legal-hero {
  padding: 34px 0 26px;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.legal-hero p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  padding: 38px;
  border: 1px solid rgba(16, 19, 24, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 70px rgba(16, 19, 24, 0.08);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.legal-content h2:first-of-type {
  margin-top: 28px;
}

.legal-content p,
.legal-content li {
  color: #39424d;
  font-size: 1rem;
}

.legal-content p {
  margin: 0 0 14px;
}

.legal-content ul {
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 34px 0;
}

.site-footer p {
  margin: 12px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green-dark);
}

.footer-links span {
  color: var(--muted);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 24px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 90svh;
    padding: 112px 24px 72px;
  }

  .hero-image {
    right: -18%;
    width: 120%;
    opacity: 0.78;
  }

  .hero-content {
    width: min(680px, 100%);
  }

  .trust-strip,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .split-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ios-art-panel {
    min-height: auto;
  }

  .ios-art-panel .section-art {
    width: min(360px, 100%);
    justify-self: start;
  }

  .scenario-band {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .scenario-art {
    max-width: 620px;
    justify-self: center;
  }

  .scenario-band {
    gap: 34px;
  }

  .faq-body {
    grid-template-columns: 1fr;
  }

  .faq-art {
    width: min(520px, 100%);
    order: -1;
  }

}

@media (max-width: 700px) {
  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 58px;
    gap: 10px;
    padding: 8px;
  }

  .brand-name {
    max-width: 104px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .language-select select {
    max-width: 104px;
    height: 40px;
    padding: 0 8px;
    font-size: 0.76rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 94svh;
    padding: 104px 16px 76px;
  }

  .hero-image {
    right: -52%;
    width: 160%;
    opacity: 0.52;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 18vw, 5.1rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-proof span {
    width: 100%;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
    margin-top: 0;
  }

  .trust-item {
    min-height: 104px;
    padding: 18px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid rgba(16, 19, 24, 0.08);
  }

  .section {
    padding: 78px 0;
  }

  .feature-grid,
  .pricing-grid,
  .scenario-band,
  .legal-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .scenario-band {
    padding: 70px 16px;
  }

  .scenario-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .scenario-list span {
    min-height: 40px;
    width: 100%;
    padding: 0 10px;
    font-size: 0.84rem;
  }

  .pricing-art {
    top: 180px;
    right: -28%;
    width: 130%;
    opacity: 0.12;
  }

  .faq-body {
    gap: 18px;
  }

  .faq-art {
    width: 100%;
  }

  .ios-art-panel .section-art {
    width: min(300px, 100%);
  }

  .price-card.featured {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-document {
    padding-top: 112px;
  }

  .legal-content {
    padding: 24px;
  }
}
