:root {
  color-scheme: light;
  --ink: #101320;
  --muted: #687084;
  --soft: #8790a5;
  --paper: #f7fafc;
  --card: rgba(255, 255, 255, 0.82);
  --card-solid: #ffffff;
  --line: rgba(16, 24, 40, 0.1);
  --green: #10b981;
  --green-dark: #047857;
  --mint: #dffcf0;
  --blue: #2563eb;
  --cyan: #38bdf8;
  --coral: #fb7185;
  --amber: #f59e0b;
  --navy: #101320;
  --navy-2: #171a2b;
  --shadow-sm: 0 10px 26px rgba(16, 24, 40, 0.08);
  --shadow: 0 24px 70px rgba(16, 24, 40, 0.13);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(16, 185, 129, 0.16), transparent 26rem),
    radial-gradient(circle at 88% 4%, rgba(56, 189, 248, 0.14), transparent 24rem),
    linear-gradient(180deg, #fbfdff 0%, var(--paper) 48%, #f3f7fb 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background-image:
    linear-gradient(rgba(16, 24, 40, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 24, 40, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}

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

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

.ambient {
  position: fixed;
  z-index: -2;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(24px);
  opacity: 0.42;
  pointer-events: none;
  transform: translate3d(var(--ambient-x, 0), var(--ambient-y, 0), 0);
  transition: transform 0.18s ease-out;
}

.ambient-one {
  left: -120px;
  top: 140px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.55), transparent 64%);
}

.ambient-two {
  right: -150px;
  top: 520px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32), transparent 64%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 252, 0.76);
  border-bottom: 1px solid rgba(223, 229, 238, 0.72);
  backdrop-filter: blur(20px);
  transition:
    padding 0.22s ease,
    box-shadow 0.22s ease,
    background 0.22s ease;
}

.site-header.is-scrolled {
  padding-block: 10px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.08);
}

.site-header.compact {
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.22);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-weight: 760;
  font-size: 0.9rem;
}

nav a {
  padding: 9px 13px;
  border-radius: 999px;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

nav a:hover,
nav a.is-active {
  color: var(--green-dark);
  background: rgba(16, 185, 129, 0.1);
}

.nav-cta,
.primary-button,
.secondary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  font-weight: 900;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.nav-cta,
.primary-button {
  color: #06130f;
  background: linear-gradient(135deg, #1de49b, #12b981 54%, #41d5ff);
  box-shadow: 0 14px 30px rgba(16, 185, 129, 0.24);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.nav-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.13);
}

.button-ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transform: translate(-50%, -50%) scale(0);
  animation: ripple 0.62s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  min-height: calc(100vh - 69px);
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 76px) clamp(44px, 6vw, 70px);
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-lede {
  max-width: 650px;
  font-size: clamp(1.03rem, 1.55vw, 1.18rem);
}

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

.hero-proof {
  margin-top: 18px;
}

.hero-proof span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 820;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
  max-width: 760px;
}

.trust-strip div {
  padding: 16px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow-sm);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 5px;
  font-size: 0.94rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.42;
}

.phone-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}

.phone {
  position: relative;
  width: min(360px, 92vw);
  min-height: 650px;
  padding: 24px 20px 78px;
  border: 9px solid #111421;
  border-radius: 40px;
  background: #0d0f19;
  box-shadow: 0 36px 90px rgba(16, 24, 40, 0.26);
  color: white;
  overflow: hidden;
  transform:
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    translateY(var(--float-y, 0));
  transition:
    transform 0.16s ease-out,
    box-shadow 0.2s ease;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 16%, rgba(16, 185, 129, 0.24), transparent 36%),
    linear-gradient(25deg, transparent 45%, rgba(56, 189, 248, 0.16));
  pointer-events: none;
}

.phone > * {
  position: relative;
}

.phone-top {
  width: 96px;
  height: 25px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: #05060b;
}

.app-card,
.task-card,
.metric-grid > div {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #191b2c;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.goal-card {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), #191b2c 62%);
}

.mini-progress {
  height: 8px;
  margin: 12px 4px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
}

.mini-progress span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  animation: progressPulse 4.6s ease-in-out infinite;
}

@keyframes progressPulse {
  0%,
  100% {
    width: 34%;
  }
  50% {
    width: 78%;
  }
}

.goal-card small,
.task-card small,
.metric-grid small,
.mini-screens small {
  display: block;
  margin-bottom: 7px;
  color: #aab0c4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.goal-card strong,
.task-card strong,
.metric-grid strong {
  display: block;
  color: white;
  font-size: 1.02rem;
  line-height: 1.25;
}

.goal-card span {
  color: var(--green);
  font-weight: 1000;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 12px 0;
}

.metric-grid > div {
  padding: 16px;
  border-radius: 18px;
}

.task-card {
  margin-top: 10px;
  padding: 16px;
  border-radius: 20px;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease;
}

.task-card.is-focused {
  transform: translateX(4px);
  background: #20243a;
  border-color: rgba(16, 185, 129, 0.35);
}

.task-card p {
  margin: 8px 0 0;
  color: #aeb5c9;
  font-size: 0.88rem;
  line-height: 1.43;
}

.task-card.green {
  border-left: 4px solid var(--green);
}

.task-card.orange {
  border-left: 4px solid #f97316;
}

.task-card.blue {
  border-left: 4px solid var(--cyan);
}

.tabbar {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;
  padding: 17px 8px 23px;
  background: #171928;
  color: #7f8598;
  font-size: 0.78rem;
  font-weight: 900;
}

.section,
.split-section,
.showcase,
.results-strip,
.safety,
.legal-page,
.support-page {
  padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 76px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.feature-tabs {
  display: inline-flex;
  gap: 6px;
  margin: 0 0 20px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.feature-tab {
  min-height: 36px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
}

.feature-tab.is-active {
  color: #04251b;
  background: var(--green);
}

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

.feature-card,
.pricing-card,
.contact-card,
.support-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: 0 12px 34px rgba(16, 24, 40, 0.06);
  backdrop-filter: blur(14px);
}

.feature-card {
  min-height: 210px;
  transform:
    rotateX(var(--card-tilt-y, 0deg))
    rotateY(var(--card-tilt-x, 0deg))
    translateY(0);
  transform-style: preserve-3d;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.18s ease;
}

.feature-card:hover {
  box-shadow: 0 22px 52px rgba(16, 24, 40, 0.13);
}

.feature-card.is-filtered-out {
  opacity: 0.22;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--green-dark);
  font-weight: 1000;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 62px);
  align-items: center;
  background: rgba(255, 255, 255, 0.62);
  border-block: 1px solid rgba(16, 24, 40, 0.06);
}

.steps {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 23px 24px 23px 58px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  line-height: 1.55;
  box-shadow: var(--shadow-sm);
}

.steps li::before {
  content: counter(list-item);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 1000;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
}

.showcase {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 16px;
}

.showcase-panel {
  padding: clamp(28px, 5vw, 46px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 12%, rgba(16, 185, 129, 0.22), transparent 34%),
    #101320;
  box-shadow: var(--shadow);
}

.showcase-panel h2,
.showcase-panel p {
  color: white;
}

.showcase-panel p {
  color: #cdd3df;
}

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

.mini-screens > div {
  min-height: 230px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 0.18s ease,
    background 0.18s ease;
}

.mini-screens > div:hover {
  transform: translateY(-4px);
  background: #ffffff;
}

.mini-screens strong {
  display: block;
  font-size: 1.16rem;
}

.results-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-block: clamp(30px, 5vw, 52px);
}

.results-strip div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.results-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.results-strip span {
  color: var(--muted);
  font-weight: 780;
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.13), transparent 42%),
    rgba(255, 255, 255, 0.86);
}

.pricing-card p {
  max-width: 700px;
  margin-bottom: 0;
}

.fine-print {
  margin-top: 14px;
  font-size: 0.88rem;
}

.partner-section {
  background: transparent;
}

.contact-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(56, 189, 248, 0.2), transparent 32%),
    #101320;
}

.contact-card h3,
.contact-card p {
  color: white;
}

.contact-card p {
  color: #cdd3df;
}

.safety {
  background: #fff7ed;
  border-top: 1px solid #fed7aa;
  border-bottom: 1px solid #fed7aa;
}

.safety h2,
.safety p {
  max-width: 920px;
}

.safety h2 {
  color: #9a3412;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 76px);
  background: #101320;
  color: white;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  color: #b9bfce;
  font-size: 0.88rem;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #dfe5ee;
  font-weight: 800;
}

.legal-page,
.support-page {
  max-width: 980px;
  margin: 0 auto;
  background: transparent;
}

.legal-page h1,
.support-page h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.legal-page section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.updated {
  color: var(--muted);
}

.legal-page a,
.support-page a:not(.primary-button) {
  color: var(--green-dark);
  font-weight: 800;
}

.support-hero {
  padding: clamp(30px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .showcase,
  .pricing-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .trust-strip,
  .feature-grid,
  .mini-screens,
  .results-strip,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .phone {
    min-height: 620px;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero-actions .primary-button,
  .hero-actions .secondary-button,
  .pricing-card .primary-button,
  .contact-card .primary-button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.75rem, 9vw, 2.45rem);
  }

  .phone {
    width: 100%;
    min-height: 600px;
    border-width: 8px;
    border-radius: 34px;
  }

  .feature-tabs {
    width: 100%;
    overflow-x: auto;
  }
}
