:root {
  --navy: #0B1220;
  --blue: #2563FF;
  --purple: #7C3AED;
  --cyan: #06B6D4;
  --green: #7AB55C;
  --white: #FFFFFF;
  --muted: #5B6472;
  --tint: #F5F7FB;
  --border: #E3E7F0;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--navy);
  line-height: 1.55;
}

a {
  color: var(--blue);
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header.site {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.wordmark img {
  height: 36px;
  width: auto;
  display: block;
}

nav.site-nav {
  display: flex;
  gap: 24px;
}

nav.site-nav a {
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

nav.site-nav a:hover {
  color: var(--blue);
}

/* Hero */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}

.hero img.hero-logo {
  height: 88px;
  width: auto;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin: 0 0 20px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.hero p.lede {
  font-size: 19px;
  color: var(--muted);
  max-width: 640px;
  margin: 0 auto 28px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1c4fd6;
}

.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--navy);
}

/* Sections */
section {
  padding: 56px 0;
}

section.alt {
  background: var(--tint);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

h2.section-title {
  font-size: 30px;
  text-align: center;
  margin: 0 0 12px;
}

p.section-sub {
  text-align: center;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 16px;
}

/* The gap */
.gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .gap-grid {
    grid-template-columns: 1fr;
  }
}

.gap-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
}

.gap-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.gap-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 560px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 24px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--border);
}

.feature .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-bottom: 14px;
}

.feature .icon.c-blue { background: rgba(37, 99, 255, 0.12); }
.feature .icon.c-purple { background: rgba(124, 58, 237, 0.12); }
.feature .icon.c-cyan { background: rgba(6, 182, 212, 0.14); }
.feature .icon.c-green { background: rgba(122, 181, 92, 0.16); }

.feature h3 {
  font-size: 16px;
  margin: 0 0 8px;
}

.feature p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.badge-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 8px;
}

/* Pricing */
.price-card {
  max-width: 420px;
  margin: 0 auto;
  border: 2px solid var(--blue);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  background: var(--white);
}

.price-card .amount {
  font-size: 48px;
  font-weight: 700;
  margin: 8px 0 4px;
}

.price-card .amount span {
  font-size: 18px;
  font-weight: 500;
  color: var(--muted);
}

.price-card .trial {
  color: var(--green);
  font-weight: 600;
  margin-bottom: 24px;
}

.price-card ul {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.price-card li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.price-card li:last-child {
  border-bottom: none;
}

.price-card li::before {
  content: "✓ ";
  color: var(--green);
  font-weight: 700;
}

/* Positioning quote */
.positioning {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
}

.positioning strong {
  font-style: normal;
  background: linear-gradient(90deg, var(--blue), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Footer */
footer.site {
  background: var(--navy);
  padding: 40px 0;
}

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

footer.site nav {
  display: flex;
  gap: 20px;
}

footer.site a {
  color: #B8C0D8;
  text-decoration: none;
  font-size: 14px;
}

footer.site a:hover {
  color: var(--white);
}

footer.site .copy {
  color: #8891AC;
  font-size: 14px;
}

/* Legal pages */
.legal {
  padding: 56px 0 80px;
}

.legal .wrap {
  max-width: 760px;
}

.legal h1 {
  font-size: 32px;
  margin-bottom: 4px;
}

.legal .effective {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--navy);
}

.legal p, .legal li {
  font-size: 15.5px;
  color: #2A2E36;
}

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

.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.legal th, .legal td {
  text-align: left;
  padding: 8px 12px;
  border: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}

.legal th {
  background: var(--tint);
}
