:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #eef3f8;
  --surface-blue: #e6f2ff;
  --surface-green: #e8f6f0;
  --surface-amber: #fff3df;
  --ink: #111827;
  --muted: #56616f;
  --quiet: #7b8491;
  --line: #d7dde5;
  --line-strong: #c5cdd8;
  --blue: #0a84ff;
  --blue-dim: #0068d6;
  --green: #12805c;
  --red: #d92d20;
  --steel: #202832;
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.12);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.08), rgba(10, 132, 255, 0) 420px),
    repeating-linear-gradient(90deg, rgba(17, 24, 39, 0.035) 0 1px, transparent 1px 112px),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.74), transparent 34%),
    linear-gradient(250deg, rgba(18, 128, 92, 0.08), transparent 36%);
  opacity: 0.72;
}

body.legal {
  background:
    linear-gradient(180deg, rgba(10, 132, 255, 0.08), rgba(10, 132, 255, 0) 360px),
    var(--bg);
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

.shell {
  position: relative;
  overflow: hidden;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(215, 221, 229, 0.8);
  background: rgba(247, 248, 250, 0.82);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(10, 132, 255, 0.2);
  box-shadow: 0 14px 28px rgba(10, 132, 255, 0.14);
}

.brand-wordmark {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-wordmark strong {
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  white-space: nowrap;
}

.brand-wordmark strong span {
  color: var(--blue);
}

.brand-wordmark small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.back:hover,
.footer-links a:hover,
.inline-link:hover {
  color: var(--blue);
}

.hero {
  min-height: min(760px, calc(100svh - 98px));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: center;
  padding: clamp(40px, 6vw, 72px) 0 28px;
}

.hero-copy {
  max-width: 630px;
  padding-bottom: 12px;
}

.eyebrow,
.section-kicker,
.stat span,
.screen-kicker,
.meta,
.pill {
  text-transform: uppercase;
  letter-spacing: 0;
}

.eyebrow,
.section-kicker {
  color: var(--blue-dim);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(50px, 8vw, 96px);
  line-height: 0.96;
  font-weight: 900;
  max-width: 780px;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-copy p,
.section-lede,
.cta p,
.lede {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.58;
}

.hero-copy p {
  margin-top: 24px;
  max-width: 590px;
}

.hero-actions,
.action-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: var(--steel);
  color: #ffffff;
  font-weight: 850;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.16);
  transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.button.alt {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.hero-note {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
  color: var(--quiet);
  font-size: 14px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(18, 128, 92, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 9% 0 4%;
  z-index: -1;
  border: 1px solid rgba(10, 132, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), transparent 48%),
    linear-gradient(315deg, rgba(10, 132, 255, 0.13), rgba(18, 128, 92, 0.08));
  transform: skewY(-7deg);
  opacity: 0.94;
}

.phone-cluster {
  position: relative;
  width: min(100%, 640px);
  height: 560px;
}

.phone {
  position: absolute;
  width: 236px;
  min-height: 480px;
  padding: 12px;
  border-radius: 34px;
  background: linear-gradient(145deg, #ffffff, #b5bdc8 45%, #202832 78%);
  box-shadow: var(--shadow);
}

.phone.primary {
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 3;
  width: 264px;
  min-height: 520px;
}

.phone.left {
  left: 0;
  top: 94px;
  transform: rotate(-7deg);
  z-index: 2;
}

.phone.right {
  right: 2px;
  top: 110px;
  transform: rotate(6deg);
  z-index: 1;
}

.screen {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  border-radius: 24px;
  background: var(--bg);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.phone.primary .screen {
  min-height: 496px;
}

.screen img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.proof {
  padding: 12px 0 clamp(56px, 8vw, 88px);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.stat {
  min-height: 112px;
  padding: 22px;
  display: grid;
  gap: 8px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.05;
}

.stat span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
}

.section {
  padding: clamp(64px, 9vw, 104px) 0;
  border-top: 1px solid rgba(215, 221, 229, 0.78);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.section-lede {
  margin-top: 20px;
  max-width: 600px;
}

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

.feature,
.plan-panel,
.shot-card,
.support-card,
.panel,
.faq article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.feature {
  min-height: 210px;
  padding: 22px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: var(--surface-blue);
  color: var(--blue);
}

.feature:nth-child(2n) .feature-icon {
  background: var(--surface-green);
  color: var(--green);
}

.feature:nth-child(3n) .feature-icon {
  background: var(--surface-amber);
  color: #946200;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
}

.feature p,
.plan-panel p,
.shot-caption p,
.support-card p,
.panel p,
.faq p,
.details,
.steps {
  color: var(--muted);
  line-height: 1.62;
}

.feature p {
  margin-top: 10px;
  font-size: 15px;
}

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

.plan-panel {
  padding: clamp(24px, 4vw, 32px);
  min-height: 390px;
}

.plan-panel.featured {
  background: var(--steel);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
}

.plan-panel.featured .section-kicker,
.plan-panel.featured p,
.plan-panel.featured .plan-list {
  color: rgba(255, 255, 255, 0.74);
}

.plan-list {
  margin: 22px 0 0;
  padding-left: 20px;
  line-height: 1.65;
}

.plan-list li {
  margin-bottom: 10px;
}

.showcase {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(238, 243, 248, 0.78)),
    transparent;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.shot-card {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  padding: 24px;
}

.shot-card .phone {
  position: relative;
  left: auto;
  right: auto;
  top: auto;
  transform: none;
  width: min(100%, 242px);
  min-height: 492px;
  margin: 0 auto;
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.12);
}

.shot-caption {
  margin-top: 22px;
}

.shot-caption p {
  margin-top: 8px;
  font-size: 15px;
}

.cta {
  padding: clamp(68px, 9vw, 112px) 0;
  border-top: 1px solid var(--line);
  background: var(--steel);
  color: #ffffff;
}

.cta .section-kicker,
.cta p {
  color: rgba(255, 255, 255, 0.72);
}

.cta h2 {
  max-width: 780px;
}

.cta p {
  max-width: 650px;
  margin-top: 18px;
}

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

.cta .button.alt {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.site-footer {
  border-top: 1px solid var(--line);
  color: var(--quiet);
  padding: 28px 0;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--quiet);
  font-weight: 700;
}

.legal .container {
  width: min(920px, calc(100% - 40px));
}

.legal-main {
  padding: clamp(52px, 8vw, 94px) 0;
}

.legal h1 {
  font-size: clamp(42px, 7vw, 74px);
  max-width: 820px;
}

.lede {
  max-width: 730px;
  margin: 22px 0 38px;
}

.panel,
.support-card,
.faq article {
  padding: clamp(22px, 4vw, 34px);
  margin-bottom: 18px;
}

.panel h2,
.support-card h2,
.faq h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
}

.panel h3,
.faq h3 {
  margin: 22px 0 8px;
  font-size: 19px;
}

.panel p + p {
  margin-top: 14px;
}

.panel .button {
  margin: 20px 0 16px;
}

.details,
.steps {
  margin: 16px 0 0;
  padding-left: 22px;
}

.details li,
.steps li {
  margin-bottom: 8px;
}

.inline-link {
  color: var(--blue-dim);
  font-weight: 800;
}

.email {
  display: inline-flex;
  margin: 18px 0 16px;
  color: var(--blue-dim);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  word-break: break-word;
}

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

.faq {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.faq article {
  margin-bottom: 0;
}

.back {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .hero,
  .section-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

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

  .hero-visual {
    min-height: 540px;
  }

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

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

  .stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .shot-card {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1fr);
    align-items: center;
    gap: 22px;
  }

  .shot-caption {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .container,
  .legal .container {
    width: min(100% - 32px, var(--max));
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: clamp(44px, 16vw, 66px);
  }

  .hero-actions,
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 470px;
  }

  .phone-cluster {
    width: min(100%, 360px);
    height: 470px;
  }

  .phone {
    width: 190px;
    min-height: 396px;
    padding: 10px;
    border-radius: 30px;
  }

  .phone.primary {
    width: 215px;
    min-height: 430px;
  }

  .phone.primary .screen {
    min-height: 410px;
  }

  .phone.left {
    left: -12px;
    top: 68px;
  }

  .phone.right {
    right: -12px;
    top: 80px;
  }

  .stat-row,
  .feature-grid,
  .plan-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .stat,
  .stat:nth-child(2),
  .stat:nth-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .shot-card {
    grid-template-columns: 1fr;
  }

  .shot-card .phone {
    min-height: 470px;
  }

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

@media (max-width: 460px) {
  .brand-wordmark small {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
  }

  .phone-cluster {
    width: min(100%, 300px);
    height: 430px;
  }

  .phone.left,
  .phone.right {
    display: none;
  }

  .phone.primary {
    width: min(100%, 230px);
  }
}
