:root {
  --canvas: #0e1319;
  --surface: #161d26;
  --surface-2: #1b2430;
  --ink: #f6f2f0;
  --muted: #98a5b4;
  --line: rgba(246, 242, 240, 0.12);
  --navy: #202a36;
  --coral: #f75d43;
  --coral-soft: rgba(247, 93, 67, 0.14);
  --cream: #fbf3f1;
  --mint: #5fbf9c;
  --sky: #6aa6d8;
  --gold: #e8b84b;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--coral);
  text-underline-offset: 0.18em;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--navy);
  font-weight: 800;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(247, 93, 67, 0.55);
  outline-offset: 2px;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(14, 19, 25, 0.86);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.brand-link img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--coral);
}

.nav-links .nav-highlight {
  padding: 8px 13px;
  border: 1px solid var(--coral);
  border-radius: var(--radius);
  background: var(--coral);
  color: var(--navy);
}

.nav-links .nav-highlight:hover {
  background: #ff7059;
  border-color: #ff7059;
  color: var(--navy);
}

/* Buttons */

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button {
  border: 1px solid var(--coral);
  background: var(--coral);
  color: var(--navy);
}

.button:hover {
  background: #ff7059;
  border-color: #ff7059;
}

.button-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(246, 242, 240, 0.3);
}

.button.is-soon {
  border-color: rgba(247, 93, 67, 0.42);
  background: var(--coral-soft);
  color: var(--coral);
  cursor: default;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% -10%, rgba(247, 93, 67, 0.2), transparent 58%),
    linear-gradient(180deg, #131b24 0%, var(--canvas) 100%);
}

.hero-inner {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(64px, 10vh, 116px) 0;
}

.hero-copy {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-logo {
  width: 116px;
  height: 116px;
  margin: 0 auto 26px;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  max-width: 760px;
  margin-inline: auto;
  font-size: clamp(3.2rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

h3 {
  font-size: 1.12rem;
}

.tagline {
  margin: 14px 0 0;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.lede {
  max-width: 660px;
  margin: 22px auto 0;
  color: #cfd7e0;
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Sections */

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section.slim {
  padding: 48px 0;
}

.section-heading {
  max-width: 730px;
}

.section-heading p {
  max-width: 660px;
  color: var(--muted);
  font-size: 1.05rem;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-grid,
.pricing-grid,
.contact-grid,
.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.feature-card,
.price-card,
.contact-card,
.step-grid > div {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card {
  min-height: 196px;
}

.feature-card .accent {
  width: 38px;
  height: 5px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--coral);
}

.feature-card:nth-child(2) .accent {
  background: var(--sky);
}

.feature-card:nth-child(3) .accent {
  background: var(--mint);
}

.feature-card:nth-child(4) .accent {
  background: var(--gold);
}

.feature-card:nth-child(5) .accent {
  background: var(--cream);
}

.feature-card p,
.price-card p,
.contact-card p,
.step-grid p {
  color: var(--muted);
}

.feature-card ul,
.price-card ul {
  margin: 14px 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.step-grid > div span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

/* Bands */

.band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #121922;
}

.band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.band-inner p {
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.link-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}

.link-table a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.link-table a:last-child {
  border-bottom: 0;
}

.link-table a:hover {
  background: var(--coral-soft);
}

.link-table span {
  color: var(--muted);
  font-weight: 800;
}

.link-table strong {
  white-space: nowrap;
}

/* Get the app */

.get-card {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid rgba(247, 93, 67, 0.32);
  border-radius: calc(var(--radius) * 1.6);
  background: linear-gradient(180deg, #1a232e 0%, var(--surface) 100%);
  box-shadow: var(--shadow);
  text-align: center;
}

.get-card .hero-actions {
  margin-top: 26px;
}

.get-card p {
  color: var(--muted);
}

/* Pricing */

.price-card.highlight {
  border-color: rgba(247, 93, 67, 0.45);
  box-shadow: var(--shadow);
}

.badge {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--coral-soft);
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 900;
}

.price {
  margin: 12px 0 4px;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

/* Documents */

.page-title {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 64px 0 30px;
}

.page-title p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.document {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 76px;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.document h2 {
  margin-top: 36px;
  font-size: 1.3rem;
}

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

.document h3 {
  margin-top: 26px;
  font-size: 1rem;
}

.document p,
.document li {
  color: #c6cfda;
}

.document p {
  max-width: 74ch;
}

.document ul {
  padding-left: 1.2rem;
}

.document strong {
  color: var(--ink);
}

.table-wrap {
  margin-top: 16px;
  overflow-x: auto;
}

.document table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.document th,
.document td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--line);
  color: #c6cfda;
  text-align: left;
  vertical-align: top;
}

.document th {
  color: var(--ink);
  font-weight: 800;
  white-space: nowrap;
}

.document tr:last-child td {
  border-bottom: 0;
}

.callout {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(247, 93, 67, 0.3);
  border-radius: var(--radius);
  background: var(--coral-soft);
}

.callout p {
  margin: 0;
  color: var(--ink);
}

.meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.78rem !important;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--line);
  background: #0a0e13;
  color: rgba(246, 242, 240, 0.8);
}

.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner a {
  color: rgba(246, 242, 240, 0.88);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.92rem;
}

.attribution {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 34px;
  color: rgba(152, 165, 180, 0.9);
  font-size: 0.78rem;
  line-height: 1.6;
}

.attribution a {
  color: rgba(152, 165, 180, 0.9);
}

/* Responsive */

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .split-section,
  .band-inner {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .contact-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .nav {
    width: min(100% - 24px, 1120px);
    min-height: 0;
    padding: 12px 0;
  }

  .brand-link img {
    width: 34px;
    height: 34px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.84rem;
  }

  .nav-links .nav-highlight {
    padding: 6px 10px;
  }

  .hero-inner {
    width: min(100% - 24px, 1120px);
    padding-block: 46px 58px;
  }

  .hero-logo {
    width: 92px;
    height: 92px;
    margin-bottom: 22px;
  }

  h1 {
    font-size: clamp(2.7rem, 14vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.75rem, 10vw, 2.2rem);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .section,
  .page-title,
  .attribution {
    width: min(100% - 24px, 1120px);
  }

  .section {
    padding: 56px 0;
  }

  .section.slim {
    padding: 32px 0;
  }

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

  .feature-card,
  .price-card,
  .contact-card,
  .step-grid > div {
    padding: 20px;
  }

  .link-table a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
  }

  .page-title {
    padding: 42px 0 22px;
  }

  .document {
    width: min(100% - 24px, 900px);
    margin-bottom: 48px;
    padding: 24px 18px;
  }

  .footer-inner {
    width: min(100% - 24px, 1120px);
  }
}

@media (max-width: 360px) {
  .nav-links {
    gap: 14px;
  }

  h1 {
    font-size: 2.45rem;
  }
}
