/* ============ TOKENS ============ */
:root {
  /* Brand */
  --navy: #0f153c;
  --navy-2: #161c47;
  --navy-3: #1f2658;
  --navy-deep: #080b25;

  /* Warm neutrals (premium feel) */
  --bone: #f5f2ec;
  --bone-2: #ecE7dc;
  --paper: #fbfaf6;
  --white: #ffffff;

  /* Accent (very restrained, hairline-only) */
  --gold: #c9a96e;
  --gold-2: #b89968;

  /* Ink scale */
  --ink: #0f153c;
  --ink-2: #2a3060;
  --ink-3: #6b6f8a;
  --ink-4: #9498ad;
  --ink-5: #c6c9d4;

  /* Lines */
  --line: rgba(15, 21, 60, 0.10);
  --line-2: rgba(15, 21, 60, 0.06);
  --line-dark: rgba(255, 255, 255, 0.10);
  --line-dark-2: rgba(255, 255, 255, 0.18);

  --radius: 4px;
  --radius-sm: 2px;
  --radius-lg: 6px;

  --shadow-sm: 0 1px 2px rgba(15, 21, 60, 0.04);
  --shadow: 0 1px 2px rgba(15, 21, 60, 0.04), 0 12px 32px -16px rgba(15, 21, 60, 0.20);
  --shadow-lg: 0 24px 60px -24px rgba(15, 21, 60, 0.35);

  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Cormorant Garamond", "Times New Roman", serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  letter-spacing: -0.005em;
}

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
.hidden { display: none !important; }
.mono { font-family: var(--font-mono); letter-spacing: 0.08em; font-feature-settings: "ss01" on; }
.serif { font-family: var(--font-display); }

/* ============ TOP BAR ============ */
.topbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  background: rgba(251, 250, 246, 0.86);
  border-bottom: 1px solid var(--line-2);
}
.topbar-inner {
  max-width: 520px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
}
.brand-mini {
  display: flex; align-items: center; gap: 10px;
  font-size: 10px; color: var(--ink-2); font-weight: 600;
}
.brand-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18);
  animation: pulse 2.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.18); }
  50% { box-shadow: 0 0 0 6px rgba(201, 169, 110, 0.04); }
}
.lang-switch {
  display: flex; align-items: center;
  gap: 2px;
  padding: 3px;
  background: rgba(15, 21, 60, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 600;
  padding: 5px 11px;
  border-radius: 999px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.lang-btn.active { background: var(--navy); color: white; }

/* ============ MAIN LAYOUT ============ */
#app {
  max-width: 520px; margin: 0 auto;
  background: var(--paper);
}

.view { animation: viewIn 0.45s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes viewIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ HERO (DARK NAVY) ============ */
.hero {
  position: relative;
  background: var(--navy);
  color: white;
  padding: 36px 28px 48px;
  overflow: hidden;
}

.hero-decor {
  position: absolute; inset: 0; pointer-events: none;
  overflow: hidden;
}
.hero-decor svg { position: absolute; }

/* topo grid */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, black 0%, transparent 75%);
}
.hero-glow {
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 140%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.10) 0%, transparent 60%);
  pointer-events: none;
}

.hero-top {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
}
.hero-mark {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
}
.hero-mark-bar {
  width: 24px; height: 1px;
  background: var(--gold);
}
.hero-index {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.12em;
}

/* Logo lockup */
.lockup {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 12px 8px;
}
.lockup-logos {
  display: flex; align-items: center; gap: 22px;
  margin-bottom: 28px;
}
.lockup-logo {
  display: flex; align-items: center; justify-content: center;
}
.lockup-seymarin {
  height: 36px;
}
.lockup-seymarin img {
  height: 100%;
}
.lockup-divider {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4), transparent);
}
.lockup-volvo {
  height: 30px;
}
.lockup-volvo img {
  height: 100%;
  filter: brightness(0) invert(1);
}

.lockup-dealer {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.65);
  text-transform: uppercase;
  margin-bottom: 24px;
}
.lockup-dealer::before,
.lockup-dealer::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* Hero title */
.hero-title-wrap {
  position: relative;
  text-align: center;
  padding: 0 4px;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  text-wrap: balance;
  color: white;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}
.hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

/* Hero meta (badges) */
.hero-meta {
  position: relative;
  display: flex;
  margin-top: 32px;
  border-top: 1px solid var(--line-dark);
  padding-top: 18px;
}
.hero-meta-item {
  flex: 1;
  text-align: center;
  padding: 0 8px;
  position: relative;
}
.hero-meta-item + .hero-meta-item::before {
  content: "";
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 1px;
  background: var(--line-dark);
}
.hero-meta-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}
.hero-meta-value {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
}

/* ============ SECTION ============ */
.section {
  padding: 44px 28px 8px;
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.section-num {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.14em;
}
.section-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-line {
  flex: 1;
  height: 1px;
  margin: 0 14px;
  background: var(--line);
}

/* ============ ACTION CARDS ============ */
.actions { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.action-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 4px;
  position: relative;
  transition: padding 0.2s ease;
  border-bottom: 1px solid var(--line);
}
.action-card:last-child { border-bottom: 0; }
.action-card:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(15, 21, 60, 0.02);
}
.action-card:active { background: rgba(15, 21, 60, 0.04); }

.action-num {
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  width: 22px;
  flex-shrink: 0;
}
.action-icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
  transition: all 0.2s;
  background: white;
}
.action-card:hover .action-icon-wrap {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}
.action-icon-wrap svg { width: 18px; height: 18px; }

.action-body { flex: 1; min-width: 0; }
.action-eyebrow {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.14em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.action-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin-bottom: 2px;
}
.action-sub {
  font-size: 12.5px;
  color: var(--ink-3);
  font-weight: 400;
}
.action-arrow {
  flex-shrink: 0;
  color: var(--ink-4);
  transition: transform 0.25s ease, color 0.2s;
}
.action-card:hover .action-arrow { transform: translateX(4px); color: var(--navy); }
.action-arrow svg { width: 18px; height: 18px; }

/* ============ TEAM ============ */
.team { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.member-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 4px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: padding 0.2s ease, background 0.18s ease;
  position: relative;
}
.member-card:last-child { border-bottom: 0; }
.member-card:hover {
  padding-left: 12px;
  padding-right: 12px;
  background: rgba(15, 21, 60, 0.02);
}
.member-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.1em;
  width: 22px;
  flex-shrink: 0;
}
.avatar {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 16px;
  color: white;
  letter-spacing: 0.01em;
  background: var(--navy);
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
}
.avatar::after {
  content: ""; position: absolute; inset: -3px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: border-color 0.2s;
}
.member-card:hover .avatar::after { border-color: var(--gold); }

.member-body { flex: 1; min-width: 0; }
.member-name {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 3px;
}
.member-role {
  font-size: 11.5px;
  color: var(--ink-3);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.member-arrow {
  flex-shrink: 0;
  color: var(--ink-4);
  transition: transform 0.25s ease, color 0.2s;
}
.member-card:hover .member-arrow { transform: translateX(4px); color: var(--navy); }
.member-arrow svg { width: 18px; height: 18px; }

/* ============ FOOTER ============ */
.footer {
  margin-top: 56px;
  padding: 28px;
  border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  background: rgba(15, 21, 60, 0.02);
}
.footer-mark {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.18em;
  display: flex; align-items: center; gap: 12px;
}
.footer-mark::before,
.footer-mark::after {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}

/* ============ CARD VIEW ============ */
.view-card { padding: 20px 24px 40px; }

.card-topnav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.card-pageref {
  font-size: 10px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.back-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px;
  font-weight: 600;
  font-family: var(--font-mono);
  color: var(--ink);
  padding: 9px 16px 9px 9px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: var(--shadow-sm);
}
.back-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
  transform: translateX(-2px);
}
.back-btn-icon {
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(15, 21, 60, 0.06);
  border-radius: 50%;
  transition: background 0.2s;
}
.back-btn:hover .back-btn-icon {
  background: rgba(255, 255, 255, 0.18);
}
.back-btn-icon svg { width: 12px; height: 12px; }

/* Prominent back-to-home button (now at TOP) */
.bottom-back-btn {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  margin-bottom: 22px;
  padding: 16px 18px;
  background: var(--navy);
  color: white;
  border: 1px solid var(--navy);
  border-radius: 0;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  position: relative;
}
.bottom-back-btn > span:nth-child(2) { flex: 1; text-align: left; }
.back-btn-ref {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.14em;
  font-weight: 600;
}
.bottom-back-btn:hover {
  background: var(--navy-deep);
  border-color: var(--navy-deep);
}
.bottom-back-btn:active {
  transform: translateY(1px);
}
.bottom-back-btn .back-btn-icon {
  background: rgba(255, 255, 255, 0.14);
  transition: transform 0.25s ease;
}
.bottom-back-btn:hover .back-btn-icon {
  transform: translateX(-3px);
}
.bottom-back-btn .back-btn-icon svg { width: 13px; height: 13px; }

/* Profile card */
.profile-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 4px;
}

.profile-hero {
  position: relative;
  background: var(--navy);
  padding: 28px 24px 64px;
  color: white;
  overflow: hidden;
}
.profile-hero-decor {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent);
}
.profile-hero-glow {
  position: absolute;
  top: -40%; right: -20%;
  width: 80%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.profile-hero-top {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
.profile-stamp {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  padding: 4px 0;
}
.profile-stamp-bar {
  width: 18px; height: 1px;
  background: var(--gold);
}
.profile-stamp-num {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
}

.profile-identity {
  position: relative;
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 28px;
}
.profile-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: white;
  color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 500;
  flex-shrink: 0;
  position: relative;
}
.profile-avatar::after {
  content: "";
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.4);
}
.profile-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
  color: white;
}
.profile-role {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-hero-logos {
  position: relative;
  display: flex; align-items: center; gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line-dark);
}
.profile-hero-logos .lockup-volvo { height: 18px; }
.profile-hero-logos .lockup-divider { height: 18px; }
.profile-hero-logos .ph-text {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}

/* Body */
.profile-body {
  padding: 24px 24px 28px;
  background: white;
  margin-top: -32px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

.profile-actions {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 0;
  overflow: hidden;
}

.pa {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
  padding: 18px 6px;
  background: white;
  border-right: 1px solid var(--line);
  font-size: 10px;
  font-family: var(--font-mono);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
  transition: all 0.2s;
  text-align: center;
}
.pa:last-child { border-right: 0; }
.pa:hover {
  background: var(--navy);
  color: white;
}
.pa:active { background: var(--navy-deep); color: white; }
.pa svg { width: 18px; height: 18px; stroke-width: 1.5; }
.pa.pa-primary {
  background: var(--navy);
  color: white;
}
.pa.pa-primary:hover { background: var(--navy-deep); }
.pa.pa-whatsapp:hover { background: #128c47; color: white; }

/* Info rows */
.info-section {
  margin-top: 4px;
}
.info-heading {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  color: var(--ink-4);
  letter-spacing: 0.18em;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.info-heading-bar {
  flex: 1;
  height: 1px;
  background: var(--line);
}
.info-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.info-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: padding 0.18s ease, background 0.15s;
  border-radius: 0;
}
.info-row:hover {
  background: rgba(15, 21, 60, 0.02);
  padding-left: 8px;
  padding-right: 8px;
}
.info-row:last-child { border-bottom: 0; }
.info-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.info-icon svg { width: 18px; height: 18px; stroke-width: 1.5; }
.info-body { flex: 1; min-width: 0; }
.info-label {
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--ink-4);
  letter-spacing: 0.14em;
  font-weight: 600;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.info-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  word-break: break-word;
  letter-spacing: -0.005em;
}
.info-action {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-4);
  transition: color 0.2s, background 0.2s;
}
.info-action:hover { color: var(--navy); background: rgba(15, 21, 60, 0.05); }
.info-action svg { width: 14px; height: 14px; stroke-width: 1.7; }

/* CTA */
.profile-cta {
  margin-top: 24px;
  padding: 20px;
  background: var(--bone);
  border: 1px solid var(--line);
  text-align: center;
  position: relative;
}
.profile-cta::before {
  content: "";
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 28px; height: 1px;
  background: var(--gold);
}
.profile-cta-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-2);
  margin-bottom: 14px;
  line-height: 1.4;
  font-weight: 400;
}
.profile-cta-row {
  display: flex; gap: 8px; justify-content: center;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 10px 16px;
  border: 1px solid var(--navy);
  background: white;
  color: var(--navy);
  transition: all 0.18s;
}
.cta-btn:hover {
  background: var(--navy);
  color: white;
}
.cta-btn svg { width: 12px; height: 12px; stroke-width: 1.8; }
.cta-btn.cta-btn-primary {
  background: var(--navy);
  color: white;
}
.cta-btn.cta-btn-primary:hover {
  background: var(--navy-deep);
}

/* Toast */
.toast {
  position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy);
  color: white;
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  border: 1px solid var(--gold);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============ Responsive ============ */
@media (max-width: 380px) {
  .hero { padding: 28px 22px 40px; }
  .section { padding: 36px 22px 4px; }
  .hero-title { font-size: 30px; }
  .lockup-logos { gap: 16px; }
}
