:root {
  --ink: #12151c;
  --surface: #1b2029;
  --surface-2: #232a38;
  --surface-3: #2a3242;
  --paper: #f6f3ec;
  --paper-dim: #e8e4d8;
  --amber: #f5a623;
  --amber-dim: #4a3a1e;
  --green: #34c77b;
  --red: #f0563d;
  --slate: #8a93a6;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

.hero {
  min-height: 92vh;
  padding: 24px clamp(20px, 5vw, 72px) 72px;
  background: linear-gradient(135deg, #1b2029 0%, #12151c 58%, #0e1117 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1160px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.brand span {
  transform: translateY(-1px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--paper-dim);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.legal-links a:hover,
.footer a:hover {
  color: var(--amber);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(36px, 8vw, 96px);
  max-width: 1160px;
  margin: 76px auto 0;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(48px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--slate);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions,
.trust-row,
.legal-links,
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 34px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 750;
}

.primary-button {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(245, 166, 35, 0.18);
}

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

.trust-row {
  margin-top: 28px;
  color: var(--slate);
  font-size: 13px;
  font-weight: 650;
}

.trust-row span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.phone-stage {
  position: relative;
  max-width: 390px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
}

.phone-stage img,
.screenshot-card img {
  width: 100%;
  border-radius: 28px;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 84px clamp(20px, 5vw, 72px);
}

.strip {
  max-width: none;
  padding-block: 22px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  text-align: center;
}

.strip p {
  margin: 0;
  color: var(--paper-dim);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 30px;
}

.section h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.feature-card,
.step-card,
.pricing-card,
details,
.legal-card,
.dashboard-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-2);
}

.feature-card {
  padding: 24px;
}

.problem {
  max-width: none;
  background: var(--paper);
  color: var(--ink);
}

.problem .section-heading,
.problem-grid {
  max-width: 1160px;
  margin-inline: auto;
}

.problem .eyebrow {
  color: #a86400;
}

.problem h2 {
  color: var(--ink);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
}

.problem-grid p {
  margin: 0;
  color: #424854;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

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

.step-card {
  padding: 24px;
}

.step-card span {
  color: var(--green);
  font-family: var(--font-geist-mono), monospace;
  font-size: 13px;
  font-weight: 800;
}

.feature-card h3,
.step-card h3 {
  margin: 0 0 12px;
  color: var(--paper);
  font-size: 20px;
}

.feature-card p,
.step-card p,
.pricing-card p,
details p,
.legal-card p,
.legal-card li,
.dashboard-card p {
  color: var(--slate);
  line-height: 1.65;
}

.step-card h3 {
  margin-top: 16px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.screenshot-card {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
}

.pricing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 5vw, 42px);
}

.pricing-card h2 {
  font-size: clamp(54px, 8vw, 92px);
}

.pricing-card p {
  max-width: 560px;
  margin: 14px 0 0;
  font-size: 18px;
}

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

details {
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--paper);
  font-size: 18px;
  font-weight: 750;
}

.legal-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.legal-links a {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--paper-dim);
  font-weight: 700;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--slate);
}

.footer a {
  color: var(--paper-dim);
  font-weight: 700;
}

.footer .brand {
  color: var(--paper);
}

.legal-page,
.dashboard-page {
  min-height: 100vh;
  padding: 28px clamp(20px, 5vw, 72px) 80px;
  background: var(--ink);
}

.legal-shell,
.dashboard-shell {
  max-width: 920px;
  margin: 0 auto;
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
}

.back-link {
  color: var(--amber);
  font-weight: 750;
}

.legal-card,
.dashboard-card {
  padding: clamp(24px, 5vw, 48px);
}

.legal-card h1,
.dashboard-card h1 {
  margin: 0 0 16px;
  color: var(--paper);
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.legal-card h2 {
  margin: 34px 0 10px;
  color: var(--paper);
  font-size: 24px;
}

.legal-card ul {
  padding-left: 22px;
}

@media (max-width: 900px) {
  .hero-grid,
  .pricing-card,
  .legal-preview,
  .footer {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid,
  .step-grid,
  .problem-grid,
  .screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .phone-stage {
    max-width: 320px;
  }
}

@media (max-width: 640px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 13px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    margin-top: 54px;
  }

  .feature-grid,
  .step-grid,
  .problem-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card {
    max-width: 320px;
  }

}
