/* ================================================================
   LUCIHOME — COMPLETE VISUAL REBUILD
   Direction: Magazine Editorial × Tech Produc
   Every component redesigned from zero
   Palette: #e7eaf6 | #a2a8d3 | #38598b | #113f67
   ================================================================ */


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


:root {
  --p1: #e7eaf6;
  --p2: #a2a8d3;
  --p3: #38598b;
  --p4: #113f67;

  --white:   #ffffff;
  --off:     #f8f9fd;
  --ink:     #0b1829;
  --ink-2:   #2c3e57;
  --ink-3:   #5a6e89;
  --ink-4:   #8a98b0;

  /* semantic aliases kept for HTML compatibility */
  --navy:       #113f67;
  --navy-2:     #0d2f4d;
  --navy-3:     #38598b;
  --gold:       #38598b;
  --gold-light: #a2a8d3;
  --gold-warm:  #c5cbdf;
  --cream:      #e7eaf6;
  --slate:      #5a6e89;
  --slate-dark: #2c3e57;
  --muted:      #8a98b0;

  /* spacing scale */
  --sp-1:  8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  40px;
  --sp-5:  64px;
  --sp-6:  96px;
  --sp-7:  128px;

  /* typography scale */
  --t-xs:   11px;
  --t-sm:   13px;
  --t-md:   15px;
  --t-lg:   18px;
  --t-xl:   24px;

  /* radius */
  --r-xs:  4px;
  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  40px;
  --r-full: 9999px;

  /* motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.4, 0, 1, 1);
}

/* ── KEYFRAMES ──────────────────────────────────────────────────── */

@keyframes heartBeat {
  0%   { transform: scale(1); }
  14%  { transform: scale(1.07); }
  28%  { transform: scale(1); }
  42%  { transform: scale(1.07); }
  70%  { transform: scale(1); }
}

@keyframes backInDown {
  0%   { transform: translateY(-800px) scale(0.68); opacity: 0; }
  80%  { transform: translateY(0) scale(0.68); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes backOutUp {
  0%   { transform: scale(1); opacity: 1; }
  20%  { transform: translateY(0) scale(0.68); opacity: 0.8; }
  100% { transform: translateY(-800px) scale(0.68); opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity:1; transform:scale(1); }
  50%       { opacity:.35; transform:scale(.72); }
}

@keyframes rotateRing {
  to { transform:rotate(360deg); }
}

@keyframes slideUp {
  from { opacity:0; transform:translateY(48px); }
  to   { opacity:1; transform:translateY(0); }
}

@keyframes lineGrow {
  from { transform:scaleX(0); }
  to   { transform:scaleX(1); }
}

@keyframes countFloat {
  0%,100% { transform:translateY(0); }
  50%     { transform:translateY(-8px); }
}

/* ── BASE ───────────────────────────────────────────────────────── */
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: "Outfit", sans-serif;
  font-size: var(--t-md);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Clean slate — no background pseudo-elements */
body::before, body::after { display:none; }

/* ── NAVIGATION ─────────────────────────────────────────────────── */
/* Completely different: Edge-to-edge, no float, no pill, no border-radius */
nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 1000;
  height: 60px;
  display: flex;
  align-items: center;
  padding-inline: var(--sp-5);
  gap: var(--sp-4);
  transform: none;
  top: 0; left: 0; right: 0; width: 100%; max-width: 100%;
  border-radius: 0;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(17,63,103,0.08);
  box-shadow: 0 1px 0 rgba(17,63,103,0.04);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--p4);
  text-decoration: none;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.logo span { color: var(--p3); }

.nav-status {
  flex: 1;
  text-align: center;
  font-size: var(--t-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
}

.nav-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding-inline: 20px;
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--white);
  background: var(--p4);
  border: none;
  border-radius: var(--r-sm);
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover { background: var(--p3); transform: translateY(-1px); }

/* ── NAV DROPDOWN ───────────────────────────────────────────────── */
.nav-dropdown { position: relative; }

.nav-dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 216px;
  background: var(--white);
  border: 1px solid rgba(17,63,103,0.1);
  border-radius: var(--r-md);
  box-shadow: 0 20px 60px rgba(17,63,103,0.14), 0 4px 16px rgba(17,63,103,0.07);
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: flex; }

.nav-dropdown-menu a {
  display: block;
  padding: 9px 14px;
  border-radius: var(--r-sm);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown-menu a:hover {
  background: var(--p1);
  color: var(--p4);
}

/* ── HERO — Magazine full-bleed, centered editorial ─────────────── */
/* Completely different: single column centered, no globe on right, no floating pill nav */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px var(--sp-5) var(--sp-5);
  overflow: hidden;
  /* Gradient mesh background — not blobs */
  background:
    linear-gradient(135deg, var(--p1) 0%, var(--white) 50%, var(--p1) 100%);
  grid-template-columns: unset;
  gap: 0;
}

/* Large geometric accent — not a blob */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(162,168,211,0.35) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
  border-radius: 0;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p2), transparent);
  z-index: 1;
}

.hero-bg, .hero-grid { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: backInDown 0.9s var(--ease-out) both;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: var(--sp-4);
  padding: 6px 16px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p3);
  background: rgba(56,89,139,0.08);
  border: 1px solid rgba(56,89,139,0.18);
  border-radius: var(--r-full);
}

.hero-label::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--p3);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(56,89,139,0.18);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* h1 — completely different sizing and treatment */
h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.5rem, 8vw, 8rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--p4);
  margin-bottom: var(--sp-3);
  max-width: 900px;
}

h1 em {
  font-style: italic;
  color: var(--p3);
}

.hero-sub {
  max-width: 560px;
  color: var(--ink-2);
  font-size: var(--t-lg);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS — New shape, new treatment ─────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding-inline: var(--sp-4);
  font-size: var(--t-md);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: none;
  transition: all 0.25s var(--ease-out);
}

.btn-primary {
  background: var(--p4);
  color: var(--white);
  border-radius: var(--r-full);
  box-shadow: 0 2px 0 rgba(0,0,0,0.12), 0 8px 24px rgba(17,63,103,0.22);
}

.btn-primary:hover {
  background: var(--p3);
  transform: translateY(-2px);
  box-shadow: 0 4px 0 rgba(0,0,0,0.1), 0 16px 32px rgba(56,89,139,0.3);
  animation: heartBeat 0.6s ease;
}

.btn-secondary {
  background: transparent;
  color: var(--p4);
  border-radius: var(--r-full);
  border: 1.5px solid rgba(17,63,103,0.25);
}

.btn-secondary:hover {
  background: var(--p1);
  border-color: var(--p3);
  color: var(--p3);
  transform: translateY(-2px);
}

/* ── HERO STATS — Completely different: inline strip ────────────── */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: var(--sp-5);
  border-top: 1px solid rgba(17,63,103,0.1);
  border-bottom: 1px solid rgba(17,63,103,0.1);
  width: 100%;
  max-width: 600px;
}

.hero-stats > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-3) var(--sp-3);
  border-right: 1px solid rgba(17,63,103,0.1);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-top: none;
  border-bottom: none;
  border-left: none;
}

.hero-stats > div:last-child { border-right: none; }

.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--p4);
}

.stat-label {
  margin-top: 6px;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ── LAUNCH COUNTDOWN — Dark panel, different ───────────────────── */
.launch-countdown {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-3);
  max-width: 560px;
  width: 100%;
  background: var(--p4);
  border: none;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(17,63,103,0.25);
}

.launch-countdown-title {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p2);
  margin-bottom: var(--sp-2);
  text-align: center;
}

.launch-countdown p {
  color: #ffffff !important;
}

.launch-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 6px;
}

.launch-countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-2) var(--sp-1);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--r-sm);
}

.launch-countdown-number {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  animation: countFloat 4s ease-in-out infinite;
}

.launch-countdown-label {
  display: block;
  margin-top: 5px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.launch-countdown-ended {
  color: var(--white);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

/* ── BETA PILL ───────────────────────────────────────────────────── */
.beta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: var(--sp-2);
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.2);
  color: #15803d;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.beta-pill::before {
  content: "";
  width: 6px; height: 6px;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22,163,74,0.15);
}

/* ── HERO VISUAL — Becomes a decorative panel, no globe ─────────── */
.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 40%;
  display: none; /* hidden on centered hero */
  pointer-events: none;
}

.globe-container {
  position: relative;
  width: 440px; height: 440px;
}

.globe {
  position: absolute;
  inset: 70px;
  border-radius: var(--r-xl);
  background: linear-gradient(145deg, rgba(231,234,246,0.9), rgba(162,168,211,0.3));
  border: 1px solid rgba(162,168,211,0.4);
  box-shadow: 0 32px 80px rgba(17,63,103,0.18);
}

.globe::before {
  content: "Global Network";
  position: absolute;
  top: 18px; left: 18px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.globe::after {
  content: "50+";
  position: absolute;
  bottom: 14px; right: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--p3);
}

.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(162,168,211,0.2);
  animation: rotateRing 24s linear infinite;
}

.globe-ring:nth-child(2) { width:400px; height:400px; left:20px; top:20px; }
.globe-ring:nth-child(3) { width:440px; height:440px; left:0; top:0; animation-duration:40s; animation-direction:reverse; }

.dot {
  position: absolute;
  padding: 7px 13px;
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--p4);
  border: 1px solid rgba(162,168,211,0.35);
  box-shadow: 0 4px 16px rgba(17,63,103,0.1);
  font-size: 11px;
  font-weight: 700;
}

.dot::after { display:none; }
.dot-1 { top:80px; left:10px; }
.dot-1::before { content:"London"; }
.dot-2 { top:120px; right:0; }
.dot-2::before { content:"Dubai"; }
.dot-3 { bottom:160px; left:55px; }
.dot-3::before { content:"Lisbon"; }
.dot-4 { bottom:75px; right:40px; }
.dot-4::before { content:"Miami"; }
.dot-5 { top:225px; left:180px; background:var(--p3); color:var(--white); border-color:var(--p3); }
.dot-5::before { content:"AI"; }

/* ── SECTIONS — New rhythm system ──────────────────────────────── */
section {
  position: relative;
  padding: var(--sp-7) var(--sp-5);
}

/* No decorative bar — section-tag handles visual hierarchy */
section:not(.hero)::before { display: none; }

.section-tag {
  display: inline-block;
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p3);
  margin-bottom: var(--sp-2);
  padding: 0;
  background: transparent;
  border: none;
}

h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--p4);
  margin-bottom: var(--sp-2);
  max-width: 820px;
}

h2 em { font-style: italic; color: var(--p3); }

.section-sub {
  max-width: 580px;
  color: var(--ink-2);
  font-size: var(--t-md);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  font-weight: 400;
}

/* ── PROBLEMS — New treatment: dark bg, oversized text rows ─────── */
/* Completely different: no card boxes, just content rows */
.problems {
  background: var(--p4);
  border-radius: 0;
  margin-top: 0;
  padding: var(--sp-7) var(--sp-5);
}

.problems .section-tag { color: var(--p2); }
.problems h2 { color: var(--white); }
.problems .section-sub { color: rgba(255,255,255,0.55); }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.problem-card {
  min-height: auto;
  padding: var(--sp-5) var(--sp-4);
  background: var(--p4);
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: visible;
  transition: background 0.25s ease;
  position: relative;
}

.problem-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: var(--sp-4); right: var(--sp-4);
  height: 1px;
  background: rgba(255,255,255,0.07);
}

.problem-card:nth-child(1) { background: rgba(56,89,139,0.4); }
.problem-card:nth-child(1) .problem-title,
.problem-card:nth-child(1) .problem-text { color: var(--white); }
.problem-card:nth-child(2) { transform: none; }
.problem-card:hover { background: rgba(255,255,255,0.05); transform: none; }
.problem-card:nth-child(2):hover { transform: none; }

.problem-icon {
  display: block;
  width: auto; height: auto;
  font-size: 2rem;
  margin-bottom: var(--sp-3);
  background: none;
  border-radius: 0;
}

.problem-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: var(--sp-2);
  color: var(--white);
  letter-spacing: -0.02em;
}

.problem-text {
  font-size: var(--t-sm);
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* ── STEPS — Timeline style, not grid cards ─────────────────────── */
/* Completely different: numbered with connecting line, stacked list */
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  position: relative;
}

/* Connecting top line */
.steps::before {
  content: "";
  position: absolute;
  top: 27px;
  left: calc(16.66% + 0px);
  right: calc(16.66% + 0px);
  height: 1px;
  background: linear-gradient(90deg, var(--p2), var(--p3), var(--p2));
  transform-origin: left;
  animation: lineGrow 1s var(--ease-out) 0.3s both;
  z-index: 0;
}

.step {
  padding: 0 var(--sp-4) var(--sp-5) var(--sp-4);
  border-right: none;
  background: transparent;
  color: var(--ink);
  position: relative;
  z-index: 1;
  transition: none;
}

.step:hover { background: transparent; }

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  background: var(--p4);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto var(--sp-3);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 1px var(--p2), 0 8px 24px rgba(17,63,103,0.2);
  line-height: 1;
}

.step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--p4);
  line-height: 1.1;
  margin-bottom: var(--sp-2);
  text-align: center;
}

.step-text {
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--ink-2);
  text-align: center;
}

/* ── BENEFITS — New split: text left, feature list right ────────── */
.benefits {
  background: var(--p1);
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: start;
  max-width: 1200px;
  margin-inline: auto;
}

.benefit-list {
  display: flex;
  flex-direction: column;
}

/* Completely different: horizontal rule separators, no card boxes */
.benefit-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--sp-2);
  align-items: start;
  padding: var(--sp-3) 0;
  border-top: 1px solid rgba(17,63,103,0.1);
  background: none;
  border-radius: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  box-shadow: none;
  transition: background 0.2s, transform 0.2s;
}

.benefit-item:last-child { border-bottom: 1px solid rgba(17,63,103,0.1); }

.benefit-item:hover {
  background: rgba(255,255,255,0.6);
  transform: none;
  border-color: rgba(17,63,103,0.1);
  box-shadow: none;
}

.benefit-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  background: var(--p4);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: none;
}

.benefit-title {
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--p4);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.benefit-text {
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--ink-2);
}

/* ── MOCKUP — Redesigned: Mac-style browser window ──────────────── */
.mockup-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(17,63,103,0.12);
  box-shadow: 0 2px 0 rgba(17,63,103,0.06), 0 32px 80px rgba(17,63,103,0.14);
  transform: none;
}

/* Browser chrome bar */
.mockup-header {
  height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--p1);
  border-bottom: 1px solid rgba(17,63,103,0.1);
}

.mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.9;
}

.mockup-body { padding: 20px; background: var(--white); }

/* Stats row: clean, card-less */
.mockup-stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: rgba(17,63,103,0.08);
  border: 1px solid rgba(17,63,103,0.08);
  border-radius: var(--r-sm);
  overflow: hidden;
  margin-bottom: var(--sp-2);
}

.mockup-stat {
  padding: 14px 12px;
  background: var(--white);
  text-align: center;
  border: none;
  border-radius: 0;
}

.mockup-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--p3);
  display: block;
}

.mockup-stat-label {
  display: block;
  margin-top: 3px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* Listing rows */
.mockup-listing {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 12px;
  margin-bottom: 1px;
  background: var(--off);
  border-radius: var(--r-xs);
  border: none;
  transition: background 0.18s;
}

.mockup-listing:hover { background: var(--p1); }

.mockup-img {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  background: var(--p1);
  font-size: 18px;
}

.mockup-listing-title { font-size: 12.5px; font-weight: 700; color: var(--p4); margin-bottom: 2px; }
.mockup-listing-sub { font-size: 10.5px; color: var(--ink-3); }
.mockup-listing-price { font-family: "Cormorant Garamond", serif; font-size: 1.1rem; font-weight: 700; color: var(--p3); }

/* ── FOOTER SIMPLE ──────────────────────────────────────────────── */
footer {
  background: var(--p4);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin: 0;
  border-radius: 0;
  border-top: 1px solid rgba(162,168,211,0.1);
}

.footer-logo { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.footer-logo span { color: var(--p2); }
.footer-text { font-size: var(--t-xs); color: rgba(255,255,255,0.4); }

/* ── FOOTER CORPORATE — Complete rebuild, 4-column editorial ─────── */
footer.footer-corporate {
  background: var(--p4);
  color: var(--white);
  padding: var(--sp-6) var(--sp-5) var(--sp-3);
  display: block;
  margin: 0;
  border-radius: 0;
  border-top: 2px solid var(--p3);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid rgba(162,168,211,0.12);
}

.footer-brand-text {
  margin-top: var(--sp-2);
  font-size: var(--t-sm);
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  max-width: 260px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p2);
  margin-bottom: var(--sp-2);
}

.footer-col a {
  display: block;
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.18s;
}

.footer-col a:hover { color: var(--p2); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
}

.footer-bottom .footer-text { font-size: 11px; color: rgba(255,255,255,0.3); }

.footer-legal-links { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.footer-legal-links a { font-size: 11px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.18s; }
.footer-legal-links a:hover { color: var(--p2); }

/* ── COOKIE BANNER — Completely new style: bottom card ──────────── */
.consent-banner {
  position: fixed;
  left: var(--sp-2); right: var(--sp-2); bottom: var(--sp-2);
  z-index: 9999;
  max-width: 940px;
  margin-inline: auto;

  display: none;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);

  background: var(--p4);
  border: 1px solid rgba(162,168,211,0.15);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(17,63,103,0.3);
}

.consent-banner.show { display: flex; animation: backInDown 0.4s var(--ease-out) both; }

.consent-text { font-size: var(--t-sm); color: rgba(255,255,255,0.7); line-height: 1.65; }
.consent-text strong { color: var(--white); }
.consent-text a { color: var(--p2) !important; text-decoration: underline !important; }

.consent-actions { display: flex; gap: 8px; flex-shrink: 0; }

.consent-btn {
  height: 36px;
  padding-inline: 18px;
  border: none;
  border-radius: var(--r-full);
  font-family: "Outfit", sans-serif;
  font-size: var(--t-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.consent-accept { background: var(--p2); color: var(--p4); }
.consent-accept:hover { background: var(--white); transform: translateY(-1px); }
.consent-reject { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.15); }
.consent-reject:hover { background: rgba(255,255,255,0.18); }

/* ── REVEAL ─────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── LEGAL PAGES ─────────────────────────────────────────────────── */
.legal-hero { padding: 140px var(--sp-3) var(--sp-4); max-width: 820px; margin-inline: auto; }
.legal-hero .section-tag { display: inline-block; }
.legal-hero h1 { margin-left: 0; max-width: 680px; }
.legal-updated { font-size: var(--t-xs); color: var(--ink-3); margin-top: -4px; }

.legal-body {
  max-width: 820px;
  margin-inline: auto;
  padding: 0 var(--sp-3) var(--sp-5);
  color: var(--ink-2);
  font-size: var(--t-md);
  line-height: 1.88;
}

.legal-body h2 { font-size: 1.5rem; max-width: none; margin-top: var(--sp-5); margin-bottom: var(--sp-2); letter-spacing: -0.02em; }
.legal-body h3 { font-family: "Outfit", sans-serif; font-size: 1rem; font-weight: 700; color: var(--p4); margin-top: var(--sp-3); margin-bottom: 10px; }
.legal-body p { margin-bottom: var(--sp-2); }
.legal-body ul { margin: 0 0 var(--sp-2) var(--sp-3); }
.legal-body li { margin-bottom: 10px; }

.legal-body table { width: 100%; border-collapse: collapse; margin: var(--sp-2) 0; font-size: var(--t-sm); }
.legal-body th, .legal-body td { text-align: left; padding: 10px 14px; border: 1px solid rgba(17,63,103,0.1); vertical-align: top; }
.legal-body th { background: var(--p1); font-weight: 700; font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }

.legal-toc { max-width: 820px; margin-inline: auto; padding: 0 var(--sp-3) var(--sp-2); }
.legal-toc-box { background: var(--p1); border: 1px solid rgba(17,63,103,0.1); border-left: 3px solid var(--p3); border-radius: var(--r-sm); padding: 20px var(--sp-3); }
.legal-toc-box div { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: var(--sp-2); }
.legal-toc-box a { display: block; font-size: var(--t-sm); color: var(--ink-2); text-decoration: none; margin-bottom: 8px; transition: color 0.15s; }
.legal-toc-box a:hover { color: var(--p3); }

.legal-back { max-width: 820px; margin-inline: auto; padding: 0 var(--sp-3); }

/* ── CONTACT ─────────────────────────────────────────────────────── */
.contact-hero { padding: 140px var(--sp-3) var(--sp-5); max-width: 900px; margin-inline: auto; text-align: center; }
.contact-hero .section-tag { display: inline-block; }
.contact-hero h1 { margin-inline: auto; text-align: center; }
.contact-section { padding: 0 var(--sp-3) var(--sp-6); }

.contact-layout { max-width: 1180px; margin-inline: auto; display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--sp-5); align-items: start; }

.contact-card { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-4); border: 1px solid rgba(17,63,103,0.1); box-shadow: 0 4px 24px rgba(17,63,103,0.07); }
.contact-card-note { font-size: var(--t-sm); color: var(--ink-3); margin-bottom: var(--sp-3); line-height: 1.65; }

.form-row { margin-bottom: 14px; }
.form-row label { display: block; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(17,63,103,0.12);
  background: var(--off);
  font-family: "Outfit", sans-serif;
  font-size: var(--t-md);
  color: var(--p4);
  outline: none;
  transition: border-color 0.18s, background 0.18s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--p3); background: var(--white); }
.form-row textarea { resize: vertical; min-height: 130px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit { width: 100%; margin-top: 6px; }

.info-block { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-3); border: 1px solid rgba(17,63,103,0.1); box-shadow: 0 4px 24px rgba(17,63,103,0.07); margin-bottom: 16px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(17,63,103,0.08); }
.info-row:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.info-icon { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--p1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; border: 1px solid rgba(17,63,103,0.1); }
.info-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 4px; }
.info-value { font-size: var(--t-md); color: var(--p4); font-weight: 600; }
.info-value a { color: var(--p4); text-decoration: none; }
.info-value a:hover { color: var(--p3); }
.map-frame { width: 100%; height: 200px; border: 0; border-radius: var(--r-md); margin-top: var(--sp-2); filter: grayscale(20%); }

.contact-bottom-cta { max-width: 1180px; margin-inline: auto; text-align: center; padding: var(--sp-5) var(--sp-3) 0; border-top: 1px solid rgba(17,63,103,0.1); }
.contact-bottom-cta h3 { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--p4); margin-bottom: 10px; }
.contact-bottom-cta p { color: var(--ink-3); font-size: var(--t-md); margin-bottom: var(--sp-3); }

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-hero { padding: 150px var(--sp-3) var(--sp-4); max-width: 780px; margin-inline: auto; text-align: center; }
.about-hero .section-tag { display: inline-block; }
.about-hero h1 { max-width: none; margin-inline: auto; text-align: center; }
.about-hero p { max-width: 540px; margin: var(--sp-2) auto 0; color: var(--ink-2); font-size: 1rem; line-height: 1.84; }

.story-section { max-width: 780px; margin-inline: auto; padding: var(--sp-5) var(--sp-3); }
.story-block { margin-bottom: var(--sp-5); }
.story-tag { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--p3); margin-bottom: 10px; padding: 4px 10px; background: rgba(56,89,139,0.07); border-radius: var(--r-full); }
.story-block h2 { font-size: 1.8rem; max-width: none; margin-bottom: var(--sp-2); }
.story-block p { color: var(--ink-2); font-size: var(--t-md); line-height: 1.9; margin-bottom: var(--sp-2); }

.pull-quote { max-width: 780px; margin-inline: auto; padding: 0 var(--sp-3) var(--sp-5); }
.pull-quote blockquote { font-family: "Cormorant Garamond", serif; font-size: 1.75rem; font-weight: 600; line-height: 1.44; color: var(--p4); border-left: 3px solid var(--p3); padding: 4px 0 4px var(--sp-3); margin: 0; }

.values-grid { max-width: 1180px; margin-inline: auto; padding: 0 var(--sp-3) var(--sp-6); display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
.value-card { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-4); border: 1px solid rgba(17,63,103,0.1); transition: transform 0.25s var(--ease-out), box-shadow 0.25s; }
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(17,63,103,0.12); }
.value-icon { font-size: 24px; margin-bottom: var(--sp-2); }
.value-title { font-family: "Cormorant Garamond", serif; font-size: 1.2rem; font-weight: 700; color: var(--p4); margin-bottom: 8px; }
.value-text { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.72; }

.about-cta { max-width: 780px; margin-inline: auto; text-align: center; padding: 0 var(--sp-3) var(--sp-6); }
.about-cta h3 { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--p4); margin-bottom: 10px; }
.about-cta p { color: var(--ink-3); font-size: var(--t-md); margin-bottom: var(--sp-3); }

/* ── FOUNDING MEMBER ─────────────────────────────────────────────── */
.fm-hero { padding: 150px var(--sp-3) var(--sp-2); max-width: 780px; margin-inline: auto; text-align: center; }
.fm-hero .section-tag { display: inline-block; }
.fm-hero h1 { max-width: none; margin-inline: auto; text-align: center; }
.fm-hero p { max-width: 540px; margin: var(--sp-2) auto 0; color: var(--ink-2); font-size: 1rem; line-height: 1.84; }

.fm-beta-banner { max-width: 820px; margin: var(--sp-4) auto 0; padding: var(--sp-3); background: rgba(22,163,74,0.06); border: 1px solid rgba(22,163,74,0.18); border-radius: var(--r-md); text-align: center; }
.fm-beta-banner-title { font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #15803d; margin-bottom: 8px; }
.fm-beta-banner p { max-width: none; margin: 0; color: var(--ink-2); font-size: var(--t-md); font-weight: 500; line-height: 1.7; }

.fm-explain { max-width: 780px; margin-inline: auto; padding: var(--sp-5) var(--sp-3) var(--sp-2); }
.fm-explain h2 { font-size: 1.8rem; max-width: none; margin-bottom: var(--sp-2); text-align: center; }
.fm-explain p { color: var(--ink-2); font-size: var(--t-md); line-height: 1.88; margin-bottom: var(--sp-2); text-align: center; }

.fm-steps { max-width: 1000px; margin: var(--sp-5) auto 0; padding: 0 var(--sp-3); display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }
.fm-step-card { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-4); border: 1px solid rgba(17,63,103,0.1); transition: transform 0.25s; }
.fm-step-card:hover { transform: translateY(-4px); }
.fm-step-num { font-family: "Cormorant Garamond", serif; font-size: 2.2rem; font-weight: 700; color: var(--p3); margin-bottom: 10px; opacity: 0.7; }
.fm-step-title { font-size: var(--t-md); font-weight: 700; color: var(--p4); margin-bottom: 6px; }
.fm-step-text { font-size: var(--t-sm); color: var(--ink-3); line-height: 1.7; }

.fm-categories { max-width: 1100px; margin: var(--sp-6) auto 0; padding: 0 var(--sp-3); }
.fm-categories h2 { font-size: 1.8rem; max-width: none; margin-bottom: 8px; text-align: center; }
.fm-categories-sub { text-align: center; color: var(--ink-3); font-size: var(--t-sm); max-width: 520px; margin: 0 auto var(--sp-4); line-height: 1.72; }

.fm-category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--sp-2); }
.fm-category-card { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-3) var(--sp-2); border: 1px solid rgba(17,63,103,0.1); text-align: center; transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s; }
.fm-category-card:hover { transform: translateY(-4px); border-color: var(--p3); box-shadow: 0 12px 36px rgba(17,63,103,0.12); }
.fm-category-icon { font-size: 22px; margin-bottom: 10px; }
.fm-category-name { font-weight: 700; color: var(--p4); font-size: var(--t-md); margin-bottom: 8px; }
.fm-category-spots { font-family: "Cormorant Garamond", serif; font-size: 2rem; font-weight: 700; color: var(--p3); }
.fm-category-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-top: 2px; }

.fm-note { max-width: 780px; margin: var(--sp-4) auto 0; padding: 0 var(--sp-3); text-align: center; font-size: var(--t-xs); color: var(--ink-3); line-height: 1.7; }
.fm-cta { max-width: 780px; margin-inline: auto; text-align: center; padding: var(--sp-6) var(--sp-3); }
.fm-cta h3 { font-family: "Cormorant Garamond", serif; font-size: 2rem; color: var(--p4); margin-bottom: 10px; }
.fm-cta p { color: var(--ink-3); font-size: var(--t-md); margin-bottom: var(--sp-3); }

/* ── DEVELOPERS ──────────────────────────────────────────────────── */
.compare-section { padding: var(--sp-6) var(--sp-5); background: var(--p1); }
.compare-inner { max-width: 1180px; margin-inline: auto; }

.compare-table { width: 100%; border-collapse: collapse; margin-top: var(--sp-4); font-size: var(--t-sm); }
.compare-table th { padding: 12px 16px; text-align: left; font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; border-bottom: 2px solid var(--p4); }
.compare-table th:first-child { color: var(--ink-3); width: 35%; }
.compare-table th:nth-child(2) { color: var(--ink-3); text-align: center; }
.compare-table th:nth-child(3) { color: var(--p3); text-align: center; }
.compare-table td { padding: 13px 16px; border-bottom: 1px solid rgba(17,63,103,0.08); color: var(--ink-2); font-weight: 500; }
.compare-table td:nth-child(2), .compare-table td:nth-child(3) { text-align: center; font-size: var(--t-lg); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: rgba(56,89,139,0.04); }

.beta-impact { padding: var(--sp-6) var(--sp-5); background: var(--p4); text-align: center; position: relative; overflow: hidden; }
.beta-impact::before { content: ""; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(162,168,211,0.1), transparent 60%); pointer-events: none; }
.beta-impact h2 { color: var(--white); max-width: none; margin-bottom: var(--sp-2); position: relative; }
.beta-impact h2 em { color: var(--p2); }
.beta-impact p { color: rgba(255,255,255,0.6); font-size: var(--t-md); line-height: 1.82; max-width: 580px; margin-inline: auto; margin-bottom: 14px; position: relative; }
.beta-impact .btn-primary { margin-top: var(--sp-3); display: inline-block; background: var(--p3); }
.beta-impact .btn-primary:hover { background: var(--p2); color: var(--p4); }
.beta-impact-stats { display: flex; justify-content: center; gap: var(--sp-5); margin-top: var(--sp-5); flex-wrap: wrap; position: relative; }
.beta-impact-stat-num { font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 700; color: var(--p2); line-height: 1; }
.beta-impact-stat-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-top: 8px; }

/* ── CALCULATOR ──────────────────────────────────────────────────── */
.calc-section { padding: var(--sp-6) var(--sp-3); background: var(--off); }
.calc-layout { max-width: 1180px; margin-inline: auto; display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); align-items: center; }
.calc-card { background: var(--white); border-radius: var(--r-lg); padding: var(--sp-4); border: 1px solid rgba(17,63,103,0.1); box-shadow: 0 8px 32px rgba(17,63,103,0.08); }
.calc-row { margin-bottom: var(--sp-2); }
.calc-row label { display: flex; justify-content: space-between; font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 7px; }
.calc-row label span { color: var(--p4); font-weight: 700; text-transform: none; letter-spacing: 0; font-size: var(--t-sm); }
.calc-row input[type="range"] { width: 100%; accent-color: var(--p3); }
.calc-result { margin-top: var(--sp-3); padding: var(--sp-3); border-radius: var(--r-md); background: var(--p4); text-align: center; }
.calc-result-label { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; display: block; }
.calc-result-num { font-family: "Cormorant Garamond", serif; font-size: 2.6rem; font-weight: 700; color: var(--p2); display: block; }
.calc-result-sub { margin-top: 6px; font-size: 11px; color: rgba(255,255,255,0.35); display: block; }

/* ── BLOG ────────────────────────────────────────────────────────── */
.blog-hero { padding: 150px var(--sp-5) var(--sp-5); max-width: 1180px; margin-inline: auto; }
.blog-hero h1 { max-width: 600px; margin-bottom: var(--sp-2); }
.blog-hero p { max-width: 500px; color: var(--ink-2); font-size: 1rem; line-height: 1.82; }

.blog-filters { max-width: 1180px; margin-inline: auto; padding: 0 var(--sp-5) var(--sp-4); display: flex; gap: 8px; flex-wrap: wrap; }
.blog-filter { padding: 6px 16px; border-radius: var(--r-full); border: 1.5px solid rgba(17,63,103,0.15); background: transparent; color: var(--ink-2); font-size: var(--t-sm); font-weight: 600; cursor: pointer; text-decoration: none; transition: all 0.2s; }
.blog-filter:hover, .blog-filter.active { background: var(--p4); color: var(--white); border-color: var(--p4); }

.blog-grid-section { max-width: 1180px; margin-inline: auto; padding: 0 var(--sp-5) var(--sp-6); }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--sp-3); }

.blog-card { background: var(--white); border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(17,63,103,0.1); text-decoration: none; display: flex; flex-direction: column; transition: transform 0.28s var(--ease-out), box-shadow 0.28s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(17,63,103,0.14); }

.blog-card-thumb { height: 190px; background: var(--p4); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.blog-card-thumb::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(162,168,211,0.2), transparent 55%); }
.blog-card-logo { position: relative; z-index: 1; font-family: "Cormorant Garamond", serif; font-size: 1.9rem; font-weight: 700; color: var(--white); }
.blog-card-logo span { color: var(--p2); }

.blog-card-body { padding: 22px var(--sp-3); display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.blog-card-tag { padding: 3px 10px; border-radius: var(--r-full); font-size: 9.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.tag-platform { background: rgba(56,89,139,0.1); color: var(--p3); }
.tag-industry { background: rgba(17,63,103,0.07); color: var(--ink-2); }
.tag-linkedin { background: rgba(10,102,194,0.08); color: #0a66c2; }
.tag-market   { background: rgba(22,163,74,0.08); color: #15803d; }
.blog-card-date { font-size: 11px; color: var(--ink-3); font-weight: 600; }
.blog-card-title { font-family: "Cormorant Garamond", serif; font-size: 1.35rem; font-weight: 700; color: var(--p4); line-height: 1.2; margin-bottom: 10px; }
.blog-card-excerpt { font-size: var(--t-sm); color: var(--ink-2); line-height: 1.7; margin-bottom: 18px; flex: 1; }
.blog-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: var(--t-sm); font-weight: 700; color: var(--p3); transition: gap 0.2s, color 0.2s; }
.blog-card:hover .blog-card-link { gap: 10px; color: var(--p4); }

/* ── ARTICLE ─────────────────────────────────────────────────────── */
.article-hero { padding: 150px var(--sp-3) 0; max-width: 780px; margin-inline: auto; }
.article-hero .section-tag { display: inline-block; }
.article-hero h1 { font-size: clamp(2.4rem,5vw,3.6rem); margin-top: var(--sp-2); margin-bottom: var(--sp-3); letter-spacing: -0.03em; max-width: none; }

.article-meta { display: flex; align-items: center; gap: var(--sp-2); flex-wrap: wrap; padding-bottom: var(--sp-3); border-bottom: 1px solid rgba(17,63,103,0.1); }
.article-tag { padding: 4px 12px; border-radius: var(--r-full); font-size: 9.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(56,89,139,0.1); color: var(--p3); }
.article-date, .article-read-time { font-size: var(--t-xs); color: var(--ink-3); font-weight: 600; }

.article-thumb { max-width: 780px; margin: var(--sp-4) auto; height: 300px; border-radius: var(--r-xl); background: var(--p4); display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; overflow: hidden; box-shadow: 0 24px 64px rgba(17,63,103,0.2); }
.article-thumb::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 40%, rgba(162,168,211,0.2), transparent 55%); }
.article-thumb-logo { position: relative; z-index: 1; font-family: "Cormorant Garamond", serif; font-size: 3rem; font-weight: 700; color: var(--white); }
.article-thumb-logo span { color: var(--p2); }
.article-thumb-icon { position: relative; z-index: 1; font-size: 5rem; filter: drop-shadow(0 0 24px rgba(162,168,211,0.5)); }
.article-thumb-caption { position: relative; z-index: 1; margin-top: var(--sp-2); font-size: 10px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.article-body { max-width: 780px; margin-inline: auto; padding: 0 var(--sp-3) var(--sp-5); color: var(--ink-2); font-size: var(--t-md); line-height: 1.92; }
.article-body p { margin-bottom: var(--sp-3); }
.article-body h2 { font-size: 1.7rem; max-width: none; margin-top: var(--sp-5); margin-bottom: var(--sp-2); letter-spacing: -0.02em; }
.article-body blockquote { font-family: "Cormorant Garamond", serif; font-size: 1.5rem; font-weight: 600; line-height: 1.45; color: var(--p4); border-left: 3px solid var(--p3); padding: 4px 0 4px var(--sp-3); margin: var(--sp-4) 0; }

.article-cta { max-width: 780px; margin-inline: auto; padding: 0 var(--sp-3) var(--sp-5); }
.article-cta-box { background: var(--p4); border-radius: var(--r-lg); padding: var(--sp-4); display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3); flex-wrap: wrap; box-shadow: 0 24px 64px rgba(17,63,103,0.22); }
.article-cta-text h3 { font-family: "Cormorant Garamond", serif; font-size: 1.65rem; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.article-cta-text p { color: rgba(255,255,255,0.6); font-size: var(--t-sm); line-height: 1.65; margin: 0; }

.article-nav { max-width: 780px; margin-inline: auto; padding: var(--sp-3) var(--sp-3) var(--sp-6); display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(17,63,103,0.1); }
.article-nav a { font-size: var(--t-sm); font-weight: 700; color: var(--p4); text-decoration: none; transition: color 0.18s; }
.article-nav a:hover { color: var(--p3); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1050px) {
  nav { padding-inline: var(--sp-3); }

  .hero { padding-inline: var(--sp-3); }

  .benefits-layout, .contact-layout { grid-template-columns: 1fr; }

  .problems-grid { grid-template-columns: 1fr; gap: 0; }
  .problem-card:nth-child(2) { transform: none; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .step-title, .step-text { text-align: left; }
  .step-num { margin-left: 0; margin-right: auto; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
  footer.footer-corporate { padding: var(--sp-4) var(--sp-3) var(--sp-2); }
  footer { padding: var(--sp-2) var(--sp-3); }

  .fm-steps { grid-template-columns: 1fr; }
  .fm-category-grid { grid-template-columns: 1fr 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .compare-section { padding: var(--sp-5) var(--sp-3); }
  .beta-impact { padding: var(--sp-5) var(--sp-3); }
  .blog-hero, .blog-filters, .blog-grid-section { padding-left: var(--sp-3); padding-right: var(--sp-3); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  nav { height: 56px; padding-inline: var(--sp-2); }
  .nav-status { display: none; }

  section { padding: var(--sp-5) var(--sp-2); }

  h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); letter-spacing: -0.03em; }

  .hero { padding: 100px var(--sp-2) var(--sp-4); }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; }

  .hero-stats { flex-direction: column; border: none; gap: 0; border-top: 1px solid rgba(17,63,103,0.1); }
  .hero-stats > div { border-right: none; border-bottom: 1px solid rgba(17,63,103,0.1); padding: var(--sp-2); }

  .mockup-card { transform: none; }

  footer { flex-direction: column; text-align: center; padding: var(--sp-2); }
  .footer-top { grid-template-columns: 1fr; }

  .consent-banner { flex-direction: column; align-items: flex-start; left: 8px; right: 8px; bottom: 8px; }
  .consent-actions { width: 100%; }
  .consent-btn { flex: 1; }

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

  .beta-impact-stats { flex-direction: column; align-items: center; gap: var(--sp-3); }

  .blog-grid { grid-template-columns: 1fr; }
  .fm-category-grid { grid-template-columns: 1fr 1fr; }
  .article-cta-box { flex-direction: column; padding: var(--sp-3); }
  .article-thumb { border-radius: var(--r-lg); }
}

/* ── REGISTER PAGE ──────────────────────────────────────────── */
.register-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--p1) 0%, var(--white) 50%, var(--p1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

.register-wrapper {
  width: 100%;
  max-width: 600px;
  background: var(--p4);
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 32px 80px rgba(17,63,103,0.25);
  border: 1px solid rgba(162,168,211,0.15);
}

.register-header {
  text-align: center;
  margin-bottom: 36px;
}

.register-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(162,168,211,0.12);
  border: 1px solid rgba(162,168,211,0.2);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 10px;
  color: var(--p2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 16px;
}

.register-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.register-title em { color: var(--p2); font-style: italic; }

.register-sub {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.72;
  max-width: 440px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field.full { grid-column: 1 / -1; }

.form-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(162,168,211,0.2);
  border-radius: 10px;
  padding: 12px 15px;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--p2);
  background: rgba(255,255,255,0.1);
}

.form-select option { background: var(--p4); color: var(--white); }

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

.submit-btn {
  width: 100%;
  margin-top: 10px;
  height: 52px;
  background: var(--p2);
  color: var(--p4);
  border: none;
  border-radius: 999px;
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: all 0.22s ease;
}

.submit-btn:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(17,63,103,0.25);
}

.form-note {
  margin-top: 14px;
  text-align: center;
  font-size: 11.5px;
  color: rgba(255,255,255,0.35);
  line-height: 1.65;
}

.success-box {
  display: none;
  text-align: center;
  padding: 28px 0;
}

.success-box.show { display: block; }

.success-icon { font-size: 52px; margin-bottom: 14px; }

.success-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  color: var(--p2);
  margin-bottom: 8px;
}

.success-text { color: rgba(255,255,255,0.55); line-height: 1.7; }

@media (max-width: 760px) {
  .register-wrapper { padding: 28px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .register-title { font-size: 2rem; }
}

/* ================================================================
   DEVELOPERS PAGE — NEW SECTIONS (added, nothing above was changed)
   New component anatomy per section: interview-style cards, diamond
   rail timeline, framed profile visual, bento AI grid, quote banner,
   tag-cloud audience, hexagon reputation list, hub/spoke ecosystem,
   annotated story rail, native accordion FAQ.
   ================================================================ */

/* ── COLLABORATION — interview-style Q&A cards ──────────────────── */
.collab-section { background: var(--off); }

.collab-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
}

.collab-card {
  position: relative;
  background: var(--white);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  border-left: 4px solid var(--p2);
  box-shadow: 0 2px 0 rgba(17,63,103,0.04), 0 20px 40px rgba(17,63,103,0.06);
  transition: transform 0.25s var(--ease-out), border-color 0.25s ease, box-shadow 0.25s ease;
}

.collab-card:hover {
  transform: translateY(-6px);
  border-left-color: var(--p3);
  box-shadow: 0 2px 0 rgba(17,63,103,0.05), 0 28px 56px rgba(17,63,103,0.12);
}

.collab-q {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--p4);
  margin-bottom: 10px;
  line-height: 1.2;
}

.collab-a {
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--ink-2);
}

/* ── JOURNEY — diamond-marker vertical rail ──────────────────────── */
.journey-section { background: var(--white); }

.journey-rail {
  position: relative;
  max-width: 720px;
  padding-left: var(--sp-2);
}

.journey-rail::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 19px;
  width: 2px;
  background: linear-gradient(180deg, var(--p2), var(--p3), var(--p2));
}

.journey-item {
  position: relative;
  display: flex;
  gap: var(--sp-3);
  padding-bottom: var(--sp-5);
}

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

.journey-marker {
  position: relative;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--p4);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--p2), 0 10px 22px rgba(17,63,103,0.22);
  transform: rotate(45deg);
  z-index: 1;
}

.journey-marker span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-45deg);
  color: var(--white);
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1rem;
}

.journey-content { padding-top: 4px; }

.journey-title {
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--p4);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.journey-text {
  font-size: var(--t-sm);
  line-height: 1.75;
  color: var(--ink-2);
}

/* ── DEVELOPER PROFILE — framed visual + checklist (dark) ────────── */
.profile-section { background: var(--p4); }
.profile-section .section-tag { color: var(--p2); }
.profile-section h2 { color: var(--white); }
.profile-section .section-sub { color: rgba(255,255,255,0.6); }

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.profile-image-frame {
  padding: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.profile-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
}

.profile-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
}

.profile-check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 15px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 500;
}

.profile-check-mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--p2);
  color: var(--p4);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── AI SECTION — bento grid ─────────────────────────────────────── */
.ai-section { background: var(--white); }

.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.ai-tile {
  background: var(--off);
  border: 1px solid rgba(17,63,103,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.ai-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(17,63,103,0.12);
}

.ai-tile:first-child {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--p4), var(--p3));
}

.ai-tile:first-child .ai-tile-title,
.ai-tile:first-child .ai-tile-text { color: var(--white); }
.ai-tile:first-child .ai-tile-text { color: rgba(255,255,255,0.7); }

.ai-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  background: linear-gradient(135deg, var(--p3), var(--p4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: var(--sp-2);
}

.ai-tile:first-child .ai-tile-icon { background: rgba(255,255,255,0.15); }

.ai-tile-title {
  font-size: var(--t-md);
  font-weight: 700;
  color: var(--p4);
  margin-bottom: 6px;
}

.ai-tile-text {
  font-size: var(--t-sm);
  line-height: 1.7;
  color: var(--ink-2);
}

/* ── QUOTE BANNER — emotional statement ──────────────────────────── */
.quote-banner {
  background: linear-gradient(135deg, var(--p4), var(--p3));
  text-align: center;
  padding: var(--sp-6) var(--sp-5);
}

.quote-banner blockquote {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.25;
  color: var(--white);
  max-width: 780px;
  margin: 0 auto;
}

.quote-banner cite {
  display: block;
  font-style: normal;
  font-size: var(--t-sm);
  color: var(--p1);
  margin-top: var(--sp-3);
  letter-spacing: 0.02em;
}

/* ── BUYERS — tag-cloud audience chips ───────────────────────────── */
.buyers-section { background: var(--off); }

.buyers-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.buyer-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--r-full);
  border: 1.5px solid var(--p2);
  background: var(--white);
  color: var(--p4);
  font-weight: 600;
  font-size: var(--t-md);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.buyer-chip.large { font-size: var(--t-lg); padding: 18px 28px; border-color: var(--p3); }

.buyer-chip:hover {
  background: var(--p4);
  border-color: var(--p4);
  color: var(--white);
  transform: translateY(-3px);
}

/* ── REPUTATION — hexagon icon list ──────────────────────────────── */
.reputation-section { background: var(--p1); }

.reputation-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
  align-items: center;
}

.reputation-statement {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--p4);
  line-height: 1.2;
  margin-bottom: var(--sp-3);
}

.reputation-lead {
  font-size: var(--t-md);
  line-height: 1.8;
  color: var(--ink-2);
}

.reputation-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.reputation-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.reputation-hex {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  background: var(--p4);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.reputation-label {
  font-size: var(--t-md);
  font-weight: 600;
  color: var(--p4);
}

/* ── ECOSYSTEM — hub and spoke ────────────────────────────────────── */
.ecosystem-section { background: var(--p4); text-align: center; }
.ecosystem-section .section-tag { color: var(--p2); display: block; }
.ecosystem-section h2 { color: var(--white); margin-inline: auto; }
.ecosystem-section .section-sub { color: rgba(255,255,255,0.6); margin-inline: auto; text-align: center; }

.ecosystem-hub {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  color: var(--p4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
  margin: var(--sp-5) auto var(--sp-4);
  border: 4px solid var(--p2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  padding: 12px;
}

.ecosystem-nodes {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3) var(--sp-2);
  max-width: 900px;
  margin: 0 auto;
  padding-top: var(--sp-4);
}

.ecosystem-nodes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

.ecosystem-node {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 14px 20px;
  color: var(--white);
  font-size: var(--t-sm);
  font-weight: 600;
}

.ecosystem-node::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 50%;
  width: 1px;
  height: 24px;
  background: rgba(255,255,255,0.2);
}

/* ── STORY — annotated example rail ──────────────────────────────── */
.story-section { background: var(--white); }

.story-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--off);
  border: 1px solid rgba(17,63,103,0.08);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
}

.story-lead {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--p4);
  margin-bottom: var(--sp-3);
}

.story-line {
  position: relative;
  padding: 14px 0 14px 26px;
  margin-left: 6px;
  border-left: 2px solid var(--p2);
  font-size: var(--t-md);
  color: var(--ink-2);
  line-height: 1.7;
}

.story-line::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--p3);
}

.story-line:last-child {
  border-left: 2px solid var(--p3);
  font-weight: 700;
  color: var(--p4);
}

.story-line:last-child::before { background: var(--p4); }

/* ── FAQ — native accordion ───────────────────────────────────────── */
.faq-section { background: var(--off); }

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(17,63,103,0.12);
  padding: var(--sp-2) 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  font-size: var(--t-lg);
  font-weight: 700;
  color: var(--p4);
  padding: 8px 0;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--p3);
  color: var(--p3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after { content: "–"; transform: rotate(180deg); }

.faq-answer {
  padding: 4px 0 12px;
  font-size: var(--t-sm);
  line-height: 1.8;
  color: var(--ink-2);
}

/* ── RESPONSIVE — new sections ────────────────────────────────────── */
@media (max-width: 1050px) {
  .collab-grid { grid-template-columns: 1fr; }
  .profile-layout, .reputation-layout { grid-template-columns: 1fr; }
  .profile-checklist { grid-template-columns: 1fr 1fr; }
  .ai-grid { grid-template-columns: 1fr 1fr; }
  .ai-tile:first-child { grid-column: span 2; }
}

@media (max-width: 760px) {
  .collab-grid { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .ai-tile:first-child { grid-column: span 1; }
  .profile-checklist { grid-template-columns: 1fr; }
  .buyer-chip.large { font-size: var(--t-md); padding: 14px 22px; }
  .ecosystem-nodes::before { display: none; }
  .ecosystem-node::before { display: none; }
  .journey-rail::before { left: 19px; }
}

/* ================================================================
   ARCHITECTS PAGE — NEW ADDITIONS (appended, nothing above touched)
   ================================================================ */
 
/* ── SPLIT MEDIA (image + text side by side) ───────────────────── */
.split-media {
  max-width: 1180px;
  margin-inline: auto;
  padding: var(--sp-6) var(--sp-5);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-5);
  align-items: center;
}
.split-media.reverse .split-media-img { order: 2; }
.split-media-img img {
  width: 100%;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: 0 24px 60px rgba(17,63,103,0.18);
}
.split-media-text .section-tag { margin-bottom: var(--sp-2); }
.split-media-text h2 { margin-bottom: var(--sp-2); }
.split-media-text .section-sub { margin-bottom: var(--sp-3); }
 
/* ── "IMAGINE THIS" EXAMPLE CALLOUT ─────────────────────────────── */
.example-callout {
  background: var(--p1);
  border-left: 3px solid var(--p3);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-4);
  margin-top: var(--sp-3);
}
.example-callout-label {
  font-size: var(--t-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--p3);
  margin-bottom: 8px;
}
.example-callout p {
  font-size: var(--t-md);
  line-height: 1.85;
  color: var(--ink-2);
  margin: 0;
}
 
/* ── PROFILE TAGS (what your profile contains) ──────────────────── */
.profile-tags-wrap {
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(17,63,103,0.1);
}
.profile-tags-title {
  font-size: var(--t-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: var(--sp-2);
}
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-tag {
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--p4);
  background: var(--p1);
  border: 1px solid rgba(17,63,103,0.12);
  border-radius: var(--r-full);
  padding: 8px 16px;
  transition: transform 0.2s var(--ease-out), background 0.2s;
}
.profile-tag:hover { background: var(--p2); color: var(--white); transform: translateY(-2px); }
 
/* ── COLLABORATION BANNER (image with role breakdown) ───────────── */
.collab-banner {
  max-width: 1180px;
  margin: 0 auto var(--sp-5);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(17,63,103,0.18);
}
.collab-banner img { width: 100%; display: block; }
 
/* ── LONG-TERM ADVANTAGE BOX ─────────────────────────────────────── */
.advantage-box {
  max-width: 1180px;
  margin-inline: auto;
  background: var(--p4);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-4);
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: var(--sp-4);
  align-items: center;
}
.advantage-box .section-tag { color: var(--p2); }
.advantage-number {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.9;
}
.advantage-number span {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: var(--t-sm);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--p2);
  margin-top: 10px;
}
.advantage-box h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}
.advantage-box p {
  color: rgba(255,255,255,0.7);
  font-size: var(--t-md);
  line-height: 1.85;
}
 
/* ── EMOTIONAL SECTION ────────────────────────────────────────────── */
.emotional-section {
  max-width: 780px;
  margin-inline: auto;
  padding: var(--sp-6) var(--sp-3);
  text-align: center;
}
.emotional-section .section-tag { display: inline-block; }
.emotional-section blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--p4);
  margin: var(--sp-2) 0;
}
.emotional-section .emotional-sign {
  font-size: var(--t-sm);
  color: var(--ink-3);
  margin-top: var(--sp-2);
}
 
/* ── FAQ (native details/summary, no JS needed) ──────────────────── */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
}
.faq-item {
  border-bottom: 1px solid rgba(17,63,103,0.12);
  padding: var(--sp-2) 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--p4);
  padding: 8px 34px 8px 0;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 6px;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--p3);
  transition: transform 0.25s var(--ease-out);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  font-size: var(--t-md);
  color: var(--ink-2);
  line-height: 1.85;
  padding: 6px 34px 14px 0;
}
 
@media (max-width: 900px) {
  .split-media { grid-template-columns: 1fr; }
  .split-media.reverse .split-media-img { order: 0; }
  .advantage-box { grid-template-columns: 1fr; text-align: center; }
}
