/* ============================================
   DigitalWorldAB — Design System v2
   Brand:  Teal #006D7A | Navy #0F2D4A | Gold #C9A84C
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core brand */
  --brand:        #006D7A;
  --brand-dark:   #004F59;
  --brand-light:  #D0F0F4;
  --brand-glow:   #E8F8FA;

  /* Deep navy */
  --navy:         #0F2D4A;
  --navy-mid:     #1A3F63;
  --navy-light:   #EBF1F7;

  /* Gold accent */
  --gold:         #C9A84C;
  --gold-dark:    #A8892D;
  --gold-light:   #FBF5E6;
  --gold-glow:    rgba(201,168,76,0.15);

  /* Neutral */
  --white:        #FFFFFF;
  --gray-50:      #FAFAFA;
  --gray-100:     #F5F5F7;
  --gray-200:     #E8E8ED;
  --gray-400:     #86868B;
  --gray-600:     #6E6E73;
  --gray-800:     #1D1D1F;
  --black:        #000000;

  /* Typography */
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Shape */
  --radius:    14px;
  --radius-sm:  8px;
  --radius-xs:  6px;

  /* Shadow */
  --shadow-card:   0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover:  0 12px 48px rgba(0,0,0,0.12);
  --shadow-nav:    0 1px 0 rgba(0,0,0,0.08);
  --shadow-gold:   0 8px 32px rgba(201,168,76,0.25);

  /* Motion */
  --transition: 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

/* --- Skip Link (Accessibility) --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brand);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 16px; }

/* --- Typography --- */
h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
}
h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

.subhead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-600);
  font-weight: 400;
  line-height: 1.6;
  max-width: 640px;
}
.subhead--light {
  color: rgba(255,255,255,0.72);
}

.overline {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}
.overline--gold  { color: var(--gold); }
.overline--light { color: rgba(255,255,255,0.6); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section          { padding: 100px 0; }
.section--alt     { background: var(--gray-100); }
.section--brand   { background: var(--brand-light); }
.section--navy    { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy .overline { color: var(--gold); }
.section--gold    { background: var(--gold-light); }
.section--deep    {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.section--deep h2, .section--deep h3 { color: var(--white); }
.section--deep .overline { color: var(--gold); }

.text-center { text-align: center; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.86);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--gray-200);
  height: 56px;
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--shadow-nav);
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.nav__logo img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--gray-600);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav__links a:hover,
.nav__links a.active { color: var(--gray-800); font-weight: 500; }

.nav__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav__custom-btn {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: var(--gold-light);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 100px;
  padding: 6px 14px;
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__custom-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--brand) !important;
}
.nav__cta:hover { color: var(--brand-dark) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 28px;
  position: relative;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--gray-800);
  position: absolute; left: 4px;
  transition: var(--transition);
}
.nav__toggle span       { top: 13px; }
.nav__toggle span::before { content:''; top: -6px; }
.nav__toggle span::after  { content:''; top:  6px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  border-radius: 980px;
  padding: 13px 30px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--brand-dark);
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(0,109,122,0.35);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-mid);
  transform: scale(1.02);
}

.btn--secondary {
  background: transparent;
  color: var(--brand);
  border: 1.5px solid var(--brand);
}
.btn--secondary:hover {
  background: var(--brand);
  color: var(--white);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
}

.btn--ghost {
  background: transparent;
  color: var(--brand);
  padding: 8px 0;
  border-radius: 0;
  font-size: 1rem;
}
.btn--ghost:hover { color: var(--brand-dark); }
.btn--ghost::after {
  content: '\203A';
  font-size: 1.3em;
  line-height: 1;
  transition: transform var(--transition);
}
.btn--ghost:hover::after { transform: translateX(4px); }

.btn--sm { font-size: 0.85rem; padding: 9px 20px; }
.btn--lg { font-size: 1.1rem; padding: 16px 40px; }

/* --- Hero --- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,109,122,0.12) 0%, transparent 70%),
    linear-gradient(180deg, #EBF6F8 0%, #F5FAFB 40%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero__text {
  position: relative;
  z-index: 2;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .hero__accent {
  background: linear-gradient(135deg, var(--brand) 0%, var(--navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .subhead { margin: 0 0 40px; }
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Left-align buttons only inside the hero's text column */
.hero__text .hero__actions {
  justify-content: flex-start;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 6px 14px 6px 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  margin-bottom: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.hero__badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}
/* Float cards removed — replaced by cleaner hero design */

/* --- Hero Two-Column Grid --- */
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: 36px 20px 36px 0;
}

/* --- Hero Dashboard Illustration (CSS-only) --- */
.hero-viz {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05);
  padding: 20px 20px 24px;
  border: 1px solid var(--gray-200);
}
.hero-viz__header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
}
.hero-viz__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.hero-viz__dot--red    { background: #FF5F57; }
.hero-viz__dot--yellow { background: #FEBC2E; }
.hero-viz__dot--green  { background: #28C840; }
.hero-viz__label {
  margin-left: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-viz__chart {
  height: 90px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.hero-viz__bar {
  flex: 1;
  height: var(--bar-h, 50%);
  background: var(--brand-light);
  border-radius: 4px 4px 0 0;
}
.hero-viz__bar--accent { background: var(--brand); opacity: 0.7; }
.hero-viz__bar--gold   { background: var(--gold);  opacity: 0.6; }
.hero-viz__rows {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.hero-viz__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: var(--gray-50);
  border-radius: 8px;
}
.hero-viz__row-line {
  flex: 1;
  height: 7px;
  background: var(--gray-200);
  border-radius: 4px;
}
.hero-viz__row-line--short { flex: 0 0 56px; }
.hero-viz__row-pill {
  width: 40px; height: 18px;
  border-radius: 100px;
}
.hero-viz__row-pill--green { background: rgba(34,197,94,0.18); }
.hero-viz__row-pill--amber { background: rgba(251,191,36,0.22); }

/* Floating metric card (navy overlay) */
.hero-viz__metric {
  position: absolute;
  top: 8px;
  right: -28px;
  background: var(--navy);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 12px 40px rgba(15,45,74,0.28);
  min-width: 148px;
}
.hero-viz__metric-name {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
}
.hero-viz__metric-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
  line-height: 1;
}
.hero-viz__metric-change {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  margin-top: 5px;
}

/* Status chip (bottom-left) */
.hero-viz__chip {
  position: absolute;
  bottom: 4px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray-600);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  white-space: nowrap;
}
.hero-viz__chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #28C840;
  animation: pulse-dot 2s ease infinite;
}

/* --- Ticker / Marquee --- */
.ticker-wrap {
  overflow: hidden;
  background: var(--navy);
  padding: 14px 0;
  position: relative;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
}
.ticker-wrap::before { left:0;  background: linear-gradient(90deg, var(--navy), transparent); }
.ticker-wrap::after  { right:0; background: linear-gradient(270deg, var(--navy), transparent); }

.ticker {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: ticker-scroll 28s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.ticker-item .ticker-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Product Cards Grid --- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.product-card__img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, var(--brand-light) 0%, #C3EBF0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  position: relative;
  overflow: hidden;
}
.product-card__img svg { width: 64px; height: 64px; opacity: 0.45; }
.product-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,109,122,0.08) 100%);
}

.product-card--navy .product-card__img {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: rgba(255,255,255,0.7);
}
.product-card--gold .product-card__img {
  background: linear-gradient(135deg, var(--gold-light) 0%, #F0E5C0 100%);
  color: var(--gold-dark);
}

.product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__tag {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 8px;
}
.product-card__tag--gold { color: var(--gold-dark); }
.product-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--gray-800);
}
.product-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card__price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
}
.product-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  padding: 4px 10px;
}
.badge--new      { background: #E6F9F0; color: #0A7A4B; }
.badge--soon     { background: var(--gold-light); color: var(--gold-dark); }
.badge--featured { background: var(--brand-light); color: var(--brand-dark); }

/* --- Feature Tiles --- */
.feature-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.feature-tile {
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all var(--transition);
}
.feature-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--brand-light);
}
.section--navy .feature-tile,
.section--deep .feature-tile {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
}
.section--navy .feature-tile:hover,
.section--deep .feature-tile:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
}
.section--navy .feature-tile p,
.section--deep .feature-tile p { color: rgba(255,255,255,0.6); }

.feature-tile__icon {
  width: 56px; height: 56px;
  margin: 0 auto 20px;
  background: var(--brand-light);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.feature-tile__icon--gold {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.feature-tile__icon svg { width: 26px; height: 26px; }
.section--navy .feature-tile__icon,
.section--deep .feature-tile__icon {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.feature-tile h3   { margin-bottom: 10px; }
.feature-tile p    { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; }

/* --- Stats Strip --- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
}
.stat {
  text-align: center;
  padding: 48px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.stat__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 400;
}

/* --- About Page --- */
.about-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-glow) 0%, var(--gray-100) 100%);
}
.about-hero .subhead { margin: 16px auto 0; }

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story-section--reverse { direction: rtl; }
.story-section--reverse > * { direction: ltr; }

.story-visual {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--brand-light) 0%, #C3EBF0 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand);
}
.story-visual svg { width: 80px; height: 80px; opacity: 0.35; }

.story-text h3 { margin-bottom: 16px; }
.story-text p  { font-size: 1rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 12px; }

/* --- Contact Page --- */
.contact-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--brand-glow) 0%, var(--gray-100) 100%);
}
.contact-hero .subhead { margin: 16px auto 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 0.95rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--gray-800);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,109,122,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

.contact-info-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; flex-direction: column; gap: 32px;
}
.contact-info-item { display: flex; gap: 16px; }
.contact-info-item__icon {
  width: 44px; height: 44px;
  background: var(--brand-light);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brand); flex-shrink: 0;
}
.contact-info-item__icon svg { width: 22px; height: 22px; }
.contact-info-item h4  { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.contact-info-item p,
.contact-info-item a   { font-size: 0.88rem; color: var(--gray-600); }
.contact-info-item a:hover { color: var(--brand); }

/* --- Product Detail Hero --- */
.product-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, var(--brand-glow) 0%, var(--gray-100) 100%);
}
.product-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.product-hero__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.product-hero__price { font-size: 1.5rem; font-weight: 700; color: var(--gray-800); margin: 24px 0; }

/* --- Feature List --- */
.feature-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  max-width: 600px; margin: 24px auto 0;
}
.feature-list li {
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.feature-list li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--brand);
  font-weight: 700;
}

/* ===== NEW COMPONENTS ===== */

/* --- Page Hero (Productions / Projects) --- */
.page-hero {
  padding: 140px 0 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, rgba(15,45,74,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy-light) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.page-hero--navy h1 { color: var(--white); }
.page-hero--navy .overline { color: var(--gold); }
.page-hero--navy .subhead  { color: rgba(255,255,255,0.7); }

.page-hero .subhead { margin: 16px auto 0; }

/* --- Productions: Section split --- */
.productions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

/* --- Video Cards (How to Use) --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.video-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.video-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.video-card__thumb {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; cursor: pointer;
}
.video-card__play {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all var(--transition);
}
.video-card__play svg { width: 22px; height: 22px; color: var(--white); margin-left: 3px; }
.video-card:hover .video-card__play {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
}
.video-card__label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}
.video-card__body { padding: 20px; }
.video-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.video-card__meta {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* --- Video Modal Overlay --- */
.video-modal {
  position: fixed; inset: 0;
  z-index: 9000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal__inner {
  width: min(860px, 92vw);
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.video-modal.open .video-modal__inner { transform: scale(1); }
.video-modal__close {
  position: absolute; top: 14px; right: 14px;
  z-index: 2; background: rgba(255,255,255,0.15);
  border: none; border-radius: 50%;
  width: 36px; height: 36px;
  cursor: pointer; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.video-modal__close:hover { background: rgba(255,255,255,0.3); }
.video-modal__placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2239 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white); gap: 16px; padding: 40px;
  text-align: center;
}
.video-modal__placeholder p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }

/* --- New Release Notification Popup --- */
.release-popup {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 8000;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 12px 48px rgba(0,0,0,0.18), 0 0 0 1px rgba(0,0,0,0.06);
  overflow: hidden;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s var(--transition-slow), opacity 0.5s;
}
.release-popup.show {
  transform: translateY(0);
  opacity: 1;
}
.release-popup__header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 16px 18px;
  display: flex; align-items: center; gap: 10px;
}
.release-popup__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
.release-popup__header-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  flex: 1;
}
.release-popup__close-btn {
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer; font-size: 1.1rem;
  line-height: 1; padding: 0;
  transition: color var(--transition);
}
.release-popup__close-btn:hover { color: var(--white); }
.release-popup__body { padding: 18px; }
.release-popup__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
  line-height: 1.3;
}
.release-popup__desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 14px;
}
.release-popup__tags {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px;
}
.release-popup__tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: 100px;
  background: var(--brand-light);
  color: var(--brand-dark);
}
.release-popup__actions {
  display: flex; gap: 8px;
}
.release-popup__actions .btn { flex: 1; font-size: 0.82rem; padding: 9px 14px; }

/* --- Projects Page --- */
.project-featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 20px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  color: var(--white);
  margin-top: 48px;
}
.project-featured h2 { color: var(--white); }
.project-featured p  { color: rgba(255,255,255,0.65); line-height: 1.7; }
.project-featured__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 16px;
}
.project-featured__visual {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.3);
}
.project-featured__visual svg { width: 80px; height: 80px; }
.project-featured__features {
  list-style: none;
  display: flex; flex-direction: column; gap: 10px;
  margin: 20px 0 28px;
}
.project-featured__features li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  padding-left: 22px; position: relative; line-height: 1.5;
}
.project-featured__features li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--gold); font-weight: 700;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.project-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  background: var(--white);
}
.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.project-card__img {
  height: 160px;
  display: flex; align-items: center; justify-content: center;
}
.project-card__img--navy { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); color: rgba(255,255,255,0.4); }
.project-card__img--gold { background: linear-gradient(135deg, var(--gold-light) 0%, #EDDFA8 100%); color: var(--gold-dark); }
.project-card__img--teal { background: linear-gradient(135deg, var(--brand-light) 0%, #A8DDE3 100%); color: var(--brand); }
.project-card__img svg { width: 52px; height: 52px; }
.project-card__body { padding: 22px; }
.project-card__title { font-size: 1rem; font-weight: 600; color: var(--gray-800); margin-bottom: 8px; }
.project-card__desc  { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 14px; }

/* --- Custom Request Form --- */
.custom-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
}
.custom-hero h1 { color: var(--white); }
.custom-hero .overline { color: var(--gold); }
.custom-hero .subhead  { color: rgba(255,255,255,0.7); }

.custom-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 20px 80px rgba(15,45,74,0.15);
  border: 1px solid var(--gray-200);
}

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

.form-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 8px 0;
}

.form-section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 4px;
}

.dynamic-fields {
  display: none;
  animation: fade-in-fields 0.35s ease;
}
.dynamic-fields.active { display: contents; }

@keyframes fade-in-fields {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.form-select-card-group {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 6px;
}
.form-select-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
}
.form-select-card:hover { border-color: var(--brand); background: var(--brand-glow); }
.form-select-card.selected {
  border-color: var(--brand);
  background: var(--brand-light);
}
.form-select-card__icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
  transition: background var(--transition);
}
.form-select-card.selected .form-select-card__icon {
  background: var(--brand);
  color: var(--white);
}
.form-select-card__icon svg { width: 18px; height: 18px; }
.form-select-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-600);
}
.form-select-card.selected .form-select-card__label { color: var(--brand-dark); }

.form-range-wrap { display: flex; gap: 10px; flex-wrap: wrap; }
.form-range-pill {
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-600);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  white-space: nowrap;
}
.form-range-pill:hover { border-color: var(--brand); color: var(--brand); }
.form-range-pill.selected {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}

.form-submit-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-note {
  font-size: 0.78rem;
  color: var(--gray-400);
  flex: 1;
}

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
}
.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card__quote {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 18px;
}
.testimonial-card__author {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  padding: 56px 0 32px;
  border-top: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 40px;
}
.footer__brand .nav__logo img { height: 32px; filter: brightness(0) invert(1); }
.footer__brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.6;
  max-width: 260px;
}
.footer__col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 10px; }
.footer__col ul a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__col ul a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a { color: rgba(255,255,255,0.3); transition: color var(--transition); }
.footer__socials a:hover { color: var(--gold); }
.footer__socials svg { width: 20px; height: 20px; }

/* --- Scroll Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
  .project-featured { grid-template-columns: 1fr; padding: 40px; }
}

@media (max-width: 900px) {
  .story-section,
  .story-section--reverse { grid-template-columns: 1fr; gap: 32px; direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-hero__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { text-align: center; }
  .hero .subhead { margin: 0 auto 40px; }
  .hero__text .hero__actions { justify-content: center; }
}

/* --- Nav collapses to dropdown panel at 960px --- */
@media (max-width: 960px) {
  .nav__logo img { height: 30px; }
  .nav__links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1002;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav__links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav__links li {
    width: 100%;
    border-bottom: 1px solid var(--gray-200);
  }
  .nav__links li:first-child { border-top: none; }
  .nav__links a {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    color: var(--navy);
    padding: 15px 24px;
  }
  .nav__links a:hover,
  .nav__links a.active {
    color: var(--brand);
    background: var(--brand-light);
    font-weight: 500;
  }
  .nav__toggle { display: block; }
  .nav__cta, .nav__custom-btn { display: none; }
}

/* --- Nav backdrop (injected by JS) ---
     z-index: 999 — must sit BELOW the nav stacking context (z-index: 1000)
     so the panel inside nav remains above the backdrop and fully clickable. */
.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  cursor: pointer;
}
.nav__backdrop.open { display: block; }

@media (max-width: 700px) {
  .hero { min-height: 70vh; padding: 90px 0 60px; }
  .product-grid, .productions-grid, .projects-grid, .video-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(even) { border-right: none; }
  .footer__grid { grid-template-columns: 1fr; gap: 24px; }
  .footer__brand { grid-column: auto; }
  .custom-form-wrap { padding: 28px 20px; }
  .form-select-card-group { grid-template-columns: repeat(2, 1fr); }
  .release-popup { width: calc(100vw - 32px); right: 16px; bottom: 16px; }
  .project-featured { padding: 28px; gap: 28px; }
  .form-submit-bar { flex-direction: column; align-items: stretch; }
  .form-submit-bar .btn { width: 100%; text-align: center; }
}

/* --- Print --- */
@media print {
  .nav, .nav__cta, .btn, .footer__socials, .hero__bg-glow,
  .ticker-wrap, .release-popup { display: none; }
  .hero { min-height: auto; padding: 40px 0; }
  body { font-size: 12pt; }
}

/* ===== WIZARD STYLES (custom-request.html) ===== */

/* Step indicator */
.wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}
.wizard-step {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.wizard-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--gray-400);
  font-size: 0.85rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.wizard-step__label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color var(--transition);
}
.wizard-step.active .wizard-step__num {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(0,109,122,0.15);
}
.wizard-step.active .wizard-step__label { color: var(--gray-800); font-weight: 600; }
.wizard-step.done .wizard-step__num {
  background: var(--navy);
  color: var(--gold);
}
.wizard-step.done .wizard-step__label { color: var(--gray-600); }
.wizard-connector {
  width: 60px; height: 2px;
  background: var(--gray-200);
  flex-shrink: 0;
  margin: 0 4px;
  transition: background var(--transition);
}
.wizard-connector.done { background: var(--navy); }

/* Wizard panels */
.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fade-in-fields 0.4s ease; }

/* Type card grid for step 1 */
.type-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.type-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: var(--white);
  position: relative;
}
.type-card:hover {
  border-color: var(--brand);
  background: var(--brand-glow);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}
.type-card.selected {
  border-color: var(--brand);
  background: var(--brand-light);
  box-shadow: 0 0 0 3px rgba(0,109,122,0.12);
}
.type-card__check {
  position: absolute; top: 10px; right: 10px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 0.65rem;
  display: none; align-items: center; justify-content: center;
}
.type-card.selected .type-card__check { display: flex; }
.type-card__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  color: var(--brand);
  transition: background var(--transition);
}
.type-card__icon svg { width: 24px; height: 24px; }
.type-card.selected .type-card__icon { background: var(--brand); color: var(--white); }
.type-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.type-card__desc {
  font-size: 0.76rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* Brief form sections */
.brief-section {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 20px;
}
.brief-section__title {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brief-section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--brand-light);
}

/* Checkbox group */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.checkbox-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 12px;
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.checkbox-pill input[type="checkbox"] { display: none; }
.checkbox-pill:has(input:checked),
.checkbox-pill.checked {
  background: var(--brand-light);
  border-color: var(--brand);
  color: var(--brand-dark);
  font-weight: 600;
}

/* Step 3 sign-up panel */
.signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.signup-panel {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px;
}
.signup-panel--primary {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(0,109,122,0.08);
}
.signup-panel__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.signup-panel__sub {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 20px;
  line-height: 1.5;
}
.request-recap {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.request-recap__icon {
  width: 44px; height: 44px;
  background: var(--gold);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  flex-shrink: 0;
}
.request-recap__icon svg { width: 22px; height: 22px; }
.request-recap__text { color: var(--white); }
.request-recap__type {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 3px;
}
.request-recap__name {
  font-size: 0.9rem;
  font-weight: 600;
}

.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.terms-row input[type="checkbox"] {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--brand);
}
.terms-row a { color: var(--brand); }

/* ===== TRACKER STYLES (my-requests.html) ===== */

/* Login gate */
.login-gate {
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
  padding: 64px 32px;
}
.login-gate__icon {
  width: 72px; height: 72px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--brand);
}
.login-gate__icon svg { width: 34px; height: 34px; }
.login-gate h2 { font-size: 1.5rem; margin-bottom: 10px; }
.login-gate p { color: var(--gray-600); margin-bottom: 28px; font-size: 0.95rem; }

.login-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Request tracker card */
.request-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.request-card__header {
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.request-card__meta { flex: 1; min-width: 200px; }
.request-card__ref {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.request-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 4px;
}
.request-card__date {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.status-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}
.status-badge--scoping { background: rgba(201,168,76,0.15); color: var(--gold-dark); }
.status-badge--review  { background: var(--brand-light); color: var(--brand-dark); }
.status-badge--build   { background: rgba(15,45,74,0.1); color: var(--navy); }
.status-badge--delivered { background: #E6F9F0; color: #0A7A4B; }

/* Progress bar */
.progress-track {
  padding: 0 28px 24px;
}
.progress-stages {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.progress-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.progress-stage::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.progress-stage:last-child::before { display: none; }
.progress-stage.done::before { background: var(--brand); }
.progress-stage__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-200);
  border: 2px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  color: var(--gray-400);
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}
.progress-stage.done .progress-stage__dot {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
}
.progress-stage.current .progress-stage__dot {
  background: var(--white);
  border-color: var(--gold);
  color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
  font-weight: 700;
}
.progress-stage__label {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
  white-space: nowrap;
}
.progress-stage.done .progress-stage__label { color: var(--brand); }
.progress-stage.current .progress-stage__label { color: var(--gold-dark); font-weight: 700; }

/* Request tabs */
.request-tabs {
  display: flex;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  background: var(--gray-50);
}
.request-tab {
  flex: 1;
  padding: 12px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-400);
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.request-tab:hover { color: var(--gray-800); }
.request-tab.active {
  color: var(--brand);
  border-bottom-color: var(--brand);
  background: var(--white);
}
.request-tab-panel { display: none; padding: 24px 28px; }
.request-tab-panel.active { display: block; }

/* Brief read-only display */
.brief-field {
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-100);
}
.brief-field:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.brief-field__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.brief-field__value {
  font-size: 0.9rem;
  color: var(--gray-800);
  line-height: 1.55;
}

/* Team updates timeline */
.update-timeline { display: flex; flex-direction: column; gap: 0; }
.update-item {
  display: flex;
  gap: 16px;
  padding-bottom: 24px;
  position: relative;
}
.update-item::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 32px;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
}
.update-item:last-child::before { display: none; }
.update-item:last-child { padding-bottom: 0; }
.update-item__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.update-item__dot--brand { background: var(--brand); color: var(--white); }
.update-item__dot--gold  { background: var(--gold); color: var(--navy); }
.update-item__dot--gray  { background: var(--gray-200); color: var(--gray-400); }
.update-item__dot svg { width: 14px; height: 14px; }
.update-item__body { flex: 1; }
.update-item__meta {
  font-size: 0.72rem;
  color: var(--gray-400);
  margin-bottom: 4px;
}
.update-item__text {
  font-size: 0.88rem;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  border: 1px solid var(--gray-200);
}

/* Message thread */
.message-thread { display: flex; flex-direction: column; gap: 12px; }
.message {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.55;
}
.message--client {
  align-self: flex-end;
  background: var(--brand);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.message--team {
  align-self: flex-start;
  background: var(--gray-100);
  color: var(--gray-800);
  border-bottom-left-radius: 4px;
}
.message__meta {
  font-size: 0.68rem;
  opacity: 0.65;
  margin-top: 4px;
  text-align: right;
}
.message--team .message__meta { text-align: left; }
.message-input-row {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.message-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
}
.message-input-row input:focus { border-color: var(--brand); }

/* Portal nav badge */
.nav__user-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 5px 12px 5px 8px;
}
.nav__user-avatar {
  width: 22px; height: 22px;
  background: var(--brand);
  border-radius: 50%;
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

@media (max-width: 700px) {
  .type-card-grid { grid-template-columns: repeat(2, 1fr); }
  .signup-grid { grid-template-columns: 1fr; }
  .progress-stage__label { display: none; }
  .request-card__header { flex-direction: column; }
}
@media (max-width: 480px) {
  .type-card-grid { grid-template-columns: 1fr 1fr; }
  .wizard-step__label { display: none; }
  .wizard-connector { width: 24px; }
}

/* ===== PORTAL LAYOUT (my-requests.html) ===== */

.portal-wrap {
  display: flex;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  background: var(--gray-50);
}

/* Sidebar */
.portal-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  padding: 32px 0 24px;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}

.portal-sidebar__brand {
  padding: 0 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.portal-sidebar__brand-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.portal-sidebar__user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.portal-sidebar__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.portal-sidebar__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.portal-sidebar__email {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
}

.portal-nav {
  flex: 1;
  padding: 0 12px;
}
.portal-nav__section {
  margin-bottom: 8px;
}
.portal-nav__label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 16px 8px 6px;
  display: block;
}
.portal-nav__link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}
.portal-nav__link svg {
  width: 17px; height: 17px;
  flex-shrink: 0;
  opacity: 0.7;
}
.portal-nav__link:hover {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.portal-nav__link.active {
  background: rgba(0,109,122,0.25);
  color: var(--brand-light);
  font-weight: 600;
}
.portal-nav__link.active svg { opacity: 1; }

.portal-nav__badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.6rem;
  font-weight: 800;
  border-radius: 100px;
  padding: 2px 7px;
}

.portal-sidebar__footer {
  padding: 20px 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.portal-sidebar__signout {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 8px 0;
  transition: color var(--transition);
}
.portal-sidebar__signout:hover { color: rgba(255,255,255,0.7); }
.portal-sidebar__signout svg { width: 15px; height: 15px; }

/* Main content area */
.portal-main {
  flex: 1;
  padding: 40px 48px;
  max-width: 900px;
  min-width: 0;
}

.portal-main__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.portal-main__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.portal-main__sub {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-top: 4px;
}

/* Status badge row */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.status-pill--active { background: #e8f5f6; color: var(--brand); }
.status-pill--pending { background: var(--gold-light); color: var(--gold-dark); }
.status-pill--done { background: #e8f5e8; color: #1a6e1a; }

/* Request card enhancements */
.request-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.request-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--gray-100);
  flex-wrap: wrap;
}
.request-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0;
}
.request-card__meta {
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 3px;
}

/* Portal empty state */
.portal-empty {
  text-align: center;
  padding: 80px 40px;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
}
.portal-empty__icon {
  width: 64px; height: 64px;
  background: var(--brand-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--brand);
}
.portal-empty__icon svg { width: 28px; height: 28px; }
.portal-empty h3 { font-size: 1.1rem; margin-bottom: 8px; }
.portal-empty p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 24px; }

/* Login gate (portal version) */
.portal-login-wrap {
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

/* Message items */
.update-timeline { display: flex; flex-direction: column; gap: 0; }
.update-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.update-item:last-child { border-bottom: none; }
.update-item__dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  margin-top: 2px;
}
.update-item__dot--team { background: var(--brand-light); color: var(--brand); }
.update-item__dot--system { background: var(--gray-100); color: var(--gray-500); }
.update-item__dot--gold { background: var(--gold-light); color: var(--gold-dark); }
.update-item__body {}
.update-item__meta { font-size: 0.72rem; color: var(--gray-400); margin-bottom: 4px; }
.update-item__meta strong { color: var(--gray-600); font-weight: 600; }
.update-item__text { font-size: 0.9rem; color: var(--gray-700); line-height: 1.6; }

.message-thread { display: flex; flex-direction: column; gap: 16px; }
.message {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.message--outgoing { flex-direction: row-reverse; }
.message__avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
}
.message__avatar--team { background: var(--brand); color: var(--white); }
.message__avatar--client { background: var(--gold); color: var(--navy); }
.message__bubble {
  max-width: 72%;
  padding: 11px 16px;
  border-radius: 16px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--gray-800);
}
.message--incoming .message__bubble {
  background: var(--gray-100);
  border-bottom-left-radius: 4px;
}
.message--outgoing .message__bubble {
  background: var(--brand-light);
  color: var(--brand-dark, #004F59);
  border-bottom-right-radius: 4px;
  text-align: right;
}
.message__time {
  font-size: 0.65rem;
  color: var(--gray-400);
  margin-top: 4px;
  display: block;
}
.message--outgoing .message__time { text-align: right; }

.message-compose {
  margin-top: 20px;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.message-compose input {
  flex: 1;
  padding: 10px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.875rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.message-compose input:focus { border-color: var(--brand); }
.message-compose button {
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background var(--transition);
}
.message-compose button:hover { background: var(--brand-dark, #004F59); }

/* Brief field rows inside tab */
.brief-display { display: flex; flex-direction: column; gap: 0; }
.brief-row {
  display: flex;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}
.brief-row:last-child { border-bottom: none; }
.brief-row__label {
  width: 180px;
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.brief-row__value {
  flex: 1;
  font-size: 0.9rem;
  color: var(--gray-800);
  line-height: 1.5;
}

/* Mobile sidebar */
@media (max-width: 860px) {
  .portal-wrap { flex-direction: column; margin-top: 70px; }
  .portal-sidebar {
    width: 100%;
    height: auto;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 16px;
    gap: 12px;
  }
  .portal-sidebar__brand { padding: 0; border: none; margin: 0; flex: 0 0 100%; }
  .portal-nav { padding: 0; display: flex; flex-wrap: wrap; gap: 4px; }
  .portal-nav__label { display: none; }
  .portal-nav__link { padding: 7px 12px; font-size: 0.8rem; }
  .portal-sidebar__footer { padding: 0; border: none; }
  .portal-main { padding: 24px 20px; }
  .brief-row { flex-direction: column; gap: 4px; }
  .brief-row__label { width: auto; }
}

/* ===== PLATFORM PAGE (platform.html) ===== */

/* Hero — dark navy, two-column layout */
.platform-hero {
  padding: 130px 0 90px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d3352 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.platform-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 600px at 70% 50%, rgba(0,109,122,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.platform-hero .overline { color: var(--gold); }
.platform-hero h1 { color: var(--white); }
.platform-hero .subhead { color: rgba(255,255,255,0.7); }

.platform-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Waitlist form — hero version (dark bg) */
.platform-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
}
.platform-form h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.platform-form .form-hint {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
}
.platform-form .form-group label {
  color: rgba(255,255,255,0.65);
  font-size: 0.78rem;
}
.platform-form .form-group input,
.platform-form .form-group select {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.platform-form .form-group input::placeholder { color: rgba(255,255,255,0.3); }
.platform-form .form-group input:focus,
.platform-form .form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}
.platform-form .form-group select option { background: var(--navy); color: var(--white); }
.platform-form .form-legal {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
  margin-top: 12px;
}

/* Form success message */
.platform-form__success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.platform-form__success-icon {
  width: 56px; height: 56px;
  background: rgba(0,109,122,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--gold);
  font-size: 1.4rem;
}
.platform-form__success p {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.5;
}

/* Repeat form — light version (section--deep bg) */
.platform-form--light {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  max-width: 520px;
  margin: 0 auto;
}
.platform-form--light .form-group label { color: rgba(255,255,255,0.6); }
.platform-form--light .form-group input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
}
.platform-form--light .form-group input::placeholder { color: rgba(255,255,255,0.3); }
.platform-form--light .form-group input:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.platform-form--light .form-legal { color: rgba(255,255,255,0.3); }

/* 9-tool grid — 3 columns */
.platform-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.platform-tools-grid .feature-tile {
  text-align: left;
  padding: 28px 24px;
}
.platform-tools-grid .feature-tile__icon {
  margin: 0 0 16px;
}
.platform-tools-grid .feature-tile h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.platform-tools-grid .feature-tile p {
  font-size: 0.82rem;
}
.platform-tools-grid__note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.88rem;
  color: var(--gray-400);
  font-style: italic;
}

/* Who it's for — feature list */
.platform-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.platform-feature-list li {
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.6;
}
.platform-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 1rem;
}

/* Gold section overrides for platform */
.section--gold .overline { color: var(--gold-dark); }
.section--gold h2, .section--gold h3 { color: var(--navy); }
.section--gold .subhead { color: var(--gray-600); }

/* Responsive */
@media (max-width: 960px) {
  .platform-hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .platform-tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .platform-hero { padding: 100px 0 64px; }
  .platform-tools-grid { grid-template-columns: 1fr; }
  .platform-form { padding: 28px 20px; }
}

/* ===== PRODUCT CARD PRICE INDICATOR ===== */
.product-card__price {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand);
  letter-spacing: 0.01em;
  margin: 8px 0 0;
}

/* ===== HOMEPAGE v2 — NEW COMPONENTS ===== */

/* --- Journey Grid (Three Acts) --- */
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}
.journey-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.journey-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.journey-card__step {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.journey-card__step::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: var(--brand);
  flex-shrink: 0;
}
.journey-card__icon {
  width: 52px;
  height: 52px;
  background: var(--brand-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.journey-card__icon--gold {
  background: var(--gold-light);
  color: var(--gold-dark);
}
.journey-card__icon--navy {
  background: var(--navy-light);
  color: var(--navy);
}
.journey-card__icon svg {
  width: 26px;
  height: 26px;
}
.journey-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  line-height: 1.3;
  margin-bottom: 12px;
}
.journey-card__body {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.journey-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 100px;
  padding: 5px 14px;
  align-self: flex-start;
  text-decoration: none;
  transition: all var(--transition);
}
.journey-card__badge--solved {
  background: var(--brand-light);
  color: var(--brand-dark);
}
.journey-card__badge--available {
  background: var(--gold-light);
  color: var(--gold-dark);
  cursor: pointer;
}
.journey-card__badge--available:hover {
  background: var(--gold);
  color: var(--white);
}
.journey-card__badge--waitlist {
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
}
.journey-card__badge--waitlist:hover {
  background: var(--navy-mid);
}

/* --- Build Steps --- */
.build-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.build-step {
  display: flex;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: flex-start;
}
.build-step:last-child {
  border-bottom: none;
}
.build-step__num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: -0.03em;
  line-height: 1.1;
  min-width: 44px;
  flex-shrink: 0;
  padding-top: 2px;
}
.build-step__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
}
.build-step__desc {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Stats Bar (fallback for social proof section) --- */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 60px 0;
}
.stats-bar__item {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 8px 40px;
  position: relative;
  white-space: nowrap;
}
.stats-bar__item + .stats-bar__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

/* --- Product Card Screenshot Placeholder --- */
.product-card__screenshot {
  width: 100%;
  height: 200px;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gray-200);
  flex-shrink: 0;
}

/* ===== CARD PREVIEW COMPONENT ===== */
.card-preview {
  position: relative;
  width: 100%;
  height: 220px;
  background: var(--navy);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 14px 14px 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex-shrink: 0;
}

.card-preview__badge {
  position: absolute;
  top: 0;
  right: 0;
  margin: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.18);
  pointer-events: none;
  z-index: 1;
}

.card-preview__metrics {
  display: flex;
  gap: 7px;
  flex-shrink: 0;
}

.card-preview__metric {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 6px;
  padding: 7px 9px;
}

.card-preview__metric-label {
  display: block;
  font-size: 0.56rem;
  color: var(--brand-light);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 2px;
  white-space: nowrap;
}

.card-preview__metric-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}

.card-preview__chart {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 44px;
  flex-shrink: 0;
}

.card-preview__bar {
  flex: 1;
  height: var(--h, 50%);
  background: #4DBFCC;
  border-radius: 2px 2px 0 0;
}

.card-preview__bar:nth-child(even) {
  background: rgba(77,191,204,0.55);
}

.card-preview__table {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow: hidden;
}

.card-preview__row {
  display: block;
  height: 10px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  width: 60%;
}

.card-preview__row > * {
  display: none;
}

.card-preview__table::after {
  content: 'Sample data';
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  display: block;
  margin-top: 2px;
}

.card-preview__cell {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.75);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
}

.card-preview__cell--name {
  flex: 1.6;
  color: rgba(255,255,255,0.85);
}

.card-preview__cell--num {
  flex: 0 0 auto;
  color: rgba(255,255,255,0.7);
  font-variant-numeric: tabular-nums;
}

.card-preview__pill {
  font-size: 0.55rem;
  font-weight: 600;
  padding: 1px 6px;
  border-radius: 100px;
  flex-shrink: 0;
}

.card-preview__pill--green {
  background: rgba(0,109,122,0.35);
  color: var(--brand-light);
}

.card-preview__pill--amber {
  background: rgba(201,168,76,0.3);
  color: #FBF5E6;
}

/* Responsive: Journey Grid */
@media (max-width: 900px) {
  .journey-grid {
    grid-template-columns: 1fr;
  }
}

/* Responsive: Build Steps */
@media (max-width: 600px) {
  .build-step {
    flex-direction: column;
    gap: 6px;
  }
  .build-step__num {
    font-size: 1.3rem;
    min-width: auto;
  }
  .stats-bar__item {
    padding: 8px 20px;
  }
}

/* ===== HOW-WE-BUILD.HTML COMPONENTS ===== */

/* --- Pipeline Stages (vertical stepped layout) --- */
.pipeline-stages {
  display: flex;
  flex-direction: column;
  margin-top: 48px;
  text-align: left;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.pipeline-stage {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 36px;
  padding: 48px 0;
  border-bottom: 1px solid var(--gray-200);
  align-items: start;
}
.pipeline-stage:last-child { border-bottom: none; }
.pipeline-stage__num {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--brand-light);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 6px;
  flex-shrink: 0;
}
.pipeline-stage__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 14px;
  line-height: 1.3;
}
.pipeline-stage__desc {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}
.pipeline-stage__output {
  background: var(--brand-glow);
  border-left: 3px solid var(--brand);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
}
.pipeline-stage__output-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand);
  margin-bottom: 10px;
}
.pipeline-stage__output ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.pipeline-stage__output ul li {
  font-size: 0.875rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
  line-height: 1.55;
}
.pipeline-stage__output ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.8rem;
}

/* --- Feature Tile: Warning variant --- */
.feature-tile--warning {
  border-color: rgba(220, 38, 38, 0.15);
}
.feature-tile--warning:hover {
  border-color: rgba(220, 38, 38, 0.28);
  box-shadow: 0 12px 48px rgba(220, 38, 38, 0.07);
}
.feature-tile--warning .feature-tile__icon {
  background: #FEF2F2;
  color: #DC2626;
}

/* Responsive: Pipeline */
@media (max-width: 640px) {
  .pipeline-stage {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 36px 0;
  }
  .pipeline-stage__num { font-size: 2rem; }
}
