/* Gateway AI — Technical Minimalist design system
   Palette: Navy primary, Cyan accent, Paper background, Grid hairlines
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@400;500;600&family=Inter:wght@400;500;600&display=swap');

:root {
  --paper: #F7F7F5;
  --navy: #0A1F5C;
  --navy-deep: #061445;
  --cyan: #1CB0F6;
  --sky: #7DD3FC;
  --grid: #3A3A38;
  --coral: #FF8C69;
  --gold: #F4D35E;
  --hairline: rgba(58, 58, 56, 0.20);
  --hairline-soft: rgba(58, 58, 56, 0.10);

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', 'General Sans', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--grid);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Mosaic background */
.mosaic-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--paper);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='480' height='480' viewBox='0 0 480 480'><g fill='none' stroke='%233A3A38' stroke-width='0.5' stroke-opacity='0.18'><rect x='0' y='0' width='160' height='160'/><rect x='160' y='0' width='80' height='80'/><rect x='240' y='0' width='80' height='80'/><rect x='320' y='0' width='160' height='160'/><rect x='160' y='80' width='160' height='80'/><rect x='0' y='160' width='80' height='160'/><rect x='80' y='160' width='160' height='80'/><rect x='80' y='240' width='80' height='80'/><rect x='160' y='240' width='80' height='80'/><rect x='240' y='160' width='240' height='80'/><rect x='240' y='240' width='120' height='80'/><rect x='360' y='240' width='120' height='80'/><rect x='0' y='320' width='160' height='160'/><rect x='160' y='320' width='80' height='80'/><rect x='240' y='320' width='80' height='80'/><rect x='320' y='320' width='160' height='80'/><rect x='160' y='400' width='160' height='80'/><rect x='320' y='400' width='160' height='80'/></g></svg>");
  background-size: 480px 480px;
  background-repeat: repeat;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
}
.nav-logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo-mark img {
  width: 32px;
  height: 32px;
  display: block;
}
.nav-logo-text {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grid);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .idx { color: var(--cyan); margin-right: 6px; }
.nav-drawer {
  display: contents;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--hairline);
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.2s ease-out, opacity 0.2s ease-out;
}
.nav.is-open .nav-toggle-bar:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav.is-open .nav-toggle-bar:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav-drawer {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 8px 24px rgba(10, 31, 92, 0.08);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .nav.is-open .nav-drawer { display: flex; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 8px;
    font-size: 13px;
    letter-spacing: 0.08em;
    border-bottom: 1px solid var(--hairline-soft);
  }
  .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0 0;
  }
  .nav-cta .btn { width: 100%; justify-content: center; padding: 14px 16px; font-size: 11px; }
  .nav-cta .btn-ghost { display: inline-flex; }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 16px; gap: 12px; }
  .nav-logo-text { font-size: 14px; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.15s ease-out;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--paper);
}
.btn-lg { padding: 14px 24px; font-size: 12px; }

/* Main spacing */
main { padding-top: 64px; position: relative; z-index: 1; }

/* Section */
section {
  border-bottom: 1px solid var(--hairline);
  padding: 96px 0;
  position: relative;
}
section.tight { padding: 64px 0; }
@media (max-width: 640px) {
  section { padding: 56px 0; }
  section.tight { padding: 40px 0; }
}

/* Section label */
.sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grid);
  margin-bottom: 24px;
}
.sec-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--navy);
  display: inline-block;
}

/* Status badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 12px;
  border: 1px solid rgba(10, 31, 92, 0.25);
  border-radius: 2px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--paper);
}
.status-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--cyan);
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero */
.hero {
  padding: 128px 0 96px;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 640px) {
  .hero { padding: 88px 0 56px; }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(48px, 7.5vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 24px 0 32px;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 500;
}
.hero-sub {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--grid);
  padding-left: 20px;
  border-left: 1px solid var(--navy);
  max-width: 520px;
  margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-sublink {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grid);
  text-decoration: none;
  transition: color 0.15s ease-out;
}
.hero-sublink strong {
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.hero-sublink:hover { color: var(--navy); }
.hero-sublink:hover strong { text-decoration-color: var(--cyan); }
.hero-meta {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
  padding-top: 24px;
}
.hero-meta-item {
  border-right: 1px solid var(--hairline);
  padding-right: 16px;
}
.hero-meta-item:last-child { border-right: none; }
@media (max-width: 640px) {
  .hero-meta { gap: 16px; }
  .hero-meta-item { padding-right: 8px; }
  .hero-meta-num { font-size: 22px !important; }
}
.hero-meta-num {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grid);
  margin-top: 4px;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-orbit { display: none; }
}

/* Orbit graphic */
.hero-orbit {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  margin-left: auto;
  border: 1px solid var(--hairline);
  background: var(--paper);
}
.hero-orbit::before, .hero-orbit::after {
  content: '';
  position: absolute;
  background: var(--navy);
}
.hero-orbit::before { top: 0; left: 0; width: 10px; height: 1px; }
.hero-orbit::after { top: 0; left: 0; width: 1px; height: 10px; }
.corner-marks { position: absolute; inset: 0; pointer-events: none; }
.corner-marks span {
  position: absolute; width: 10px; height: 10px;
}
.corner-marks span::before, .corner-marks span::after {
  content: ''; position: absolute; background: var(--navy);
}
.corner-marks .tr { top: 0; right: 0; }
.corner-marks .tr::before { top: 0; right: 0; width: 10px; height: 1px; }
.corner-marks .tr::after { top: 0; right: 0; width: 1px; height: 10px; }
.corner-marks .bl { bottom: 0; left: 0; }
.corner-marks .bl::before { bottom: 0; left: 0; width: 10px; height: 1px; }
.corner-marks .bl::after { bottom: 0; left: 0; width: 1px; height: 10px; }
.corner-marks .br { bottom: 0; right: 0; }
.corner-marks .br::before { bottom: 0; right: 0; width: 10px; height: 1px; }
.corner-marks .br::after { bottom: 0; right: 0; width: 1px; height: 10px; }

.orbit-svg { width: 100%; height: 100%; display: block; }
.orbit-rotate { transform-origin: 50% 50%; animation: spin 24s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.orbit-label {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
}
.orbit-label-br {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grid);
  text-align: right;
}

/* Headings */
.sec-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 24px;
  max-width: 900px;
}
.sec-title em { font-style: normal; color: var(--cyan); }
.sec-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--grid);
  max-width: 680px;
  margin-bottom: 64px;
}

/* Bento grid */
.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.bento-cell {
  background: var(--paper);
  padding: 40px 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.bento-cell .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grid);
  padding-left: 12px;
  border-left: 3px solid var(--cyan);
  margin-bottom: 20px;
}
.bento-cell[data-accent="coral"] .label { border-left-color: var(--coral); }
.bento-cell[data-accent="gold"] .label { border-left-color: var(--gold); }
.bento-cell[data-accent="sky"] .label { border-left-color: var(--sky); }
.bento-cell h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.bento-cell p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grid);
  margin-bottom: auto;
}
.bento-cell .footer-note {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--hairline-soft);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grid);
}
.bento.cols-2 { grid-template-columns: repeat(2, 1fr); }
.bento.cols-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .bento, .bento.cols-2, .bento.cols-3 { grid-template-columns: 1fr; }
}
@media (max-width: 1100px) and (min-width: 901px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}

/* Process steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.step {
  background: var(--paper);
  padding: 40px 32px 48px;
  position: relative;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  margin-bottom: 24px;
}
.step h3 {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.step p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--grid);
}
.step-detail {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px dashed var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--grid);
  line-height: 1.5;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* Package cards */
.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.pkg {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease-out;
  position: relative;
}
.pkg:hover { background: #FAFAF8; }
.pkg-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 16px;
}
.pkg-id {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grid);
}
.pkg-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  text-align: right;
}
.pkg h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.pkg-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--grid);
  margin-bottom: 28px;
  flex: 1;
}
.pkg-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.pkg-price {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.pkg-price span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--grid);
  margin-left: 8px;
  text-transform: uppercase;
}
.pkg-arrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
@media (max-width: 900px) { .packages { grid-template-columns: 1fr; } }

/* Value props row */
.value-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value-item {
  padding-top: 20px;
  border-top: 2px solid var(--navy);
}
.value-item h4 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.value-item p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--grid);
}
@media (max-width: 900px) { .value-row { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .value-row { grid-template-columns: 1fr; } }

/* Comparison table */
.compare {
  border: 1px solid var(--hairline);
  background: var(--paper);
  overflow: hidden;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--hairline);
}
.compare-row:last-child { border-bottom: none; }
.compare-cell {
  padding: 20px 24px;
  font-size: 14px;
  line-height: 1.5;
  border-right: 1px solid var(--hairline);
  color: var(--grid);
}
.compare-cell:last-child { border-right: none; }
.compare-row.head .compare-cell {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--navy);
  background: #FAFAF8;
}
.compare-row.head .compare-cell.us { background: var(--navy); color: var(--paper); }
.compare-cell.us {
  background: rgba(10, 31, 92, 0.03);
  color: var(--navy);
  font-weight: 500;
}
@media (max-width: 900px) {
  .compare { border: none; background: transparent; }
  .compare-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--hairline);
    background: var(--paper);
    margin-bottom: 12px;
  }
  .compare-row:last-child { margin-bottom: 0; }
  .compare-row.head { display: none; }
  .compare-cell {
    border-right: none;
    border-bottom: 1px solid var(--hairline-soft);
    padding: 16px 20px;
  }
  .compare-cell:last-child { border-bottom: none; }
  .compare-row > .compare-cell:first-child {
    background: #FAFAF8;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 16px;
    color: var(--navy);
    letter-spacing: -0.01em;
  }
  .compare-cell[data-col]::before {
    content: attr(data-col);
    display: block;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    opacity: 0.55;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .compare-cell.us { background: var(--navy); color: var(--paper); font-weight: 500; }
  .compare-cell.us[data-col]::before { color: var(--cyan); opacity: 1; }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.tcard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.tcard-quote {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--cyan);
  line-height: 1;
}
.tcard-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 1px;
}
.tcard-body {
  font-family: var(--font-mono);
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--grid);
  margin-bottom: 24px;
  flex: 1;
}
.tcard-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}
.tcard-avatar {
  width: 36px;
  height: 36px;
  background: var(--navy);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}
.tcard-ident {
  display: flex;
  flex-direction: column;
}
.tcard-name {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.tcard-role {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--grid);
  letter-spacing: 0.05em;
  margin-top: 2px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

/* FAQ */
.faq {
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--cyan);
  transition: transform 0.2s ease-out;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--grid);
  max-width: 780px;
}

/* CTA form */
.cta-section {
  padding: 96px 0 128px;
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paper);
  border: 1px solid var(--hairline);
  padding: 56px 48px;
  position: relative;
}
@media (max-width: 640px) {
  .cta-box { padding: 36px 24px; }
  .cta-box h2 { font-size: 30px !important; }
}
.cta-box .corner-marks { position: absolute; inset: 0; }
.cta-box h2 {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 16px;
  text-align: center;
}
.cta-box p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--grid);
  text-align: center;
  margin-bottom: 32px;
}
.cta-form { display: grid; gap: 16px; }
.cta-field { display: flex; flex-direction: column; }
.cta-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grid);
  margin-bottom: 6px;
}
.cta-field input, .cta-field select, .cta-field textarea {
  background: #FFF;
  border: 1px solid var(--hairline);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  border-radius: 2px;
  outline: none;
}
.cta-field input:focus, .cta-field select:focus, .cta-field textarea:focus {
  border-color: var(--navy);
}
.cta-field textarea { min-height: 100px; resize: vertical; }
.cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .cta-row { grid-template-columns: 1fr; } }
.cta-form button { margin-top: 12px; }

/* Footer */
footer {
  border-top: 1px solid var(--hairline);
  padding: 64px 0 48px;
  background: var(--paper);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--grid);
  max-width: 320px;
}
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 13px;
  color: var(--grid);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--navy); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--hairline);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grid);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Hook section (why us) */
.hook {
  padding: 96px 0;
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.hook-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: start;
}
.hook-head .sec-label { margin-bottom: 24px; }
.hook-head .sec-title { margin-bottom: 0; }
.hook-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--grid);
  margin-bottom: 20px;
}
.hook-body p:last-of-type { margin-bottom: 32px; }
.hook-body strong { color: var(--navy); font-weight: 600; }
.hook-cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .hook-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .hook { padding: 56px 0; }
  .hook-body p { font-size: 15px; }
  .hook-cta .btn { flex: 1; }
}

/* Mobile polish — headings + misc */
@media (max-width: 640px) {
  .sec-title { font-size: 30px !important; line-height: 1.05; }
  .sec-lede { font-size: 16px; margin-bottom: 40px; }
  .hero h1 { font-size: 44px !important; line-height: 1; }
  .hero-sub { font-size: 12px; padding-left: 14px; }
  .hero-cta { gap: 12px; }
  .hero-cta .btn { width: 100%; }
  .faq-item summary { font-size: 17px; }
  .bento-cell { padding: 28px 20px; min-height: 0; }
  .step { padding: 32px 20px 36px; }
  .step h3 { font-size: 24px; }
  .pkg { padding: 28px 20px; }
  .pkg h3 { font-size: 22px; }
  .del-item { padding: 22px 20px; }
  .tcard { padding: 22px 20px; }
  .pkg-spec { padding: 22px 20px; }
  .cta-section { padding: 56px 0 72px; }
  .nav-logo-mark img { width: 28px; height: 28px; }
}

/* Package page specifics */
.pkg-hero {
  padding: 128px 0 80px;
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 640px) {
  .pkg-hero { padding: 88px 0 48px; }
}
.pkg-hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 64px;
}
.pkg-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 16px 0 24px;
}
.pkg-spec {
  border: 1px solid var(--hairline);
  background: var(--paper);
  padding: 28px;
  height: fit-content;
}
.pkg-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--hairline);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.pkg-spec-row:last-child { border-bottom: none; }
.pkg-spec-row .k { color: var(--grid); text-transform: uppercase; }
.pkg-spec-row .v { color: var(--navy); font-weight: 600; }
.pkg-spec .btn { width: 100%; margin-top: 20px; }
@media (max-width: 900px) {
  .pkg-hero-grid { grid-template-columns: 1fr; }
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.del-item {
  background: var(--paper);
  padding: 28px;
}
.del-item .k {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}
.del-item h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.del-item p { font-size: 13.5px; line-height: 1.55; color: var(--grid); }
@media (max-width: 700px) { .deliverables { grid-template-columns: 1fr; } }

/* Prose */
.prose p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--grid);
  margin-bottom: 20px;
  max-width: 760px;
}
.prose h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
}
.prose h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin: 32px 0 12px;
}
.prose ul { padding-left: 20px; margin-bottom: 24px; }
.prose li { font-size: 15px; line-height: 1.7; color: var(--grid); margin-bottom: 8px; }

/* Utility */
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 32px; } }
