:root {
  --bg: #f7faf6;
  --surface: #ffffff;
  --surface-soft: #eef6f2;
  --ink: #101414;
  --muted: #5a6660;
  --line: #dfe8e3;
  --dark: #06080a;
  --dark-2: #0d1214;
  --teal: #3da88e;
  --teal-2: #5bd6c0;
  --blue: #2d7ed0;
  --amber: #e5a663;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(14, 31, 28, 0.14);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(223, 232, 227, 0.84);
  background: rgba(247, 250, 246, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.02rem;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #34413b;
  font-size: 0.95rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(45, 126, 208, 0.28);
}

.button-dark {
  background: var(--ink);
  color: #ffffff;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.button-light {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  height: calc(100svh - 92px);
  max-height: 760px;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(6, 8, 10, 1) 0%, rgba(6, 8, 10, 0.98) 46%, rgba(6, 8, 10, 0.78) 66%, rgba(6, 8, 10, 0.38) 100%),
    url("hero-phone.png");
  background-color: var(--dark);
  background-repeat: no-repeat;
  background-size: 100% 100%, auto 92%;
  background-position: center, right 8% bottom -10px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 28%;
  background: linear-gradient(0deg, rgba(6, 8, 10, 0.5), rgba(6, 8, 10, 0));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: inherit;
  height: 100%;
  align-items: center;
  padding: 58px 0 74px;
}

.hero-copy {
  width: min(590px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-2);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.95;
  font-weight: 900;
}

.hero-lede {
  margin: 20px 0 0;
  max-width: 610px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.35rem;
  line-height: 1.38;
  font-weight: 700;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
}

.pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(119, 199, 219, 0.4);
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.92rem;
  font-weight: 800;
}

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

.hero-note {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.94rem;
  font-weight: 700;
}

.section {
  padding: 76px 0;
}

.section-dark {
  background: var(--dark);
  color: #ffffff;
}

.section-soft {
  background: var(--surface-soft);
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  max-width: 760px;
  font-size: 2.6rem;
  line-height: 1.05;
  font-weight: 900;
}

.section-copy {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.section-dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
  transform: translateY(-36px);
}

.trust-item {
  min-height: 108px;
  padding: 22px;
  background: var(--surface);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.04rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.44;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.feature-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--surface);
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #e8f5ef;
  color: #0a6758;
  font-weight: 900;
}

.feature-card h3 {
  margin: 20px 0 10px;
  font-size: 1.18rem;
  line-height: 1.24;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.screens-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.screen-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.phone-shot {
  overflow: hidden;
  border: 8px solid #171a1d;
  border-radius: 34px;
  background: #000000;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.36);
}

.phone-shot:nth-child(2) {
  margin-top: 36px;
}

.phone-shot:nth-child(3) {
  margin-top: 72px;
}

.phone-shot img {
  width: 100%;
}

.split-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 42px;
}

.wide-visual {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: inset 0 0 0 6px rgba(255, 255, 255, 0.22);
}

.form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 28px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: #293631;
  font-size: 0.86rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fbfdfc;
  color: var(--ink);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.hidden-field {
  display: none;
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.page-hero {
  padding: 72px 0 50px;
  background: var(--dark);
  color: #ffffff;
}

.page-hero h1 {
  font-size: 3.1rem;
  line-height: 1.04;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  line-height: 1.6;
}

.content {
  padding: 56px 0 82px;
}

.content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.prose {
  max-width: 800px;
}

.prose h2 {
  margin: 34px 0 10px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 24px 0 8px;
  font-size: 1.12rem;
}

.prose p,
.prose li {
  color: var(--muted);
  line-height: 1.68;
}

.prose ul {
  padding-left: 20px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 24px;
}

.contact-box h2 {
  margin-top: 0;
}

.contact-box a {
  color: #0d7564;
  font-weight: 900;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
  padding: 34px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 5px;
}

.footer-bottom {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .nav-links {
    display: none;
  }

  h1 {
    font-size: 3.2rem;
  }

  .hero-lede {
    font-size: 1.12rem;
  }

  .trust-strip,
  .feature-grid,
  .screens-layout,
  .split-visual,
  .contact-layout,
  .content-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    transform: none;
    margin-top: 0;
  }

  .screen-stack {
    grid-template-columns: repeat(3, minmax(130px, 1fr));
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .phone-shot {
    min-width: 130px;
  }

  .side-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    min-height: 64px;
  }

  .nav-actions .button-light {
    display: none;
  }

  .hero {
    min-height: 470px;
    height: calc(100svh - 86px);
    background-size: 100% 100%, auto 84%;
    background-position: center, 92% bottom;
  }

  .hero-inner {
    align-items: flex-end;
    padding: 42px 0 46px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.55rem;
  }

  .section {
    padding: 54px 0;
  }

  .section-title {
    font-size: 2.05rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .pill-row {
    gap: 8px;
  }

  .pill {
    min-height: 34px;
    font-size: 0.86rem;
  }

  .trust-item,
  .feature-card,
  .form-panel,
  .contact-box {
    padding: 20px;
  }

  .page-hero {
    padding: 54px 0 42px;
  }
}
