:root {
  color-scheme: dark;
  --page: #181f2a;
  --surface: #232b3b;
  --surface-raised: #2a3441;
  --text: #ffffff;
  --muted: #84929f;
  --line: rgba(167, 168, 169, 0.22);
  --green: #1a6b40;
  --green-bright: #3ecf7a;
  --green-hover: #1f7a4a;
  --blue: #2677c2;
  --blue-dark: #133b61;
  --max: 1120px;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--page);
}
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 8%, #1d4d44 0, transparent 25rem), var(--page);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
}
a {
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
button,
select {
  font: inherit;
}
.skip-link {
  position: fixed;
  z-index: 10;
  left: 1rem;
  top: -5rem;
  padding: 0.75rem 1rem;
  background: white;
  color: #071019;
  border-radius: 0.5rem;
}
.skip-link:focus {
  top: 1rem;
}
.shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  z-index: 4;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 19, 32, 0.88);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 4.65rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand img {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 0.55rem;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}
.site-nav a,
.language-switch summary {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--muted);
  text-decoration: none;
  border-radius: 0.5rem;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
  cursor: pointer;
  list-style: none;
}
.site-nav a:hover,
.site-nav a:focus-visible,
.language-switch summary:hover,
.language-switch summary:focus-visible {
  background: var(--surface-raised);
  color: white;
}
.language-switch {
  position: relative;
}
.language-switch summary::-webkit-details-marker {
  display: none;
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  width: 9.5rem;
  padding: 0.35rem;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: #111d2c;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.3);
}
.language-menu a {
  display: block;
}
.button {
  display: inline-flex;
  min-height: 2.9rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 0.7rem;
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 0.45rem 1.1rem rgba(26, 107, 64, 0.32);
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
  text-decoration: none;
}
.button:hover {
  background: var(--green-hover);
  color: #ffffff;
  transform: translateY(-1px);
}
.site-nav a.button {
  color: #ffffff;
  background: var(--green);
}
.site-nav a.button:hover,
.site-nav a.button:focus-visible {
  color: #ffffff;
  background: var(--green-hover);
}
.button--quiet {
  color: white;
  background: transparent;
  border-color: var(--line);
  box-shadow: none;
}
.button--quiet:hover {
  background: var(--surface-raised);
}
.nav-cta {
  display: none;
}
.hero {
  padding: clamp(3.5rem, 8vw, 7rem) 0 3rem;
  overflow-x: clip;
}
.hero-grid {
  display: grid;
  align-items: center;
  gap: 2.5rem;
}
.section--defer {
  content-visibility: visible;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  color: #93efb5;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 0.35rem rgba(62, 207, 122, 0.18);
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.045em;
}
h1 {
  max-width: 12ch;
  font-size: clamp(2.65rem, 8vw, 5.35rem);
}
h2 {
  max-width: 18ch;
  font-size: clamp(2rem, 4.5vw, 3.15rem);
}
h3 {
  font-size: 1.18rem;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 39rem;
  margin: 1.35rem 0 1.7rem;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.19rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.trust-line {
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 0.91rem;
}
.trust-line strong {
  color: white;
}
.feature-graphic-band {
  margin: 0;
  padding: 0;
  display: grid;
  place-items: center;
  background: #061b18;
  line-height: 0;
  overflow: hidden;
}
.feature-graphic {
  display: block;
  width: min(100%, 1792px);
  height: auto;
  aspect-ratio: 1792 / 878;
  object-fit: contain;
  object-position: center;
}
.hero-showcase {
  display: none;
}
.phone-shot {
  width: min(100%, 19rem);
  margin-inline: auto;
  overflow: hidden;
  border: 0.44rem solid #9baaa5;
  border-radius: 2.15rem;
  background: #1c2737;
  box-shadow: 0 1.8rem 4rem rgba(0, 0, 0, 0.45);
}
.phone-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1080 / 1920;
  object-fit: contain;
}
.preset-block {
  margin-top: 2.25rem;
}
.preset-intro {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}
.preset-intro h2,
.section-intro:has(+ .faq-grid) h2,
.faq h3 {
  margin: 0;
  max-width: none;
  color: #ffffff;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.35;
}
.preset-intro p,
.preset-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 42rem;
}
.preset-note {
  margin-top: 1rem;
}
.preset-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}
.preset-card {
  display: block;
  padding: 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(18, 29, 45, 0.82);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, background-color 160ms ease;
}
a.preset-card:hover,
a.preset-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(28, 42, 62, 0.92);
  outline: none;
}
.preset-card b {
  display: block;
  color: white;
}
.preset-card span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
}
.section {
  padding: clamp(3.6rem, 8vw, 6.5rem) 0;
}
.section--surface {
  background: rgba(18, 29, 45, 0.68);
  border-block: 1px solid var(--line);
}
.section-intro {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.section-intro p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}
.feature-grid,
.use-case-grid,
.faq-grid {
  display: grid;
  gap: 0.9rem;
}
.feature-grid,
.use-case-grid {
  gap: 1.5rem;
}
.feature,
.use-case,
.faq {
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: linear-gradient(
    145deg,
    rgba(31, 45, 64, 0.9),
    rgba(18, 29, 45, 0.93)
  );
}
.feature {
  padding: 1.55rem 1.45rem 1.65rem;
}
.feature h3 {
  color: #ffffff;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.25;
}
.feature-icon {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 0.75rem;
  background: rgba(76, 158, 255, 0.15);
  color: #8cc2ff;
  font-size: 1.3rem;
}
.feature p,
.use-case p,
.faq p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}
.screenshot-layout {
  display: grid;
  gap: 1.25rem;
  align-items: center;
}
.shot-copy {
  max-width: 34rem;
}
.check-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.5rem 0;
  list-style: none;
}
.check-list li {
  padding-left: 1.8rem;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-bright);
  font-weight: 900;
}
.screenshot-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 14rem));
  justify-content: center;
  align-items: end;
  gap: 0.85rem;
}
.screenshot-pair img {
  width: auto;
  max-width: 100%;
  max-height: 31rem;
  margin-inline: auto;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1.2rem;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
}
.marketing-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(11rem, 14rem);
  align-items: start;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.25rem 0.1rem 0.85rem;
  scroll-snap-type: x mandatory;
}
.marketing-gallery img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: none;
  margin: 0;
  aspect-ratio: 1080 / 1920;
  object-fit: contain;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.2);
  scroll-snap-align: start;
  background: #0a2a22;
}
.use-case-grid {
  align-items: stretch;
}
.use-case {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.55rem 1.45rem 1.65rem;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.use-case:hover {
  border-color: var(--green);
  transform: translateY(-3px);
}
.use-case strong {
  color: #ffffff;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.25;
  text-transform: none;
}
.use-case h3 {
  margin-top: 0.45rem;
  color: #ffffff;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.25;
}
.use-case p {
  flex: 1;
}
.use-case span {
  margin-top: auto;
  padding-top: 1.1rem;
  color: #95c9ff;
  font-weight: 700;
}
.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: steps;
}
.step {
  position: relative;
  padding: 1.55rem 1.45rem 1.65rem 4rem;
  border-left: 1px solid var(--line);
}
.step h3 {
  color: #ffffff;
  font-family: Roboto, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.25;
}
.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 1.05rem;
  top: 1.15rem;
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: var(--green);
  font-weight: 700;
}
.step p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}
.faq-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 19rem), 1fr));
}
.faq {
  padding: 1.25rem;
}
.cta-panel {
  padding: clamp(1.8rem, 5vw, 3.5rem);
  border: 1px solid rgba(85, 216, 135, 0.35);
  border-radius: 1.4rem;
  background: linear-gradient(120deg, #153b31, #14263b);
  text-align: center;
}
.cta-panel h2 {
  margin-inline: auto;
}
.cta-panel p {
  max-width: 38rem;
  margin: 1rem auto 1.5rem;
  color: #d0dfda;
}
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}
.footer-inner {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--muted);
}
.page-hero {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 3rem;
}
.page-hero p {
  max-width: 45rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.routine-example {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
  max-width: 39rem;
}
.routine-example div {
  padding: 0.85rem 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  background: var(--surface);
  text-align: center;
}
.routine-example b {
  display: block;
  color: #9cefba;
  font-size: 1.13rem;
}
.routine-example span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}
.privacy {
  max-width: 48rem;
  padding: 4rem 0 6rem;
}
.privacy h1 {
  max-width: none;
}
.privacy h2 {
  margin-top: 2.8rem;
  font-size: 1.5rem;
}
.privacy p,
.privacy li {
  color: var(--muted);
}
.privacy a {
  color: #94c8ff;
}
.not-found {
  min-height: 65vh;
  display: grid;
  place-items: center;
  text-align: center;
}
.not-found p {
  color: var(--muted);
}
:focus-visible {
  outline: 3px solid #91c6ff;
  outline-offset: 3px;
}
@media (min-width: 720px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.85fr);
    align-items: start;
  }
  .hero-showcase {
    display: grid;
    place-items: start center;
    align-self: start;
  }
  .preset-strip {
    grid-template-columns: repeat(5, 1fr);
  }
  .section-intro {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .use-case-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .screenshot-layout {
    grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.9fr);
    gap: 4rem;
  }
  .screenshot-layout--reverse > :first-child {
    order: 2;
  }
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .marketing-gallery {
    grid-auto-flow: initial;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
  }
  .marketing-gallery img {
    aspect-ratio: 1080 / 1920;
    object-fit: contain;
    max-height: none;
  }
  .step {
    min-height: 10rem;
  }
  .nav-cta {
    display: inline-flex;
    min-height: 2.75rem;
    padding: 0.52rem 0.7rem;
    font-size: 0.88rem;
  }
}
@media (max-width: 719px) {
  .site-nav > a:not(.nav-cta) {
    display: none;
  }
  .section {
    padding: clamp(2.4rem, 7vw, 3.5rem) 0;
  }
  .cta-panel {
    padding: 1.5rem 1.25rem 1.65rem;
  }
  .faq {
    padding: 1.1rem 1.15rem;
  }
  .marketing-gallery {
    grid-auto-columns: minmax(10.5rem, 72vw);
    gap: 0.75rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
