/* PresenAIT marketing — design language aligned with DataAIT.com */
:root {
  --color-bg: #FFF9EC;
  --color-ink: #16171B;
  --color-muted: #5F6570;
  --color-gold: #FDC70C;
  --color-orange: #F0651A;
  --color-time: #F5A623;
  --color-time-app: #F79320;
  --color-green: #146C43;
  --color-compli: #C48A00;
  --color-green-soft: #E7F5EC;
  --color-gold-soft: #FDF3D2;
  --color-orange-soft: #FCE6D9;
  --color-time-soft: #FFF4E0;
  --color-graphite: #4B4E58;
  --color-graphite-soft: #EEEEF0;
  --color-border: #E6E2D8;
  --color-white: #FFFFFF;
  --max-width: 1280px;
  --content-width: 1180px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(760px 560px at 10% 0%, rgba(253, 199, 12, 0.32), transparent 62%),
    radial-gradient(900px 680px at 92% 12%, rgba(240, 101, 26, 0.28), transparent 62%),
    radial-gradient(950px 760px at 50% 55%, rgba(20, 108, 67, 0.22), transparent 68%),
    var(--color-bg);
  background-attachment: fixed;
  color: var(--color-ink);
  font-family: var(--font-body);
}

a, button, input, textarea, select { font-family: inherit; }

@media (max-width: 700px), (hover: none) {
  html, body { background-attachment: scroll; }
}

:focus-visible {
  outline: 2px solid var(--color-green);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.navbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--color-ink);
}

.nav-logo {
  height: 66px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
}

img.nav-logo {
  max-width: 360px;
  height: 66px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1 1 auto;
}

.nav-links a {
  color: var(--color-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

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

.nav-links a.nav-active,
.nav-links a[aria-current="page"] {
  color: var(--color-green);
  font-weight: 600;
}

.nav-cta-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--color-ink);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-cta:hover { background: var(--color-green); }

.nav-cta-gold {
  display: inline-flex;
  align-items: center;
  background: var(--color-gold);
  color: var(--color-ink);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.nav-cta-gold:hover { background: #ffe056; }

.nav-cta-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--color-orange);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 6px;
  border-bottom: 1.5px solid transparent;
}

.nav-cta-ghost:hover { border-bottom-color: var(--color-orange); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--color-ink);
}

@media (max-width: 980px) {
  .nav-links { gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
  .nav-links a { font-size: 13px; }
  .nav-cta-ghost { display: none; }
}

@media (max-width: 760px) {
  .navbar-inner { flex-wrap: wrap; padding: 8px 20px; }
  .nav-logo,
  img.nav-logo { height: 56px; max-width: 260px; }
  .nav-toggle { display: inline-flex; margin-left: auto; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0 12px;
  }
  .nav-links.is-open { display: flex; }
  .nav-cta-group {
    width: 100%;
    justify-content: flex-end;
    order: 3;
  }
  .nav-cta { padding: 9px 14px; font-size: 13px; }
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-ink);
  color: #fff;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.18s ease;
}

.btn-primary:hover { background: var(--color-green); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1.5px solid var(--color-green);
  color: var(--color-green);
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.btn-outline:hover { background: var(--color-green-soft); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  background: var(--color-gold);
  color: var(--color-ink);
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.15s ease;
}

.btn-gold:hover { background: #ffe056; }

.link-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-ink);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.18s ease;
}

.link-secondary:hover { border-color: var(--color-ink); }

.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* ---------- Page shells ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 32px 64px;
  background:
    radial-gradient(760px 560px at 10% 0%, rgba(253, 199, 12, 0.28), transparent 62%),
    radial-gradient(900px 680px at 92% 12%, rgba(245, 166, 35, 0.22), transparent 62%),
    radial-gradient(950px 760px at 50% 80%, rgba(20, 108, 67, 0.12), transparent 68%),
    #FFFFFF;
}

.page-hero-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 18px 0;
}

.eyebrow .bar {
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--color-time);
  border-radius: 2px;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 18px 0;
  max-width: 18ch;
}

.page-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--color-muted);
  max-width: 48ch;
  margin: 0;
}

.section {
  padding: 72px 32px;
}

.section-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
  margin: 0 0 12px 0;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.01em;
  margin: 0 0 14px 0;
  color: var(--color-ink);
  max-width: 28ch;
}

.section-subhead {
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 0 44px 0;
}

.section-rule {
  position: relative;
}

.section-rule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-time), var(--color-green));
}

/* ---------- Home hero (DataAIT pattern) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(760px 560px at 10% 0%, rgba(253, 199, 12, 0.32), transparent 62%),
    radial-gradient(900px 680px at 92% 12%, rgba(240, 101, 26, 0.24), transparent 62%),
    radial-gradient(950px 760px at 50% 55%, rgba(20, 108, 67, 0.16), transparent 68%),
    #FFFFFF;
}

#decode-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 32px 104px;
  display: flex;
  justify-content: center;
}

.hero-text-col {
  text-align: center;
  min-width: 0;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 20px 0;
}

.hero-eyebrow .bar {
  display: inline-block;
  width: 3px;
  height: 14px;
  background: var(--color-time);
  border-radius: 2px;
}

.headline {
  margin: 0 0 40px 0;
}

.line1, .line2, .line3 {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.03em;
  color: var(--color-ink);
  font-size: clamp(42px, 9vw, 120px);
  white-space: nowrap;
}

.cycle-word {
  display: block;
  width: 14ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: var(--color-time-app);
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0;
}

.hero .cta-row {
  justify-content: center;
}

@media (max-width: 900px) {
  .hero-inner { padding: 56px 24px 72px; }
  .line1, .line2, .line3 {
    font-size: clamp(34px, 11vw, 64px);
    white-space: normal;
  }
  .cycle-word { width: auto; max-width: 100%; }
}

/* ---------- Flow strip ---------- */
.flow-section {
  padding: 56px 32px 64px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(255,255,255,0.45);
}

.flow-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  text-align: center;
}

.flow-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 36px 0;
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.flow-steps li {
  padding: 0 16px;
  border-left: 1px solid var(--color-border);
  text-align: left;
}

.flow-steps li:first-child { border-left: none; }

.flow-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-time-app);
  font-weight: 500;
  margin-bottom: 8px;
}

.flow-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 6px 0;
}

.flow-cap {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.4;
  margin: 0;
}

.flow-steps-3 {
  grid-template-columns: repeat(3, 1fr);
  text-align: left;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .flow-steps { grid-template-columns: 1fr 1fr; gap: 24px 8px; }
  .flow-steps-3 { grid-template-columns: 1fr; }
  .flow-steps li {
    border-left: none;
    border-top: 1px solid var(--color-border);
    padding: 20px 8px 0;
  }
  .flow-steps li:nth-child(1),
  .flow-steps li:nth-child(2) { border-top: none; padding-top: 0; }
  .flow-steps-3 li:nth-child(2) {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
  }
}

@media (max-width: 520px) {
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps li:nth-child(2) {
    border-top: 1px solid var(--color-border);
    padding-top: 20px;
  }
}

/* ---------- Feature rows (no card clutter) ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}

.feature-row:last-child { border-bottom: 1px solid var(--color-border); }

.feature-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-time-app);
  font-weight: 500;
  padding-top: 4px;
}

.feature-row h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
}

.feature-row p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 58ch;
}

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

/* ---------- Suite tease ---------- */
.suite-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}

.suite-item {
  padding: 28px 0 8px;
  border-top: 3px solid var(--color-border);
}

.suite-item.live { border-top-color: var(--color-time); }
.suite-item.soon-green { border-top-color: var(--color-green); }
.suite-item.soon-gold { border-top-color: var(--color-compli); }

.suite-status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px 0;
}

.suite-item.live .suite-status { color: var(--color-time-app); }
.suite-item.soon-green .suite-status { color: var(--color-green); }
.suite-item.soon-gold .suite-status { color: var(--color-compli); }

.suite-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  margin: 0 0 10px 0;
}

.suite-item p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.5;
}

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

/* ---------- Pricing ---------- */
.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-muted);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 24px 0 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.price-tier {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.price-tier:hover {
  transform: translateY(-2px);
  border-color: var(--color-time);
}

.price-tier.featured {
  border-color: var(--color-ink);
  border-width: 2px;
  position: relative;
}

.price-badge {
  position: absolute;
  top: -11px;
  left: 24px;
  background: var(--color-gold);
  color: var(--color-ink);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px 0;
}

.tier-staff {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0 0 20px 0;
}

.tier-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 4px 0;
}

.tier-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-muted);
  letter-spacing: 0;
}

.tier-period {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0 0 12px 0;
}

.tier-blurb {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-ink);
  margin: 0 0 20px 0;
  min-height: 2.9em;
}

.tier-features {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.tier-features li {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-ink);
  padding-left: 18px;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
}

.tier-aside {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--color-muted);
}

.tier-cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: var(--color-ink);
  color: #fff;
  transition: background 0.15s ease;
  margin-top: auto;
}

.tier-cta:hover { background: var(--color-green); }

.tier-cta.ghost {
  background: transparent;
  color: var(--color-ink);
  border: 1.5px solid var(--color-border);
}

.tier-cta.ghost:hover {
  border-color: var(--color-ink);
  background: transparent;
}

.pricing-foot {
  margin-top: 36px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.55;
  max-width: 70ch;
}

.pricing-foot strong { color: var(--color-ink); font-weight: 600; }

.compare-wrap {
  margin-top: 28px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff;
}

.compare-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.compare-table th,
.compare-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  background: #FBF6E8;
  color: var(--color-ink);
  white-space: nowrap;
  text-align: center;
}

.compare-table thead th:first-child {
  text-align: left;
  width: 26%;
}

.compare-table thead th:not(:first-child),
.compare-table tbody td {
  width: 18.5%;
  text-align: center;
}

.compare-table tbody th {
  font-weight: 500;
  color: var(--color-ink);
  text-align: left;
  width: 26%;
}

.compare-table tbody td {
  color: var(--color-muted);
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: rgba(251, 246, 232, 0.55);
}

.cell-yes {
  color: var(--color-green);
  font-weight: 700;
}

.cell-no {
  color: #b0a89a;
}

/* Narrow screens: feature title, then Lite/Core/Pro/Enterprise as label | value rows */
@media (max-width: 700px) {
  .compare-wrap {
    border: none;
    background: transparent;
    overflow: visible;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .compare-table {
    table-layout: auto;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table tbody tr {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    margin-bottom: 12px;
    padding: 4px 0 8px;
    overflow: hidden;
  }

  .compare-table tbody tr:hover td,
  .compare-table tbody tr:hover th {
    background: transparent;
  }

  .compare-table tbody th {
    display: block;
    width: 100%;
    padding: 14px 16px 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 15px;
    background: #FBF6E8;
    border-bottom: 1px solid var(--color-border);
  }

  .compare-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    text-align: right;
    padding: 10px 16px;
    border-bottom: 1px solid var(--color-border);
    white-space: normal;
  }

  .compare-table tbody td:last-child {
    border-bottom: none;
  }

  .compare-table tbody td::before {
    content: attr(data-plan);
    font-weight: 600;
    color: var(--color-ink);
    text-align: left;
  }

  .compare-table tbody tr:last-child th,
  .compare-table tbody tr:last-child td {
    border-bottom: 1px solid var(--color-border);
  }

  .compare-table tbody tr:last-child td:last-child {
    border-bottom: none;
  }
}

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

@media (max-width: 560px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .tier-blurb { min-height: 0; }
}

/* ---------- Trust / partners / recognition ---------- */
.marquee-section {
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--color-border);
}

.marquee-label {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0 0 28px 0;
}

.marquee-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: scroll-left 52s linear infinite;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  flex: 0 0 220px;
  padding: 8px 16px;
}

.marquee-item img {
  height: 64px;
  width: auto;
  max-width: 180px;
  max-height: 64px;
  object-fit: contain;
  display: block;
  transition: transform 0.22s ease;
}

.marquee-item:hover img {
  transform: scale(1.04);
}

@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.recognition-block {
  margin-top: 8px;
}

.recognition-hero {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 28px;
  align-items: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

.recognition-hero-badge {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(20, 108, 67, 0.12);
}

.recognition-hero-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-green);
  margin: 0 0 8px;
}

.recognition-hero-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
  color: var(--color-ink);
}

.recognition-hero-body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--color-muted);
}

@media (max-width: 700px) {
  .recognition-hero {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding: 24px;
  }
}

/* ---------- Steps (how it works) ---------- */
.steps {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
}

.steps li:last-child { border-bottom: 1px solid var(--color-border); }

.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--color-time-app);
  line-height: 1;
}

.steps h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 8px 0;
}

.steps p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 58ch;
}

/* ---------- Contact form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}

.contact-aside p {
  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.55;
  margin: 0 0 16px 0;
  max-width: 40ch;
}

.contact-aside a {
  color: var(--color-green);
  font-weight: 600;
  text-decoration: none;
}

.contact-aside a:hover { text-decoration: underline; }

.contact-form {
  background: rgba(255,255,255,0.75);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #fff;
  font-size: 15px;
  color: var(--color-ink);
}

.form-field textarea { min-height: 120px; resize: vertical; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--color-green);
  outline-offset: 1px;
  border-color: transparent;
}

@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Legal ---------- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 32px 80px;
}

.legal-content h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 44px);
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.legal-meta {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0 0 36px 0;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 32px 0 12px 0;
}

.legal-content p,
.legal-content li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--color-muted);
}

.legal-content ul { padding-left: 1.2em; }

/* ---------- CTA band ---------- */
.cta-band {
  padding: 72px 32px;
  text-align: center;
  background:
    radial-gradient(600px 400px at 50% 0%, rgba(245, 166, 35, 0.2), transparent 70%),
    rgba(255,255,255,0.55);
  border-top: 1px solid var(--color-border);
}

.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.02em;
  margin: 0 0 12px 0;
}

.cta-band p {
  color: var(--color-muted);
  font-size: 16px;
  margin: 0 auto 28px;
  max-width: 42ch;
}

.cta-band .cta-row { justify-content: center; }

/* ---------- 404 ---------- */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 32px;
}

.error-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(64px, 12vw, 120px);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 16px 0;
  color: var(--color-time-app);
}

.error-page p {
  color: var(--color-muted);
  font-size: 18px;
  margin: 0 0 28px 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: #C7C9D1;
  padding: 72px 32px 0;
}

.footer-inner {
  max-width: var(--content-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin: 0 0 6px 0;
}

.footer-byline {
  font-size: 13px;
  color: #9EA1AC;
  margin: 0 0 14px 0;
}

.footer-byline a { color: var(--color-gold); text-decoration: none; }
.footer-byline a:hover { text-decoration: underline; }

.footer-mission {
  font-size: 14px;
  line-height: 1.6;
  color: #9EA1AC;
  max-width: 34ch;
  margin: 0;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7B7E89;
  margin: 0 0 16px 0;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

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

.footer-links a:hover { color: #fff; }

.footer-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: #C7C9D1;
  margin: 0 0 10px 0;
}

.footer-contact a {
  color: #C7C9D1;
  text-decoration: none;
}

.footer-contact a:hover { color: #fff; }

.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #C7C9D1;
  text-decoration: none;
  margin-top: 16px;
}

.footer-social:hover { color: #fff; }

.footer-ack {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 700px) {
  .footer-ack { grid-template-columns: 1fr; }
}

.footer-ack p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #9EA1AC;
  max-width: 72ch;
  margin: 0;
}

.footer-flags {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer-flags svg {
  height: 30px;
  width: auto;
  display: block;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0 32px;
  font-size: 13px;
  color: #7B7E89;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: #7B7E89;
  text-decoration: none;
}

.footer-bottom-links a:hover { color: #fff; }

.reach-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.reach-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 10px 16px;
  color: var(--color-ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.reach-chip:hover { border-color: var(--color-green); }
.reach-chip svg { width: 16px; height: 16px; stroke: var(--color-green); fill: none; stroke-width: 1.8; }

.prompt-box {
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.prompt-box textarea {
  width: 100%;
  min-height: 120px;
  border: none;
  resize: vertical;
  padding: 24px;
  font-size: 16px;
  background: transparent;
  color: var(--color-ink);
  outline: none;
}

.quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 24px 16px;
}

.quick-pill {
  border: 1px solid var(--color-border);
  background: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  color: var(--color-ink);
}

.quick-pill.is-selected {
  border-color: var(--color-green);
  background: var(--color-green-soft);
  color: var(--color-green);
}

.prompt-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--color-border);
}

.send-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--color-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.send-btn svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }
.send-btn:hover { background: var(--color-green); }

.gs-chip-label {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0;
  padding: 0 24px 10px;
}

.contact-step { padding: 20px 24px 24px; }
.contact-step-intro { font-size: 15px; margin: 0 0 18px 0; }
.contact-privacy-note { font-size: 13px; color: var(--color-muted); margin: 16px 0 0; }
.contact-privacy-note a { color: var(--color-green); }
.gs-error-msg { display: none; font-size: 13px; color: #C4331F; margin: 0 0 8px; }
.gs-error-msg.is-visible { display: block; }
.success-msg {
  padding: 40px 24px;
  text-align: center;
  color: var(--color-green);
  font-size: 16px;
  font-weight: 500;
}

.office-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.office-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 20px;
}

.office-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-green);
}

.office-card h3 {
  font-family: var(--font-display);
  margin: 8px 0 0;
  font-size: 22px;
}

@media (max-width: 700px) {
  .office-list { grid-template-columns: 1fr; }
}

.journey-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin: 0 0 48px;
  list-style: none;
  padding: 8px 0 0;
  position: relative;
}

.journey-rail::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  top: 22px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-time), var(--color-orange), var(--color-green));
}

.journey-rail li {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.journey-dot {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--color-time);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px -12px rgba(22, 23, 27, 0.4);
}

.journey-rail li:nth-child(1) .journey-dot { border-color: var(--color-gold); }
.journey-rail li:nth-child(2) .journey-dot { border-color: var(--color-time); }
.journey-rail li:nth-child(3) .journey-dot { border-color: var(--color-orange); }
.journey-rail li:nth-child(4) .journey-dot { border-color: var(--color-green); }
.journey-rail li:nth-child(5) .journey-dot { border-color: var(--color-ink); background: var(--color-ink); }

.journey-dot svg { width: 18px; height: 18px; stroke: var(--color-ink); fill: none; stroke-width: 1.8; }
.journey-rail li:nth-child(5) .journey-dot svg { stroke: #fff; }

.journey-rail .yr {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.journey-rail .cap {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.journey {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.journey::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-time), var(--color-green));
  border-radius: 2px;
}

.journey li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 22px;
  padding: 0 0 36px;
  align-items: start;
  position: relative;
}

.journey li:last-child { padding-bottom: 0; }

.journey-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--color-ink);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px -18px rgba(22, 23, 27, 0.45);
}

.journey li:nth-child(1) .journey-mark { background: var(--color-gold-soft); border-color: var(--color-gold); }
.journey li:nth-child(2) .journey-mark { background: var(--color-time-soft); border-color: var(--color-time); }
.journey li:nth-child(3) .journey-mark { background: var(--color-orange-soft); border-color: var(--color-orange); }
.journey li:nth-child(4) .journey-mark { background: var(--color-green-soft); border-color: var(--color-green); }
.journey li:nth-child(5) .journey-mark { background: var(--color-ink); color: #fff; border-color: var(--color-ink); }

.journey-card {
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px 24px 20px;
}

.journey-year {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-time-app);
  margin: 0 0 8px;
  font-weight: 500;
}

.journey h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
}

.journey p {
  margin: 0;
  color: var(--color-muted);
  font-size: 15.5px;
  line-height: 1.55;
  max-width: 58ch;
}

.founder {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  overflow: hidden;
}

.founder img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
}

.founder-copy { padding: 28px 32px 28px 0; }

.founder-copy blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: -0.02em;
  line-height: 1.35;
  margin: 0 0 18px;
}

.founder-name {
  font-weight: 700;
  margin: 0 0 4px;
}

.founder-role {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0 0 12px;
}

.founder-role a { color: var(--color-green); text-decoration: none; }

@media (max-width: 800px) {
  .journey-rail { display: none; }
  .founder { grid-template-columns: 1fr; }
  .founder img { height: 280px; }
  .founder-copy { padding: 22px 24px 28px; }
}

@media (max-width: 560px) {
  .journey::before { left: 19px; }
}
.faq-list { max-width: 760px; }
.faq-item {
  border-top: 1px solid var(--color-border);
  padding: 20px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--color-border); }
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
}
.faq-item p { margin: 0; color: var(--color-muted); font-size: 15px; line-height: 1.55; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
}
