/* =================================================================
   Dawnm AI — Design System
   Dark tech editorial · Gold × Navy
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Noto+Sans+SC:wght@200;300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

/* ============== DESIGN TOKENS ============== */
:root {
  --bg: #0A0A0A;
  --bg-soft: #111111;
  --bg-dark: #0E0E0E;
  --bg-darker: #050505;
  --surface: #111111;
  --surface-dark: #181818;

  --ink: #F5F0E8;
  --ink-soft: #B0A898;
  --ink-muted: #6A6560;
  --ink-faint: #3A3835;

  --gold: #C9A96E;
  --gold-light: #E2C992;
  --gold-soft: #F0E1BA;
  --gold-dark: #A8854A;
  --gold-deep: #8C6E3A;

  --navy: #1E3A5F;
  --navy-light: #2C4F7C;
  --navy-deep: #122640;

  --line: rgba(201, 169, 110, 0.12);
  --line-strong: rgba(201, 169, 110, 0.22);
  --line-gold: rgba(201, 169, 110, 0.4);

  --paper: var(--ink);
  --paper-soft: var(--ink-soft);
  --paper-muted: var(--ink-muted);

  --font-display: 'Outfit', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', Menlo, Consolas, monospace;

  --section-y: clamp(80px, 10vw, 140px);
  --container: 1280px;
  --gutter: clamp(20px, 4vw, 48px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--bg);
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-weight: 300;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--bg); }

/* ============== TYPOGRAPHY ============== */
.font-display { font-family: var(--font-display); font-weight: 400; }
.font-mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.section-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-muted);
  font-weight: 300;
  max-width: 620px;
}

.display-1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.display-2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 1.06;
  letter-spacing: -0.015em;
}
.display-3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.15;
}

.lede {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
  font-weight: 300;
}

/* ============== LAYOUT ============== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--navy-deep); }

.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.divider--gold {
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* ============== NAVIGATION ============== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  border-color: var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav__logo-mark img { width: 24px; height: auto; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav__logo-text span:first-child {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.nav__logo-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav__item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
  position: relative;
}
.nav__item:hover, .nav__item.is-active { color: var(--gold); }
.nav__item--has-dropdown { cursor: default; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface-dark);
  border: 1px solid var(--line);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  pointer-events: none;
}
.nav__item--has-dropdown:hover .nav__dropdown,
.nav__item--has-dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.nav__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--ink-soft);
  transition: color 0.2s, background 0.2s;
}
.nav__dropdown a:hover { color: var(--gold); background: rgba(201,169,110,0.05); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--gold);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease);
}
.nav__cta:hover { background: var(--gold-light); transform: translateY(-1px); }
.nav__toggle {
  display: none;
  width: 40px;
  height: 40px;
  color: var(--ink);
}

@media (max-width: 960px) {
  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-top: 1px solid var(--line);
    padding: 24px var(--gutter);
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
    overflow-y: auto;
  }
  .nav__menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav__item {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav__dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: none;
    padding: 8px 0 0 16px;
    pointer-events: auto;
    display: none;
  }
  .nav__item--has-dropdown.is-open .nav__dropdown { display: block; }
  .nav__toggle { display: flex; align-items: center; justify-content: center; }
  .nav__cta { display: none; }
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--ease), transform 0.15s var(--ease), border-color 0.25s;
}
.btn--primary {
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
}
.btn--primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline:hover { background: rgba(201,169,110,0.08); }
.btn--sm { padding: 10px 20px; font-size: 13px; }

/* ============== HERO ============== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 180px 0 100px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(10,10,10,0.6) 40%, rgba(10,10,10,0.4) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; }
.hero__brand {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(44px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 980px;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============== PAGE HERO ============== */
.page-hero {
  padding: 160px 0 80px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.4;
  margin-left: var(--gutter);
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 7vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.page-hero__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 760px;
  margin-bottom: 32px;
}
.page-hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.page-hero__meta {
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  opacity: 0.5;
}
@media (max-width: 960px) { .page-hero__meta { display: none; } }

/* ============== CARDS & GRIDS ============== */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.svc-card {
  display: block;
  padding: 32px;
  background: linear-gradient(145deg, #1e1e1e 0%, #141414 100%);
  border: 1px solid rgba(201, 169, 110, 0.3);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(201,169,110,0.15);
}
.svc-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  margin-bottom: 24px;
  color: var(--gold);
}
.svc-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 12px;
}
.svc-card__desc { color: var(--ink-muted); font-size: 14px; line-height: 1.7; }

/* ============== PROCESS ============== */
.process { display: flex; flex-direction: column; gap: 24px; }
.process__item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 28px;
  background: linear-gradient(145deg, #1e1e1e 0%, #141414 100%);
  border: 1px solid rgba(201, 169, 110, 0.25);
}
.process__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.process__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 8px;
}
.process__desc { color: var(--ink-muted); font-size: 14px; line-height: 1.7; }
@media (max-width: 600px) {
  .process__item { grid-template-columns: 1fr; }
}

/* ============== STATS ============== */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat { padding: 48px 24px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 8px;
}
.stat__label { font-size: 14px; color: var(--ink-soft); }
.stat__en {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 4px;
}
@media (max-width: 600px) {
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
}

/* ============== ACTIVITIES ============== */
.activity {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.activity:first-child { border-top: 1px solid var(--line); }
.activity__icon { color: var(--gold); }
.activity__title { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 4px; }
.activity__desc { color: var(--ink-muted); font-size: 14px; }
.activity__freq {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  padding: 6px 12px;
}
@media (max-width: 600px) {
  .activity { grid-template-columns: 1fr; gap: 12px; }
}

/* ============== VALUES ============== */
.values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.value {
  text-align: center;
  padding: 40px 32px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color 0.3s, transform 0.3s;
}
.value:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.value__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 16px;
}
.value__icon { color: var(--gold); margin: 0 auto 20px; }
.value__icon svg { width: 32px; height: 32px; }
.value__title { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-bottom: 12px; }
.value__desc { color: var(--ink-muted); font-size: 14px; line-height: 1.7; }
@media (max-width: 768px) {
  .values { grid-template-columns: 1fr; }
}

/* ============== CONTACT ============== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  margin-top: 48px;
}
.contact__info { display: flex; flex-direction: column; gap: 24px; }
.contact__info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact__info-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 169, 110, 0.25);
  color: var(--gold);
}
.contact__info-icon svg { width: 20px !important; height: 20px !important; display: block; }
.contact__info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.contact__info-value {
  font-size: 15px;
  color: var(--ink);
  font-weight: 400;
}
.contact__info-value a { color: var(--gold); text-decoration: none; }
.contact__info-value a:hover { text-decoration: underline; }
@media (max-width: 960px) {
  .contact { grid-template-columns: 1fr; gap: 40px; }
}

/* ============== CONTACT FORM ============== */
.form { max-width: 100%; }
.form__field { margin-bottom: 20px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form__label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 8px;
  font-weight: 400;
}
.form__input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 4px;
}
.form__input:focus {
  border-color: var(--gold);
  background: var(--surface);
}
.form__input::placeholder { color: var(--ink-muted); }
.form__textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  border-radius: 4px;
  resize: vertical;
  min-height: 120px;
}
.form__textarea:focus {
  border-color: var(--gold);
  background: var(--surface);
}
.form__textarea::placeholder { color: var(--ink-muted); }
.form__select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  appearance: none;
  border-radius: 4px;
  transition: border-color 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A96E' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form__select:focus { border-color: var(--gold); }
.form__submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--bg);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-body);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  margin-top: 8px;
}
.form__submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.form__note {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 16px;
}
.form__message { margin-top: 16px; font-size: 14px; }
.form__message.success { color: var(--gold); }
.form__message.error { color: #d4726a; }
@media (max-width: 600px) { .form__row { grid-template-columns: 1fr; } }

/* ============== CTA ============== */
.cta {
  padding: var(--section-y) 0;
  text-align: center;
  border-top: 1px solid var(--line);
  position: relative;
}
.cta__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  color: var(--ink);
  margin-bottom: 20px;
}
.cta__title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta__sub { color: var(--ink-muted); max-width: 560px; margin: 0 auto 32px; font-size: 17px; }
.cta__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 20px;
}

/* ============== FOOTER ============== */
.footer { padding: 64px 0 32px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand { max-width: 320px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer__logo img { width: 32px; height: auto; }
.footer__tagline { color: var(--ink-muted); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer__heading {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer__links li { margin-bottom: 12px; }
.footer__links a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--gold); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink-muted);
}
@media (max-width: 960px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============== ANIMATIONS ============== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.fade-up { opacity: 0; transform: translateY(20px); animation: fadeUp 0.8s var(--ease) forwards; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============== UTILITIES ============== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ============== COMPATIBILITY WITH ORIGINAL SITE/ PAGES ============== */
.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: var(--gold);
  color: var(--bg);
  border: 1px solid var(--gold);
  transition: background 0.25s var(--ease), transform 0.15s var(--ease);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--gold.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--outline { border: 1px solid var(--gold); color: var(--gold); }
.btn--outline:hover { background: rgba(201,169,110,0.08); }

.section--dark { background: var(--bg-soft); }

.feature { display: grid; gap: 32px; }
.feature__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.feature__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 16px;
}
.feature__body { color: var(--ink-muted); font-size: 15px; line-height: 1.8; }
.feature__body p + p { margin-top: 16px; }
.feature__body strong { color: var(--ink); font-weight: 500; }

.pillar { padding: 32px; background: var(--surface); border: 1px solid var(--line); }
.pillar__icon { color: var(--gold); margin-bottom: 20px; }
.pillar__title { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.pillar__list { display: flex; flex-direction: column; gap: 10px; }
.pillar__list li { font-size: 14px; color: var(--ink-muted); padding-left: 16px; position: relative; }
.pillar__list li::before { content: '•'; position: absolute; left: 0; color: var(--gold); }

.form__group { margin-bottom: 20px; }
.form__label { display: block; font-size: 13px; color: var(--ink-soft); margin-bottom: 8px; }
.form__submit { }

.table-wrapper { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
th, td { padding: 16px; border: 1px solid var(--line); text-align: left; }
th { background: var(--surface); color: var(--gold); font-weight: 500; }

.dim { padding: 24px; background: var(--surface); border: 1px solid var(--line); text-align: center; }
.dim__title { font-family: var(--font-display); font-size: 20px; color: var(--ink); margin-bottom: 8px; }
.dim__desc { font-size: 14px; color: var(--ink-muted); }

.audience { display: grid; gap: 24px; }
.audience__item { padding: 28px; background: var(--surface); border: 1px solid var(--line); }
.audience__title { font-family: var(--font-display); font-size: 22px; color: var(--ink); margin-bottom: 12px; }
.audience__desc { font-size: 14px; color: var(--ink-muted); line-height: 1.7; }

.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.pricing__item { padding: 32px; background: var(--surface); border: 1px solid var(--line); text-align: center; }
.pricing__title { font-family: var(--font-display); font-size: 24px; color: var(--ink); margin-bottom: 12px; }
.pricing__price { font-size: 36px; color: var(--gold); font-weight: 500; margin-bottom: 16px; }
.pricing__desc { font-size: 14px; color: var(--ink-muted); margin-bottom: 24px; }

.hero__meta-item { display: flex; align-items: center; gap: 16px; }
.hero__meta-num { font-family: var(--font-display); font-size: 40px; color: var(--gold); line-height: 1; }
.hero__meta-label { font-size: 14px; color: var(--ink-soft); }
.hero__meta-label small { display: block; font-size: 11px; color: var(--ink-muted); font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.1em; }
.hero__scroll { display: none; }

.mt-3 { margin-top: 12px; }
.mt-5 { margin-top: 20px; }
.mb-3 { margin-bottom: 12px; }
.mb-5 { margin-bottom: 20px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.px-4 { padding-left: 16px; padding-right: 16px; }

.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

.eyebrow.light { color: var(--gold); }
.eyebrow.light::before { background: var(--gold); }

.activity__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.activity__sub { font-size: 14px; color: var(--ink-soft); margin-bottom: 8px; }
.activity__highlights {
  list-style: disc;
  padding-left: 20px;
  margin-top: 12px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.7;
}
.activity__highlights li { margin-bottom: 8px; }

.process__step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.process__num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); letter-spacing: 0.1em; }

.value__num { font-family: var(--font-mono); font-size: 12px; color: var(--gold); margin-bottom: 12px; }
.value__icon { color: var(--gold); margin: 0 auto 20px; }

.dim__icon { color: var(--gold); margin: 0 auto 16px; }

.audience__icon { color: var(--gold); margin-bottom: 20px; }

.formula { padding: 48px; background: var(--surface); border: 1px solid var(--line); text-align: center; }
.formula__title { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; }
.formula__equation { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 16px; font-family: var(--font-display); font-size: 24px; margin-bottom: 32px; }
.formula__equation .sep { color: var(--ink-muted); }
.formula__equation .eq { color: var(--gold); }
.formula__parts { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.formula__part { padding: 24px; background: var(--surface); border: 1px solid var(--line); }
.formula__part-title { font-family: var(--font-display); font-size: 20px; margin-bottom: 8px; }
.formula__part-desc { font-size: 14px; color: var(--ink-muted); }

.grid { display: grid; gap: 24px; }
