@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Onest:wght@400;500;600;700&display=swap');

:root {
--bg-main: #0b1320;
    --bg-soft: #1d3350;
    --bg-card: #1b2e47;
  --ink-900: #f2f6ff;
  --ink-700: #ced9eb;
  --ink-500: #9eb1cc;
  --brand-700: #4cf8a3;
  --brand-500: #30d58e;
  --brand-300: #99ffd0;
  --accent: #51c9ff;
  --accent-red: #ff5a6f;
  --accent-yellow: #ffd84a;
  --accent-green: #52f7a0;
--line: #42628a;
  --shadow: 0 20px 52px rgba(2, 8, 20, 0.52);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1120px, 92vw);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  color-scheme: dark;
}

body {
  font-family: 'Onest', 'Segoe UI', sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 10% 7%, rgba(72, 255, 167, 0.4) 0 26%, transparent 55%),
        radial-gradient(circle at 88% 14%, rgba(90, 199, 255, 0.36) 0 24%, transparent 58%),
        radial-gradient(circle at 52% 88%, rgba(138, 167, 255, 0.25) 0 28%, transparent 62%),
        linear-gradient(180deg, #0a1321 0%, #0f1c2f 50%, #0b1626 100%);
  min-height: 100vh;
  line-height: 1.55;
}

body::before,
body::after {
    content: '';
    position: fixed;
    z-index: -2;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(48px);
    opacity: 0.52;
}

body::before {
    width: 38vw;
    height: 38vw;
    left: -10vw;
    top: -8vw;
    background: radial-gradient(circle, rgba(94, 255, 187, 0.64) 0%, rgba(94, 255, 187, 0) 70%);
}

body::after {
    width: 34vw;
    height: 34vw;
    right: -8vw;
    top: 18vh;
    background: radial-gradient(circle, rgba(110, 206, 255, 0.62) 0%, rgba(110, 206, 255, 0) 70%);
}

body.motion-ok::before {
    animation: driftA 18s ease-in-out infinite alternate;
}

body.motion-ok::after {
    animation: driftB 22s ease-in-out infinite alternate;
}
img {
  max-width: 100%;
  display: block;
}

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

button,
input,
textarea,
select {
  color: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
background: rgba(12, 24, 39, 0.8);
    border-bottom: 1px solid rgba(123, 194, 255, 0.38);
transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

body.scrolled .site-header {
    background: rgba(14, 30, 48, 0.9);
    border-bottom-color: rgba(126, 219, 255, 0.52);
    box-shadow: 0 8px 30px rgba(6, 14, 28, 0.34);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(140deg, #1f9d65, #2fd487);
  display: grid;
  place-items: center;
color: #052317;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #d8e4f8;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #93ffd1;
}

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

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #101722;
  color: var(--ink-900);
  padding: 8px 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-family: 'Onest', sans-serif;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, #ff6a74 0%, #ffd84a 36%, #46f6a0 68%, #3ec4ff 100%);
  color: #051825;
  box-shadow: 0 14px 30px rgba(255, 106, 116, 0.22), 0 14px 32px rgba(70, 246, 160, 0.28);
}

.btn-ghost {
background: linear-gradient(135deg, rgba(32, 66, 102, 0.98), rgba(25, 53, 86, 0.98));
    color: #f4f9ff;
    border: 1px solid rgba(255, 216, 74, 0.8);
}

.btn-ghost:hover {
box-shadow: 0 12px 28px rgba(255, 216, 74, 0.38);
}

.play-btn {
  padding: 11px 16px;
  border-radius: 16px;
background: linear-gradient(135deg, #1f4f86 0%, #236f9f 40%, #27a39b 100%);
  color: #f7fbff;
border: 1px solid rgba(82, 247, 160, 0.85);
  display: inline-flex;
  gap: 10px;
  align-items: center;
box-shadow: 0 14px 30px rgba(82, 247, 160, 0.3), 0 12px 26px rgba(255, 216, 74, 0.24);
}

.play-btn:hover {
  box-shadow: 0 14px 30px rgba(56, 172, 246, 0.34);
}

.play-btn small {
  display: block;
  font-size: 0.68rem;
  color: #d2e8ff;
  line-height: 1.1;
}

.play-btn strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.1;
}

.hero {
  position: relative;
  isolation: isolate;
overflow: hidden;
  padding: 72px 0 30px;
  background:
    radial-gradient(circle at 14% 18%, rgba(123, 255, 197, 0.58) 0 34%, transparent 66%),
        radial-gradient(circle at 86% 14%, rgba(148, 221, 255, 0.58) 0 32%, transparent 66%),
        linear-gradient(180deg, rgba(168, 216, 255, 0.78) 0%, rgba(122, 183, 233, 0.46) 52%, rgba(92, 151, 205, 0.32) 100%);
        border-bottom: 1px solid rgba(126, 186, 255, 0.42);
}

.hero::before {
    content: '';
    position: absolute;
    inset: -25% -15% auto;
    height: 70%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    opacity: 0.44;
    pointer-events: none;
    transform: translateY(var(--hero-shift, 0px));
}

body.motion-ok .hero-grid {
    transform: translateY(var(--hero-grid-shift, 0px));
    transition: transform 0.18s linear;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 38px;
align-items: start;
}

.hero h1 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.1rem, 5vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
color: #0a2236;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero p {
  margin: 20px 0 0;
color: #1a3b55;
  max-width: 58ch;
}

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

.hero-points {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 7px 12px;
  border: 1px solid var(--line);
background: linear-gradient(140deg, rgba(31, 60, 92, 0.96), rgba(22, 47, 75, 0.96));
  color: var(--ink-700);
  font-size: 0.85rem;
}

.phone-wrap {
  position: relative;
  isolation: isolate;
}

.phone-wrap::before,
.phone-wrap::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.phone-wrap::before {
  width: 240px;
  height: 240px;
  background: rgba(61, 255, 166, 0.18);
  left: -44px;
  top: 46px;
}

.phone-wrap::after {
  width: 170px;
  height: 170px;
  background: rgba(91, 186, 255, 0.24);
  right: -26px;
  bottom: 50px;
}

.phone-card {
width: min(100%, 210px);
    margin-inline: auto;
border-radius: 12.4% / 6.85%;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(124, 177, 239, 0.3);
}

.phone-card img {
    width: 100%;
    height: auto;
    border-radius: inherit;
}
body.motion-ok .phone-card {
    animation: phoneFloat 6.2s ease-in-out infinite;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
gap: 12px;
  margin: 24px auto 0;
align-items: stretch;
}

.metric-card {
background: linear-gradient(145deg, rgba(34, 58, 87, 0.96), rgba(26, 46, 72, 0.97));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px;
min-height: 96px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(155, 205, 255, 0.08);
  color: var(--ink-900);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.metric-card:hover {
    transform: translateY(-4px) scale(1.01);
}

.metric-card:nth-child(1) {
  border-color: rgba(255, 90, 111, 0.7);
  box-shadow: inset 0 1px 0 rgba(255, 167, 176, 0.2), 0 0 0 1px rgba(255, 90, 111, 0.2);
}

.metric-card:nth-child(2) {
  border-color: rgba(255, 216, 74, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 235, 146, 0.22), 0 0 0 1px rgba(255, 216, 74, 0.2);
}

.metric-card:nth-child(3) {
  border-color: rgba(82, 247, 160, 0.72);
  box-shadow: inset 0 1px 0 rgba(180, 255, 221, 0.22), 0 0 0 1px rgba(82, 247, 160, 0.2);
}

.metric-card:nth-child(4) {
  border-color: rgba(255, 216, 74, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 235, 146, 0.22), 0 0 0 1px rgba(255, 216, 74, 0.2);
}

.metric-card strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.45rem;
}

.section {
  padding: 70px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.section-head-single {
    display: block;
}

.section-head-single h1,
.section-head-single h2 {
    margin: 0;
}
.section h2 {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3.1vw, 2.6rem);
  line-height: 1.1;
}

.section-sub {
  color: var(--ink-700);
  max-width: 60ch;
}

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

.feature-card {
background: linear-gradient(145deg, rgba(34, 58, 87, 0.95), rgba(24, 44, 67, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(152, 203, 255, 0.08);
  color: var(--ink-900);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover,
.step-card:hover,
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(8, 22, 40, 0.34), inset 0 1px 0 rgba(188, 225, 255, 0.12);
}

.feature-card:nth-child(3n + 1) {
  border-color: rgba(82, 247, 160, 0.66);
}

.feature-card:nth-child(3n + 2) {
  border-color: rgba(255, 216, 74, 0.66);
}

.feature-card:nth-child(3n + 3) {
  border-color: rgba(255, 90, 111, 0.66);
}

.feature-card h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
}

.feature-card p {
  margin: 0;
  color: var(--ink-700);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
background: linear-gradient(145deg, #1f4f74, #1c5f76);
  color: var(--brand-700);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.article-card {
background: linear-gradient(145deg, rgba(34, 58, 87, 0.95), rgba(24, 44, 67, 0.95));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: inset 0 1px 0 rgba(152, 203, 255, 0.08);
    color: var(--ink-900);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.article-card:nth-child(3n + 1) {
    border-color: rgba(82, 247, 160, 0.66);
}

.article-card:nth-child(3n + 2) {
    border-color: rgba(255, 216, 74, 0.66);
}

.article-card:nth-child(3n + 3) {
    border-color: rgba(255, 90, 111, 0.66);
}

.article-kicker {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.74rem;
    color: #9ed4ff;
}

.article-card h3 {
    margin: 0;
    font-size: 1.12rem;
    line-height: 1.3;
}

.article-card p {
    margin: 0;
    color: var(--ink-700);
}

.article-card a {
    margin-top: auto;
    color: #9dffd6;
    font-weight: 600;
}

.article-card a:hover {
    color: #b9ffe5;
}
.step-card {
background: linear-gradient(145deg, rgba(34, 58, 87, 0.95), rgba(24, 44, 67, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: inset 0 1px 0 rgba(152, 203, 255, 0.08);
  color: var(--ink-900);
transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.step-card:nth-child(1) {
  border-color: rgba(82, 247, 160, 0.64);
}

.step-card:nth-child(2) {
  border-color: rgba(255, 216, 74, 0.64);
}

.step-card:nth-child(3) {
  border-color: rgba(255, 90, 111, 0.64);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--brand-700);
color: #052a1a;
  font-weight: 700;
  margin-bottom: 12px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
}

.review-card p {
  margin: 0 0 14px;
}

.review-card span {
  color: var(--ink-500);
  font-size: 0.92rem;
}

.price-wrap {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  border: 2px solid var(--brand-500);
  box-shadow: 0 20px 34px rgba(31, 141, 77, 0.14);
}

.price-card h3 {
  margin: 0;
}

.price-row {
  display: flex;
  align-items: end;
  gap: 7px;
}

.price-row strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.price-list {
  padding-left: 18px;
  margin: 0;
  color: var(--ink-700);
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
background: linear-gradient(145deg, rgba(34, 58, 87, 0.95), rgba(24, 44, 67, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  color: var(--ink-900);
}

.faq-item:nth-child(3n + 1) {
  border-color: rgba(82, 247, 160, 0.64);
}

.faq-item:nth-child(3n + 2) {
  border-color: rgba(255, 216, 74, 0.64);
}

.faq-item:nth-child(3n + 3) {
  border-color: rgba(255, 90, 111, 0.64);
}

.faq-q {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink-900);
  font-weight: 600;
  padding: 17px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq-q span:last-child {
  font-size: 1.2rem;
  color: var(--ink-500);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  color: #d8e7fb;
}

.faq-a p {
  margin: 0;
  padding: 0 18px 16px;
}

.cta {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.38), transparent 42%),
        radial-gradient(circle at 84% 18%, rgba(80, 208, 255, 0.5), transparent 46%),
        linear-gradient(145deg, #2f7c5b, #214166);
  border-radius: 34px;
  color: #f1ffea;
  padding: clamp(24px, 4vw, 48px);
transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 44px rgba(8, 24, 32, 0.32);
}

.cta h2 {
  margin: 0;
  color: inherit;
}

.cta p {
  color: #d2efc9;
  margin: 12px 0 20px;
}

.site-footer {
  margin-top: 60px;
  border-top: 1px solid rgba(120, 175, 238, 0.28);
  padding: 26px 0 46px;
  color: var(--ink-700);
}

.footer-links a {
  color: #d8e5f7;
}

.footer-links a:hover {
  color: #94ffd2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 18px;
}

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

.legal-page {
  padding: 44px 0 70px;
}

.legal-card {
background: linear-gradient(145deg, rgba(34, 58, 87, 0.95), rgba(24, 44, 67, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 4vw, 44px);
  color: var(--ink-900);
}

.legal-card {
  box-shadow: inset 0 1px 0 rgba(152, 203, 255, 0.1), 0 0 0 1px rgba(82, 247, 160, 0.16);
}

.legal-card p,
.legal-card li {
  color: #d7e6fb;
}

.legal-card a,
.faq-a a {
  color: #92c9ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-card a:hover,
.faq-a a:hover {
  color: #9dffd6;
}

.legal-card h1 {
  margin: 0 0 10px;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.1;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
}

.legal-note {
  padding: 12px;
  border-radius: 10px;
  background: rgba(20, 53, 42, 0.95);
  border: 1px dashed #4cf8a3;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
transition: opacity 0.62s ease, transform 0.62s ease;
    transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes driftA {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(5vw, 4vh, 0);
    }
}

@keyframes driftB {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-4vw, -3vh, 0);
    }
}

@keyframes phoneFloat {
    0% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }

    50% {
        transform: translate3d(0, -8px, 0) rotate(0.25deg);
    }

    100% {
        transform: translate3d(0, 0, 0) rotate(0deg);
    }
}
@media (max-width: 1020px) {
  .hero-grid,
  .feature-grid,
  .steps,
.article-grid,
  .reviews,
  .price-wrap,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-points {
      justify-content: center;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
  }

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

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

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(9, 13, 19, 0.98);
    padding: 12px 4vw 16px;
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-actions .btn-ghost {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        transition-delay: 0ms !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
@media (max-width: 560px) {
  .metrics {
    grid-template-columns: 1fr;
  }

  .play-btn {
    width: 100%;
    justify-content: center;
  }
}
