/* ═══════════════════════════════════════════════════════
   Tradora – Automotive Commerce Infrastructure
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #07110f;
  --bg-soft: #0d1b18;
  --panel: rgba(10, 22, 19, 0.86);
  --panel-border: rgba(164, 214, 197, 0.12);
  --mint: #68d6ab;
  --mint-strong: #8ef4c8;
  --text: #f6f2ea;
  --text-soft: rgba(246, 242, 234, 0.72);
  --ink: #10231d;
  --light: #f7f1e7;
  --light-border: rgba(16, 35, 29, 0.1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: "Onest", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(54, 118, 98, 0.28), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(86, 191, 150, 0.14), transparent 20%),
    linear-gradient(180deg, #030807 0%, #07110f 100%);
}

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

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

h1, h2, h3, h4, p {
  margin: 0;
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay {
  transition-delay: 0.15s;
}

/* ── Page Shell ── */
.page-shell {
  width: min(calc(100% - 24px), 1186px);
  margin: 12px auto 22px;
}

/* ── Panels ── */
.hero-panel,
.light-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 18px 20px 20px;
  border: 1px solid var(--panel-border);
  background:
    linear-gradient(135deg, rgba(8, 17, 15, 0.98), rgba(7, 14, 13, 0.92)),
    linear-gradient(180deg, rgba(104, 214, 171, 0.08), transparent 32%);
}

/* ── Shared content width ── */
.topbar,
.hero-grid,
.stats-strip,
.platform-grid,
.quote-band,
.light-hero,
.insight-band,
.solutions-grid,
.resource-row,
.footer {
  width: min(100%, 1120px);
  margin-inline: auto;
}

/* ══════════════ TOPBAR ══════════════ */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 2px 4px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo-top {
  width: 122px;
  height: auto;
}

.brand-logo {
  width: 140px;
  height: auto;
}

.brand-logo-footer {
  width: 148px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--text-soft);
  font-size: 0.74rem;
  font-weight: 500;
}

.nav a {
  transition: color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--text);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 180ms ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.08);
}

.mobile-nav {
  display: none;
}

/* ══════════════ BUTTONS ══════════════ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.015em;
  cursor: pointer;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-lg {
  min-height: 46px;
  padding: 0 22px;
  font-size: 0.82rem;
}

.button-primary {
  color: #082019;
  background: linear-gradient(135deg, var(--mint-strong), #69cba2);
  box-shadow: 0 2px 12px rgba(104, 214, 171, 0.2);
}

.button-primary:hover {
  box-shadow: 0 4px 20px rgba(104, 214, 171, 0.35);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost-light {
  color: var(--ink);
  border-color: rgba(16, 35, 29, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.button-ghost-light:hover {
  border-color: rgba(16, 35, 29, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

.button-dark {
  color: var(--light);
  background: var(--ink);
  box-shadow: 0 2px 12px rgba(16, 35, 29, 0.18);
}

.button-dark:hover {
  box-shadow: 0 4px 20px rgba(16, 35, 29, 0.28);
}

/* ══════════════ HERO GRID ══════════════ */
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 16px;
}

.hero-copy {
  padding: 18px 2px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.62rem;
  font-weight: 600;
}

.eyebrow {
  margin: 0 0 18px;
  color: #b9e7d5;
  background: rgba(143, 241, 199, 0.08);
  border: 1px solid rgba(143, 241, 199, 0.12);
}

h1,
.light-copy h2 {
  font-family: "Newsreader", serif;
  line-height: 0.93;
  letter-spacing: -0.045em;
  font-weight: 500;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.65rem, 7.8vw, 5.45rem);
}

.hero-text {
  max-width: 54ch;
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

/* ── Partner Row ── */
.partner-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.partner-label {
  color: rgba(246, 242, 234, 0.4);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.partner-logo {
  display: block;
  max-height: 18px;
  width: auto;
  opacity: 0.9;
  transition: opacity 200ms ease;
}

.partner-logo:hover {
  opacity: 1;
}

.partner-wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  color: rgba(246, 242, 234, 0.68);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.partner-cargurus-logo {
  max-height: 18px;
  opacity: 0.85;
}

.partner-driveway {
  max-height: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.72;
}

.partner-acv {
  max-height: 18px;
}

.partner-urban-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.partner-urban {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.partner-urban-text {
  font-size: 0.7rem;
}

.partner-group1 {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ══════════════ HERO VISUAL ══════════════ */
.hero-visual {
  position: relative;
  min-height: 470px;
  padding: 8px;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}

.glow-one {
  top: 8%;
  right: 6%;
  width: 160px;
  height: 160px;
  background: rgba(66, 167, 131, 0.18);
}

.glow-two {
  bottom: 10%;
  left: 4%;
  width: 220px;
  height: 220px;
  background: rgba(103, 214, 171, 0.1);
}

.car-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(175, 221, 206, 0.1);
}

.hero-car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.85) contrast(1.05) brightness(0.75);
}

.car-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 13, 12, 0.72) 0%, rgba(6, 13, 12, 0.2) 50%, transparent 100%),
    linear-gradient(180deg, transparent 40%, rgba(6, 13, 12, 0.5) 100%);
  pointer-events: none;
  z-index: 1;
}

.visual-chip,
.data-panel {
  position: absolute;
  border: 1px solid rgba(182, 221, 208, 0.14);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(11, 22, 21, 0.55);
  z-index: 2;
}

.visual-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  color: rgba(246, 242, 234, 0.85);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.visual-chip svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.chip-top {
  top: 16px;
  left: 16px;
}

.chip-side {
  right: 16px;
  top: 72px;
}

.data-panel {
  right: 16px;
  bottom: 16px;
  min-width: 140px;
  padding: 16px 18px;
  border-radius: 18px;
}

.data-panel span,
.data-panel small {
  display: block;
}

.data-panel span {
  color: rgba(246, 242, 234, 0.6);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.data-panel strong {
  display: block;
  margin-top: 8px;
  font-family: "Newsreader", serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--mint-strong);
}

.data-panel small {
  margin-top: 4px;
  color: rgba(246, 242, 234, 0.74);
  font-size: 0.78rem;
  line-height: 1.45;
}

/* ══════════════ VIN CARD ══════════════ */
.vin-card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.vin-card-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  padding: 20px;
  color: #1a1a2e;
  pointer-events: none;
  user-select: none;
  opacity: 0.4;
}

.vin-coming-soon-banner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.vin-coming-soon-banner img {
  width: 110%;
  max-width: none;
  transform: rotate(-5deg);
  margin-top: -20px;
}

.vin-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.vin-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.3;
  flex: 1;
}

.vin-card-badges {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.vin-badge-fastest {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #93c5fd;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
}

.vin-link {
  font-size: 0.65rem;
  color: #0d7377;
  text-decoration: underline;
}

.vin-form-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.vin-input-row {
  display: flex;
  gap: 10px;
}

.vin-row-split .vin-input-mock,
.vin-row-split .vin-select-mock {
  flex: 1;
}

.vin-input-mock,
.vin-select-mock {
  width: 100%;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  background: #f8f8f8;
  color: #999;
  font-size: 0.8rem;
  font-family: var(--font-sans);
}

.vin-plate-mock {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #666;
  font-weight: 500;
}

.vin-plate-star {
  color: #1e40af;
}

.vin-btn-mock {
  padding: 11px;
  border-radius: 10px;
  background: #0d7377;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  font-family: var(--font-sans);
}

.vin-btn-secondary {
  background: #1a1a2e;
}

.vin-or-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #999;
  font-size: 0.75rem;
}

.vin-or-divider::before,
.vin-or-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e0e0e0;
}

.vin-section-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #1a1a2e;
  display: block;
  margin-bottom: 8px;
}

.vin-license-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ══════════════ STATS STRIP ══════════════ */
.stats-strip,
.insight-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 10px;
  border-radius: 20px;
  overflow: hidden;
}

.stats-strip {
  background: rgba(175, 221, 206, 0.08);
}

.stats-strip article,
.insight-band article {
  padding: 28px 24px;
}

.stats-strip article {
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
}

.stat-icon-wrap {
  display: none;
}

.stat-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  color: #9fe8cb;
  background: rgba(104, 214, 171, 0.08);
  border: 1px solid rgba(104, 214, 171, 0.12);
}

.stat-icon svg {
  width: 18px;
  height: 18px;
}

.stat-icon-light {
  color: #17342b;
  background: rgba(16, 35, 29, 0.04);
  border-color: rgba(16, 35, 29, 0.08);
}

.stat-value {
  font-family: "Newsreader", serif;
  font-size: 5.4rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.stat-label {
  margin-top: 12px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.45;
}

/* ══════════════ PLATFORM GRID ══════════════ */
.platform-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.card,
.story-card,
.capability-list,
.resource-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--panel-border);
}

.card {
  min-height: 194px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 80%),
    rgba(9, 20, 18, 0.78);
  transition: border-color 250ms ease, transform 250ms var(--ease-out);
}

.card:hover {
  border-color: rgba(164, 214, 197, 0.22);
  transform: translateY(-2px);
}

.card-dark {
  background:
    radial-gradient(circle at top left, rgba(111, 223, 180, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(12, 27, 23, 0.94), rgba(5, 10, 10, 0.98));
}

.card-dark:hover {
  transform: none;
}

.platform-intro {
  grid-row: span 2;
  min-height: 402px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.platform-intro h2,
.story-card h3 {
  margin-top: 12px;
  font-family: "Newsreader", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 500;
}

.platform-intro p:last-child,
.feature-card p:last-child,
.story-card p:last-child,
.capability-list p,
.resource-card p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.84rem;
  line-height: 1.55;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--mint);
  background: rgba(111, 223, 180, 0.1);
  border: 1px solid rgba(111, 223, 180, 0.14);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3,
.resource-card h4,
.capability-list h4 {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ══════════════ QUOTE BAND ══════════════ */
.quote-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px 8px;
}

.quote-band blockquote {
  margin: 0;
  max-width: none;
  white-space: nowrap;
}

.quote-band p {
  color: #dbeee6;
  font-size: 0.86rem;
  line-height: 1.6;
  font-style: italic;
}

.quote-metrics {
  display: flex;
  gap: 24px;
}

.quote-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.quote-metric strong {
  font-family: "Newsreader", serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--mint-strong);
}

.quote-metric span {
  color: var(--text-soft);
  font-size: 0.72rem;
  white-space: nowrap;
}

/* ══════════════ LIGHT PANEL ══════════════ */
.light-panel {
  margin-top: 18px;
  padding: 18px 20px 16px;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(104, 214, 171, 0.14), transparent 22%),
    linear-gradient(180deg, #faf5ed 0%, #f4ecde 100%);
}

.light-copy h2 {
  max-width: 10ch;
  margin-top: 12px;
  font-size: clamp(3.1rem, 6vw, 4.85rem);
  color: #162722;
}

.light-copy p:last-of-type {
  max-width: 56ch;
  margin-top: 14px;
  color: rgba(16, 35, 29, 0.74);
  font-size: 0.88rem;
  line-height: 1.65;
}

.eyebrow-light,
.section-tag-light {
  color: rgba(16, 35, 29, 0.56);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 35, 29, 0.09);
}

.light-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: center;
}

.light-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.window-card {
  width: min(100%, 380px);
}

.window-mockup-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(65, 56, 40, 0.14);
}

.dot-field {
  position: absolute;
  right: 6%;
  top: 12%;
  width: 96px;
  height: 96px;
  opacity: 0.4;
  background-image: radial-gradient(circle, rgba(16, 35, 29, 0.32) 1.1px, transparent 1.2px);
  background-size: 11px 11px;
}

/* ── Insight Band ── */
.insight-band {
  position: relative;
  margin-top: 18px;
  padding-top: 36px;
  background: rgba(16, 35, 29, 0.06);
}

.insight-band article {
  background: rgba(255, 255, 255, 0.34);
  text-align: center;
}

.insight-kicker {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(16, 35, 29, 0.55);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}

.insight-band .stat-label {
  color: rgba(16, 35, 29, 0.64);
}

.insight-band .stat-icon {
  display: none;
}

/* ══════════════ SOLUTIONS GRID ══════════════ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(2, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.capability-card {
  min-height: 194px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  background: rgba(255, 255, 255, 0.44);
  transition: transform 250ms var(--ease-out), box-shadow 250ms ease;
}

.capability-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 35, 29, 0.06);
}

.capability-card h4 {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #2a4038;
}

.capability-card p {
  margin-top: 10px;
  color: rgba(28, 48, 42, 0.68);
  font-size: 0.84rem;
  line-height: 1.55;
}

.capability-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: #17342b;
  background: rgba(16, 35, 29, 0.06);
  border: 1px solid rgba(16, 35, 29, 0.08);
}

.capability-card-icon svg {
  width: 24px;
  height: 24px;
}

.story-card,
.capability-list,
.resource-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.44);
  border-color: var(--light-border);
  transition: transform 250ms var(--ease-out), box-shadow 250ms ease;
}

.story-card:hover,
.capability-list:hover,
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 35, 29, 0.06);
}

.story-card {
  grid-row: span 2;
  min-height: 402px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.44);
}

.story-card h3,
.resource-card h4,
.capability-list h4 {
  color: #2a4038;
}

.story-card p:last-child,
.resource-card p,
.capability-list p {
  color: rgba(28, 48, 42, 0.68);
}

.resource-card .section-tag-light,
.story-card .section-tag-light,
.capability-list .section-tag-light {
  color: rgba(28, 48, 42, 0.5);
}

.capability-list article + article {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(16, 35, 29, 0.08);
}

.capability-list article {
  position: relative;
  padding-bottom: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  border-radius: 10px;
  color: #f7f1e7;
  background: #17342b;
}

.capability-icon svg {
  width: 16px;
  height: 16px;
}

.capability-list p {
  color: rgba(16, 35, 29, 0.7);
}

/* ══════════════ RESOURCE ROW ══════════════ */
.resource-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.resource-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.resource-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 10px;
  color: #17342b;
  background: rgba(16, 35, 29, 0.06);
  border: 1px solid rgba(16, 35, 29, 0.08);
}

.resource-icon svg {
  width: 18px;
  height: 18px;
}

.resource-icon-dark {
  color: var(--mint);
  background: rgba(104, 214, 171, 0.1);
  border-color: rgba(104, 214, 171, 0.14);
}

.resource-card-dark {
  color: var(--text);
  border-color: rgba(175, 221, 206, 0.08);
  background:
    radial-gradient(circle at top right, rgba(104, 214, 171, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(13, 28, 24, 0.92), rgba(5, 10, 10, 0.98));
}

.resource-card-dark:hover {
  border-color: rgba(175, 221, 206, 0.16);
}

.resource-card-dark h4 {
  color: #f5efe5;
}

.resource-card-dark p {
  color: rgba(245, 239, 229, 0.72);
}

.resource-card-dark .section-tag {
  color: rgba(245, 239, 229, 0.54);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ══════════════ FOOTER ══════════════ */
.footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  padding: 12px 0 4px;
}

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

.footer-copy {
  margin-top: 8px;
  color: rgba(16, 35, 29, 0.64);
  font-size: 0.84rem;
}

.photo-sources {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  width: min(100%, 1120px);
  margin: 12px auto 0;
  color: rgba(16, 35, 29, 0.5);
  font-size: 0.7rem;
}

.photo-sources a {
  transition: color 180ms ease;
}

.photo-sources a:hover,
.photo-sources a:focus-visible {
  color: rgba(16, 35, 29, 0.84);
}

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .topbar-actions .button {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 350ms var(--ease-out), padding 350ms var(--ease-out);
    padding: 0 8px;
  }

  .mobile-nav.open {
    max-height: 320px;
    padding: 0 8px 18px;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--text-soft);
    font-size: 0.86rem;
    font-weight: 500;
    transition: background 180ms ease, color 180ms ease;
  }

  .mobile-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
  }

  .mobile-nav .button {
    margin-top: 8px;
    justify-content: center;
  }

  .hero-grid,
  .light-hero,
  .resource-row {
    grid-template-columns: 1fr;
  }

  .dot-field {
    right: 2%;
    top: auto;
    bottom: -8px;
  }

  .platform-grid,
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-intro,
  .story-card {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .chip-side {
    top: 88px;
  }

  .quote-band,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 18px), var(--content-width));
    margin: 10px auto 20px;
  }

  .hero-panel,
  .light-panel {
    padding-left: 16px;
    padding-right: 16px;
    border-radius: 24px;
  }

  .topbar {
    flex-wrap: wrap;
    padding-bottom: 18px;
  }

  .hero-copy,
  .light-copy {
    padding-top: 12px;
  }

  h1,
  .light-copy h2 {
    max-width: none;
  }

  .stats-strip,
  .insight-band,
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 300px;
  }

  .dot-field {
    display: none;
  }

  .brand-logo-top {
    width: 108px;
  }

  .brand-logo,
  .brand-logo-footer {
    width: 126px;
  }

  .visual-chip {
    font-size: 0.6rem;
    padding: 6px 10px;
  }

  .chip-side {
    top: 64px;
  }

  .data-panel {
    display: none;
  }

  .photo-sources {
    font-size: 0.68rem;
  }

  .stats-strip article,
  .insight-band article,
  .card,
  .story-card,
  .capability-list,
  .resource-card {
    padding: 20px;
  }

  .resource-row {
    grid-template-columns: 1fr;
  }

  .window-card {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    min-height: 240px;
  }

  .visual-chip {
    display: none;
  }

  h1 {
    font-size: clamp(2.8rem, 12vw, 3.6rem);
  }

  .partner-logos {
    gap: 14px;
  }

  .quote-metrics {
    flex-direction: column;
    gap: 16px;
  }

  .quote-metric {
    align-items: flex-start;
    flex-direction: row;
    gap: 8px;
  }

  .talk-to-tradora-form .form-row {
    flex-direction: column;
  }
}

/* ══════════════ LOGIN LINKS ══════════════ */
.nav-link-login {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 180ms ease;
}

.nav-link-login:hover {
  opacity: 1;
}

/* ══════════════ TALK TO TRADORA FORM ══════════════ */
.talk-to-tradora-form {
  margin-top: 2rem;
  max-width: 480px;
}

.talk-to-tradora-form .form-heading {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text);
}

.talk-to-tradora-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.talk-to-tradora-form input {
  flex: 1;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.talk-to-tradora-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.talk-to-tradora-form input:focus {
  border-color: var(--mint);
  background: rgba(255, 255, 255, 0.1);
}

.talk-to-tradora-form button[type="submit"] {
  margin-top: 4px;
  width: 100%;
  justify-content: center;
}

/* ══════════════ CONTACT PAGE ══════════════ */
.contact-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 120px var(--page-pad) 60px;
  width: 100%;
}

.contact-copy {
  flex: 1;
  max-width: 460px;
}

.contact-form-page {
  flex: 1;
  max-width: 480px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
}

@media (max-width: 720px) {
  .contact-container {
    flex-direction: column;
    gap: 32px;
    padding-top: 100px;
  }

  .contact-copy,
  .contact-form-page {
    max-width: 100%;
  }
}
