/* ============================================================
   IQI Philippines × DAMAC, Dubai Roadshow 2026 splash page
   Production stylesheet. Ported from the Claude Design export
   (IQI Philippines Design System). Fonts load via <link> in the
   HTML <head>; every value below is driven by the design tokens.
   ============================================================ */

/* ============================================================
   TOKENS, Color
   ============================================================ */
:root {
  --ink-950: #16171b;
  --ink-900: #1e2026;
  --ink-800: #292c34;
  --ink-700: #3b3e47;
  --ink-600: #565a64;
  --ink-500: #737782;
  --ink-400: #9a9ea8;
  --ink-300: #c2c5cd;

  --sand-50:  #fbf8f2;
  --sand-100: #f6f1e7;
  --sand-200: #ede4d3;
  --sand-300: #ded0b8;
  --sand-400: #c9b896;
  --white:    #ffffff;

  --gold-100: #f7ecce;
  --gold-200: #eeda9f;
  --gold-300: #e3c578;
  --gold-400: #d4ac50;
  --gold-500: #be9337;
  --gold-600: #997528;

  --brand-coral:  #e55d3a;
  --brand-orange: #f0872a;
  --brand-amber:  #f5b01c;
  --brand-lime:   #c2ce2c;
  --brand-green:  #7fa02a;
  --brand-forest: #4a752a;

  --ph-blue:   #0038a8;
  --ph-red:    #ce1126;
  --ph-yellow: #fcd116;

  --success: #4a9a32;
  --success-soft: #e8f2df;
  --warning: #f5b01c;
  --warning-soft: #fbeecb;
  --danger:  #d0422a;
  --danger-soft: #f8e2dc;
  --info:    #0038a8;
  --info-soft: #dde6f6;

  --grad-brand: linear-gradient(102deg, #e55d3a 0%, #f0872a 22%, #f5b01c 46%, #c2ce2c 70%, #7fa02a 86%, #4a752a 100%);
  --grad-sunset: linear-gradient(118deg, #e55d3a 0%, #f0872a 48%, #f5b01c 100%);
  --grad-cta:    linear-gradient(118deg, #e5512f 0%, #ef7d23 100%);
  --grad-gold:   linear-gradient(120deg, #e3c578 0%, #be9337 100%);
  --grad-tropic: linear-gradient(125deg, #f5b01c 0%, #c2ce2c 52%, #4a752a 100%);
  --grad-ink:    linear-gradient(160deg, #292c34 0%, #16171b 100%);
  --grad-ink-warm: linear-gradient(155deg, #26241f 0%, #16150f 100%);

  --bg-page:      var(--sand-50);
  --bg-elevated:  var(--white);
  --bg-sand:      var(--sand-100);
  --bg-ink:       var(--ink-950);
  --bg-ink-soft:  var(--ink-900);

  --surface-card:     var(--white);
  --surface-card-sand:var(--sand-100);
  --surface-inverse:  var(--ink-900);
  --surface-glass:    rgba(255, 255, 255, 0.72);
  --surface-glass-dark: rgba(22, 23, 27, 0.55);

  --text-strong:   var(--ink-900);
  --text-body:     var(--ink-700);
  --text-muted:    var(--ink-500);
  --text-faint:    var(--ink-400);
  --text-on-ink:        var(--sand-50);
  --text-on-ink-muted:  rgba(251, 248, 242, 0.66);
  --text-on-ink-faint:  rgba(251, 248, 242, 0.40);
  --text-gold:     var(--gold-500);
  --text-on-gold:  var(--ink-950);

  --accent:        var(--gold-400);
  --accent-strong: var(--gold-500);
  --accent-soft:   var(--gold-100);

  --border-hairline: rgba(22, 23, 27, 0.08);
  --border-soft:     rgba(22, 23, 27, 0.12);
  --border-strong:   rgba(22, 23, 27, 0.20);
  --border-gold:     rgba(190, 147, 55, 0.42);
  --border-on-ink:   rgba(251, 248, 242, 0.14);
  --border-on-ink-strong: rgba(251, 248, 242, 0.26);

  --focus-ring: rgba(212, 172, 80, 0.55);
}

/* ============================================================
   TOKENS, Typography
   ============================================================ */
:root {
  --font-display: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;

  --text-2xs: 0.6875rem;
  --text-xs:  0.75rem;
  --text-sm:  0.875rem;
  --text-base:1rem;
  --text-lg:  1.125rem;
  --text-xl:  1.375rem;
  --text-2xl: 1.75rem;
  --text-3xl: 2.25rem;
  --text-4xl: 3rem;
  --text-5xl: 4rem;

  --display-sm: clamp(2.5rem, 1.6rem + 4vw, 4rem);
  --display-md: clamp(3.25rem, 2rem + 5.4vw, 5.75rem);
  --display-lg: clamp(4rem, 2.2rem + 7.6vw, 8rem);

  --leading-none: 1;
  --leading-tight: 1.1;
  --leading-snug: 1.22;
  --leading-normal: 1.5;
  --leading-relaxed: 1.68;

  --tracking-tighter: -0.03em;
  --tracking-tight: -0.015em;
  --tracking-normal: 0em;
  --tracking-wide: 0.04em;
  --tracking-eyebrow: 0.2em;
  --tracking-widest: 0.32em;
}

/* ============================================================
   TOKENS, Spacing & layout
   ============================================================ */
:root {
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 2rem;
  --space-8: 2.5rem;
  --space-9: 3rem;
  --space-10: 4rem;
  --space-11: 5rem;
  --space-12: 6.5rem;
  --space-13: 8rem;

  --container-max: 1200px;
  --container-wide: 1360px;
  --container-narrow: 760px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(4rem, 8vw, 8rem);
  --section-y-sm: clamp(2.5rem, 5vw, 4.5rem);
  --stack: 1.5rem;
}

/* ============================================================
   TOKENS, Effects: radii, shadows, motion, blur
   ============================================================ */
:root {
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 36px;
  --radius-pill: 999px;
  --radius-card: 20px;
  --radius-field: 12px;

  --shadow-xs: 0 1px 2px rgba(43, 33, 12, 0.06);
  --shadow-sm: 0 2px 8px rgba(43, 33, 12, 0.07);
  --shadow-md: 0 8px 24px -6px rgba(43, 33, 12, 0.12);
  --shadow-lg: 0 20px 48px -12px rgba(43, 33, 12, 0.18);
  --shadow-xl: 0 36px 80px -20px rgba(28, 22, 8, 0.28);
  --shadow-gold: 0 14px 40px -10px rgba(190, 147, 55, 0.42);
  --shadow-ink: 0 24px 60px -18px rgba(12, 12, 16, 0.55);
  --shadow-inset-hairline: inset 0 0 0 1px var(--border-hairline);

  --blur-glass: saturate(160%) blur(16px);
  --blur-glass-strong: saturate(180%) blur(28px);

  --dur-fast: 140ms;
  --dur-base: 240ms;
  --dur-slow: 420ms;
  --dur-slower: 680ms;

  --ease-out-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-in-out-soft: cubic-bezier(0.65, 0.05, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-emphasis: cubic-bezier(0.2, 0.8, 0.2, 1);

  --z-base: 0;
  --z-raised: 10;
  --z-sticky: 100;
  --z-overlay: 500;
  --z-modal: 1000;
  --z-toast: 1500;
}

/* ============================================================
   BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background: var(--ink-950);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--gold-200); color: var(--ink-900); }

a { color: inherit; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: var(--fw-bold);
  color: var(--text-strong);
  line-height: var(--leading-tight);
}

p { margin: 0; }

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

.iqi-gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ============================================================
   COMPONENT, Button
   ============================================================ */
.iqi-btn {
  --_bg: var(--grad-cta);
  --_fg: #fff;
  --_bd: transparent;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.6em; box-sizing: border-box;
  font-family: var(--font-sans); font-weight: 700;
  letter-spacing: -0.005em; white-space: nowrap; text-decoration: none;
  border: 1.5px solid var(--_bd); border-radius: var(--radius-pill);
  background: var(--_bg); color: var(--_fg); cursor: pointer;
  transition: transform var(--dur-fast) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out-soft),
              background-color var(--dur-base) var(--ease-out-soft),
              filter var(--dur-base) var(--ease-out-soft);
  -webkit-tap-highlight-color: transparent; user-select: none;
}
.iqi-btn:focus-visible { outline: none; box-shadow: 0 0 0 3px var(--bg-page), 0 0 0 6px var(--focus-ring); }
.iqi-btn:active { transform: scale(0.975); }
.iqi-btn[disabled], .iqi-btn[aria-disabled="true"] { opacity: 0.5; cursor: not-allowed; box-shadow: none !important; transform: none !important; filter: none !important; }
.iqi-btn__ic { display: inline-flex; align-items: center; }
.iqi-btn__ic svg { width: 1.15em; height: 1.15em; display: block; }

.iqi-btn--sm { height: 38px; padding: 0 16px; font-size: 13.5px; }
.iqi-btn--md { height: 46px; padding: 0 22px; font-size: 15px; }
.iqi-btn--lg { height: 56px; padding: 0 30px; font-size: 16.5px; }
.iqi-btn--block { width: 100%; }

.iqi-btn--primary { --_bg: var(--grad-cta); --_fg: #fff; box-shadow: 0 10px 26px -10px rgba(220,80,35,0.55); }
.iqi-btn--primary:hover { filter: brightness(1.04) saturate(1.05); transform: translateY(-1px); box-shadow: 0 16px 34px -12px rgba(220,80,35,0.6); }

.iqi-btn--gold { --_bg: var(--gold-400); --_fg: var(--ink-950); box-shadow: var(--shadow-gold); }
.iqi-btn--gold:hover { --_bg: var(--gold-500); transform: translateY(-1px); }

.iqi-btn--secondary { --_bg: transparent; --_fg: var(--ink-900); --_bd: var(--border-strong); }
.iqi-btn--secondary:hover { background: var(--sand-100); --_bd: var(--ink-400); }

.iqi-btn--ghost { --_bg: transparent; --_fg: var(--ink-800); --_bd: transparent; }
.iqi-btn--ghost:hover { background: var(--sand-100); }

.iqi-btn--inverse { --_bg: var(--sand-50); --_fg: var(--ink-950); box-shadow: var(--shadow-md); }
.iqi-btn--inverse:hover { --_bg: #fff; transform: translateY(-1px); }

.iqi-btn--outline-inverse { --_bg: transparent; --_fg: var(--sand-50); --_bd: var(--border-on-ink-strong); }
.iqi-btn--outline-inverse:hover { background: rgba(251,248,242,0.08); --_bd: var(--sand-50); }

@media (prefers-reduced-motion: reduce) {
  .iqi-btn { transition: background-color var(--dur-base), box-shadow var(--dur-base); }
  .iqi-btn:hover, .iqi-btn:active { transform: none; }
}

/* ============================================================
   COMPONENT, Input / field
   ============================================================ */
.iqi-field { display: flex; flex-direction: column; gap: 7px; font-family: var(--font-sans); }
.iqi-field[hidden] { display: none; }
.iqi-field__label { font-size: 13px; font-weight: 600; color: var(--text-strong); letter-spacing: -0.005em; }
.iqi-field__req { color: var(--danger); margin-left: 2px; }
.iqi-field__wrap { position: relative; display: flex; align-items: center; }
.iqi-field__icon { position: absolute; left: 14px; display: inline-flex; color: var(--text-muted); pointer-events: none; }
.iqi-field__icon svg { width: 18px; height: 18px; display: block; }
.iqi-input {
  width: 100%; box-sizing: border-box; height: 50px;
  padding: 0 15px; font-family: var(--font-sans); font-size: 15px;
  color: var(--text-strong); background: var(--white);
  border: 1.5px solid var(--border-soft); border-radius: var(--radius-field);
  transition: border-color var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft),
              background-color var(--dur-base) var(--ease-out-soft);
  outline: none;
}
.iqi-input::placeholder { color: var(--text-faint); }
.iqi-field--has-icon .iqi-input { padding-left: 42px; }
.iqi-input:hover { border-color: var(--border-strong); }
.iqi-input:focus { border-color: var(--gold-400); box-shadow: 0 0 0 4px var(--focus-ring); }
.iqi-field--error .iqi-input { border-color: var(--danger); }
.iqi-field--error .iqi-input:focus { box-shadow: 0 0 0 4px rgba(208,66,42,0.22); }
.iqi-input:disabled { background: var(--sand-100); color: var(--text-muted); cursor: not-allowed; }
textarea.iqi-input { height: auto; min-height: 108px; padding: 12px 15px; line-height: 1.5; resize: vertical; }
.iqi-field__msg { font-size: 12.5px; line-height: 1.4; color: var(--text-muted); }
.iqi-field--error .iqi-field__msg { color: var(--danger); }

.iqi-field--on-ink .iqi-field__label { color: var(--sand-50); }
.iqi-field--on-ink .iqi-input { background: rgba(251,248,242,0.06); border-color: var(--border-on-ink); color: var(--sand-50); }
.iqi-field--on-ink .iqi-input::placeholder { color: var(--text-on-ink-faint); }
.iqi-field--on-ink .iqi-input:hover { border-color: var(--border-on-ink-strong); }
.iqi-field--on-ink .iqi-input:focus { border-color: var(--gold-400); box-shadow: 0 0 0 4px rgba(212,172,80,0.3); }
.iqi-field--on-ink .iqi-field__icon { color: var(--text-on-ink-muted); }
.iqi-field--on-ink .iqi-field__msg { color: var(--text-on-ink-muted); }

/* ============================================================
   COMPONENT, Select
   ============================================================ */
.iqi-select-wrap { position: relative; display: flex; align-items: center; }
.iqi-select {
  width: 100%; box-sizing: border-box; height: 50px;
  padding: 0 42px 0 15px; font-family: var(--font-sans); font-size: 15px;
  color: var(--text-strong); background: var(--white);
  border: 1.5px solid var(--border-soft); border-radius: var(--radius-field);
  appearance: none; -webkit-appearance: none; outline: none; cursor: pointer;
  transition: border-color var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft);
}
.iqi-select:hover { border-color: var(--border-strong); }
.iqi-select:focus { border-color: var(--gold-400); box-shadow: 0 0 0 4px var(--focus-ring); }
.iqi-select--placeholder { color: var(--text-faint); }
.iqi-select__chev { position: absolute; right: 15px; pointer-events: none; color: var(--text-muted); display: inline-flex; }
.iqi-select__chev svg { width: 18px; height: 18px; display: block; }
.iqi-field--error .iqi-select { border-color: var(--danger); }
.iqi-select:disabled { background: var(--sand-100); color: var(--text-muted); cursor: not-allowed; }

.iqi-field--on-ink .iqi-select { background: rgba(251,248,242,0.06); border-color: var(--border-on-ink); color: var(--sand-50); }
.iqi-field--on-ink .iqi-select option { color: #1e2026; }
.iqi-field--on-ink .iqi-select--placeholder { color: var(--text-on-ink-faint); }
.iqi-field--on-ink .iqi-select:focus { box-shadow: 0 0 0 4px rgba(212,172,80,0.3); }
.iqi-field--on-ink .iqi-select__chev { color: var(--text-on-ink-muted); }

/* ============================================================
   COMPONENT, Checkbox
   ============================================================ */
.iqi-check { display: inline-flex; align-items: flex-start; gap: 11px; font-family: var(--font-sans); cursor: pointer; user-select: none; }
.iqi-check__input { position: absolute; opacity: 0; width: 0; height: 0; }
.iqi-check__box {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 1px;
  border: 1.5px solid var(--border-strong); border-radius: 7px; background: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background-color var(--dur-fast) var(--ease-out-soft),
              border-color var(--dur-fast) var(--ease-out-soft),
              transform var(--dur-fast) var(--ease-spring);
}
.iqi-check__box svg { width: 15px; height: 15px; color: var(--ink-950); opacity: 0; transform: scale(0.5); transition: opacity var(--dur-fast), transform var(--dur-fast) var(--ease-spring); }
.iqi-check__input:checked + .iqi-check__box { background: var(--gold-400); border-color: var(--gold-500); }
.iqi-check__input:checked + .iqi-check__box svg { opacity: 1; transform: scale(1); }
.iqi-check__input:focus-visible + .iqi-check__box { box-shadow: 0 0 0 4px var(--focus-ring); }
.iqi-check:hover .iqi-check__box { border-color: var(--gold-400); }
.iqi-check__label { font-size: 13.5px; line-height: 1.45; color: var(--text-body); padding-top: 1px; }
.iqi-check__label a { color: var(--gold-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.iqi-check--error .iqi-check__box { border-color: var(--danger); }

.iqi-check--on-ink .iqi-check__box { background: rgba(251,248,242,0.06); border-color: var(--border-on-ink-strong); }
.iqi-check--on-ink .iqi-check__input:checked + .iqi-check__box { background: var(--gold-400); border-color: var(--gold-400); }
.iqi-check--on-ink .iqi-check__label { color: var(--text-on-ink-muted); }
.iqi-check--on-ink .iqi-check__label a { color: var(--gold-300); }

/* ============================================================
   COMPONENT, Badge
   ============================================================ */
.iqi-badge {
  display: inline-flex; align-items: center; gap: 6px; box-sizing: border-box;
  font-family: var(--font-sans); font-weight: 600; white-space: nowrap;
  border-radius: var(--radius-pill); border: 1px solid transparent;
  line-height: 1;
}
.iqi-badge--sm { font-size: 11px; padding: 5px 10px; }
.iqi-badge--md { font-size: 12.5px; padding: 7px 13px; }
.iqi-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.iqi-badge__ic { display: inline-flex; margin-left: -1px; }
.iqi-badge__ic svg { width: 1.05em; height: 1.05em; display: block; }
.iqi-badge--eyebrow { text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); font-weight: 600; background: transparent; padding-left: 0; padding-right: 0; }

.iqi-badge--gold    { background: var(--gold-100); color: var(--gold-600); }
.iqi-badge--success { background: var(--success-soft); color: var(--success); }
.iqi-badge--info    { background: var(--info-soft); color: var(--info); }
.iqi-badge--coral   { background: rgba(229,93,58,0.12); color: #c1421f; }
.iqi-badge--neutral { background: var(--sand-200); color: var(--ink-700); }
.iqi-badge--ink     { background: var(--ink-800); color: var(--sand-50); }

.iqi-badge--solid.iqi-badge--gold    { background: var(--gold-400); color: var(--ink-950); }
.iqi-badge--solid.iqi-badge--success { background: var(--success); color: #fff; }
.iqi-badge--solid.iqi-badge--info    { background: var(--info); color: #fff; }
.iqi-badge--solid.iqi-badge--coral   { background: var(--brand-coral); color: #fff; }
.iqi-badge--solid.iqi-badge--neutral { background: var(--ink-700); color: var(--sand-50); }
.iqi-badge--solid.iqi-badge--ink     { background: var(--ink-950); color: var(--sand-50); }

.iqi-badge--outline { background: transparent; border-color: var(--border-strong); color: var(--ink-700); }
.iqi-badge--outline.iqi-badge--gold { border-color: var(--border-gold); color: var(--gold-600); }

/* ============================================================
   COMPONENT, Stat
   ============================================================ */
.iqi-stat { font-family: var(--font-sans); }
.iqi-stat__value { display: flex; align-items: baseline; gap: 0.04em; font-weight: 800; letter-spacing: -0.03em; line-height: 0.95; color: var(--text-strong); font-variant-numeric: tabular-nums; }
.iqi-stat__value .aff { font-weight: 700; color: var(--gold-500); }
.iqi-stat--accent .iqi-stat__num { color: var(--gold-500); }
.iqi-stat__label { margin-top: 10px; font-size: 13.5px; line-height: 1.4; color: var(--text-muted); font-weight: 500; }
.iqi-stat__sub { margin-top: 3px; font-size: 11.5px; color: var(--text-faint); }
.iqi-stat--sm .iqi-stat__value { font-size: 34px; }
.iqi-stat--md .iqi-stat__value { font-size: 46px; }
.iqi-stat--lg .iqi-stat__value { font-size: 60px; }
.iqi-stat--sm .iqi-stat__value .aff { font-size: 0.55em; }
.iqi-stat--md .iqi-stat__value .aff { font-size: 0.5em; }
.iqi-stat--lg .iqi-stat__value .aff { font-size: 0.48em; }
.iqi-stat--on-ink .iqi-stat__value { color: var(--sand-50); }
.iqi-stat--on-ink .iqi-stat__label { color: var(--text-on-ink-muted); }
.iqi-stat--on-ink .iqi-stat__sub { color: var(--text-on-ink-faint); }
.iqi-stat--on-ink.iqi-stat--accent .iqi-stat__num { color: var(--gold-400); }
.iqi-stat--center { text-align: center; }
.iqi-stat--center .iqi-stat__value { justify-content: center; }

/* ============================================================
   COMPONENT, Card
   ============================================================ */
.iqi-card {
  position: relative; box-sizing: border-box;
  border-radius: var(--radius-card); background: var(--surface-card);
  border: 1px solid var(--border-hairline); box-shadow: var(--shadow-md);
  padding: var(--_pad, 26px); color: var(--text-body);
  transition: transform var(--dur-base) var(--ease-out-soft),
              box-shadow var(--dur-base) var(--ease-out-soft),
              border-color var(--dur-base) var(--ease-out-soft);
  text-decoration: none; display: block;
}
.iqi-card--flat { box-shadow: none; border-color: var(--border-soft); }
.iqi-card--sand { background: var(--sand-100); box-shadow: none; border-color: var(--border-hairline); }
.iqi-card--ink { background: var(--grad-ink); border-color: var(--border-on-ink); color: var(--text-on-ink-muted); box-shadow: var(--shadow-lg); }
.iqi-card--glass { background: var(--surface-glass); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass); border-color: rgba(255,255,255,0.5); box-shadow: var(--shadow-lg); }
.iqi-card--interactive { cursor: pointer; }
.iqi-card--interactive:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border-gold); }
.iqi-card--ink.iqi-card--interactive:hover { border-color: var(--border-on-ink-strong); }
.iqi-card--interactive:active { transform: translateY(-1px); }

.iqi-card__icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-100); color: var(--gold-600); margin-bottom: 18px;
}
.iqi-card--ink .iqi-card__icon { background: rgba(212,172,80,0.16); color: var(--gold-300); }
.iqi-card__icon svg { width: 24px; height: 24px; }
.iqi-card__eyebrow { font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--gold-600); margin-bottom: 10px; }
.iqi-card--ink .iqi-card__eyebrow { color: var(--gold-300); }
.iqi-card__title { font-family: var(--font-sans); font-size: 19px; font-weight: 700; color: var(--text-strong); letter-spacing: -0.01em; line-height: 1.25; }
.iqi-card--ink .iqi-card__title { color: var(--sand-50); }
.iqi-card__desc { margin-top: 9px; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
.iqi-card--ink .iqi-card__desc { color: var(--text-on-ink-muted); }
.iqi-card__footer { margin-top: 18px; }

/* ============================================================
   COMPONENT, SectionHeading
   ============================================================ */
.iqi-heading { font-family: var(--font-sans); max-width: 720px; }
.iqi-heading--center { text-align: center; margin-left: auto; margin-right: auto; }
.iqi-heading__eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--gold-600); margin-bottom: 16px; }
.iqi-heading__eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--gold-400); }
.iqi-heading--center .iqi-heading__eyebrow::before { display: none; }
.iqi-heading__title { color: var(--text-strong); letter-spacing: -0.02em; line-height: 1.12; font-weight: 800; }
.iqi-heading--serif .iqi-heading__title { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; line-height: 1.06; }
.iqi-heading--sm .iqi-heading__title { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.1rem); }
.iqi-heading--md .iqi-heading__title { font-size: clamp(2rem, 1.4rem + 2.6vw, 3rem); }
.iqi-heading--lg .iqi-heading__title { font-size: clamp(2.6rem, 1.6rem + 4vw, 4.25rem); }
.iqi-heading--serif.iqi-heading--md .iqi-heading__title { font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); }
.iqi-heading--serif.iqi-heading--lg .iqi-heading__title { font-size: clamp(3rem, 1.8rem + 5vw, 5.25rem); }
.iqi-heading__subtitle { margin-top: 16px; font-size: clamp(1rem, 0.95rem + 0.3vw, 1.15rem); line-height: 1.6; color: var(--text-muted); font-weight: 400; }
.iqi-heading--center .iqi-heading__subtitle { margin-left: auto; margin-right: auto; }
.iqi-heading__accent { color: var(--gold-500); }
.iqi-heading--serif .iqi-heading__accent { font-style: italic; }

.iqi-heading--on-ink .iqi-heading__title { color: var(--sand-50); }
.iqi-heading--on-ink .iqi-heading__eyebrow { color: var(--gold-300); }
.iqi-heading--on-ink .iqi-heading__subtitle { color: var(--text-on-ink-muted); }
.iqi-heading--on-ink .iqi-heading__accent { color: var(--gold-300); }

/* ============================================================
   COMPONENT, Accordion
   ============================================================ */
.iqi-acc { font-family: var(--font-sans); display: flex; flex-direction: column; gap: 12px; }
.iqi-acc__item { border: 1px solid var(--border-soft); border-radius: var(--radius-md); background: var(--surface-card); overflow: hidden; transition: border-color var(--dur-base) var(--ease-out-soft), box-shadow var(--dur-base) var(--ease-out-soft); }
.iqi-acc__item--open { border-color: var(--border-gold); box-shadow: var(--shadow-sm); }
.iqi-acc__btn { width: 100%; box-sizing: border-box; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--text-strong); letter-spacing: -0.005em; }
.iqi-acc__btn:hover { color: var(--gold-600); }
.iqi-acc__btn:focus-visible { outline: none; box-shadow: inset 0 0 0 2px var(--focus-ring); border-radius: var(--radius-md); }
.iqi-acc__icon { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--sand-100); display: inline-flex; align-items: center; justify-content: center; transition: background-color var(--dur-base) var(--ease-out-soft), transform var(--dur-base) var(--ease-spring); }
.iqi-acc__item--open .iqi-acc__icon { background: var(--gold-400); transform: rotate(180deg); }
.iqi-acc__icon svg { width: 15px; height: 15px; color: var(--ink-700); }
.iqi-acc__item--open .iqi-acc__icon svg { color: var(--ink-950); }
.iqi-acc__panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows var(--dur-slow) var(--ease-out-soft); }
.iqi-acc__item--open .iqi-acc__panel { grid-template-rows: 1fr; }
.iqi-acc__panelinner { overflow: hidden; }
.iqi-acc__answer { padding: 0 20px 20px; font-size: 14.5px; line-height: 1.65; color: var(--text-muted); }

.iqi-acc--on-ink .iqi-acc__item { background: rgba(251,248,242,0.04); border-color: var(--border-on-ink); }
.iqi-acc--on-ink .iqi-acc__item--open { border-color: var(--border-on-ink-strong); }
.iqi-acc--on-ink .iqi-acc__btn { color: var(--sand-50); }
.iqi-acc--on-ink .iqi-acc__btn:hover { color: var(--gold-300); }
.iqi-acc--on-ink .iqi-acc__icon { background: rgba(251,248,242,0.1); }
.iqi-acc--on-ink .iqi-acc__icon svg { color: var(--sand-50); }
.iqi-acc--on-ink .iqi-acc__answer { color: var(--text-on-ink-muted); }

@media (prefers-reduced-motion: reduce) { .iqi-acc__panel, .iqi-acc__icon { transition: none; } }

/* ============================================================
   COMPONENT, Countdown
   ============================================================ */
.iqi-cd { font-family: var(--font-sans); display: inline-flex; flex-direction: column; gap: 12px; }
.iqi-cd__label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: var(--tracking-eyebrow); color: var(--gold-600); }
.iqi-cd__units { display: flex; gap: 10px; align-items: stretch; }
.iqi-cd__sep { align-self: center; font-size: 26px; font-weight: 700; color: var(--border-strong); margin-top: -14px; }
.iqi-cd__unit { position: relative; min-width: 74px; padding: 14px 12px 10px; border-radius: var(--radius-md); background: var(--surface-card); border: 1px solid var(--border-soft); box-shadow: var(--shadow-sm); text-align: center; }
.iqi-cd__num { font-size: 34px; font-weight: 800; letter-spacing: -0.03em; color: var(--text-strong); font-variant-numeric: tabular-nums; line-height: 1; }
.iqi-cd__unitlabel { margin-top: 7px; font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-faint); }

.iqi-cd--sm .iqi-cd__unit { min-width: 56px; padding: 10px 8px 8px; }
.iqi-cd--sm .iqi-cd__num { font-size: 24px; }
.iqi-cd--lg .iqi-cd__unit { min-width: 92px; padding: 18px 14px 12px; }
.iqi-cd--lg .iqi-cd__num { font-size: 46px; }

.iqi-cd--on-ink .iqi-cd__label { color: var(--gold-300); }
.iqi-cd--on-ink .iqi-cd__unit { background: rgba(251,248,242,0.05); border-color: var(--border-on-ink); box-shadow: none; }
.iqi-cd--on-ink .iqi-cd__num { color: var(--sand-50); }
.iqi-cd--on-ink .iqi-cd__sep { color: var(--border-on-ink-strong); }

.iqi-cd--gold .iqi-cd__unit { background: var(--grad-gold); border-color: transparent; box-shadow: var(--shadow-gold); }
.iqi-cd--gold .iqi-cd__num { color: var(--ink-950); }
.iqi-cd--gold .iqi-cd__unitlabel { color: rgba(22,23,27,0.6); }

.iqi-cd__done { font-size: 15px; font-weight: 700; color: var(--gold-600); }

/* ============================================================
   REVEAL, scroll fade-and-rise
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-y, 22px));
  transition: opacity .72s var(--ease-out-soft), transform .72s var(--ease-out-soft);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
}

/* ============================================================
   NAV, glassy sticky top bar
   ============================================================ */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-sticky);
  transition: background-color .4s var(--ease-out-soft), box-shadow .4s var(--ease-out-soft), backdrop-filter .4s;
  background: transparent;
}
.lp-nav.is-scrolled {
  background: var(--surface-glass);
  backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass);
  box-shadow: 0 1px 0 var(--border-hairline), var(--shadow-sm);
}
.lp-nav__inner {
  max-width: var(--container-wide); margin: 0 auto; padding: 0 var(--gutter);
  height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.lp-nav__brand { display: flex; align-items: center; gap: 11px; background: none; border: none; cursor: pointer; padding: 0; text-decoration: none; }
.lp-nav__logo { height: 30px; width: auto; display: block; }
.lp-nav__logo--dark { display: none; }
.lp-nav.is-scrolled .lp-nav__logo--light { display: none; }
.lp-nav.is-scrolled .lp-nav__logo--dark { display: block; }

.lp-nav-links { display: flex; align-items: center; gap: 4px; }
.lp-nav__link { background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 14px; font-weight: 600; color: rgba(251,248,242,0.82); padding: 8px 12px; border-radius: var(--radius-sm); transition: color .2s; }
.lp-nav__link:hover { color: var(--gold-300); }
.lp-nav.is-scrolled .lp-nav__link { color: var(--ink-700); }
.lp-nav.is-scrolled .lp-nav__link:hover { color: var(--gold-600); }

.lp-nav__right { display: flex; align-items: center; gap: 8px; }
/* Nav CTA: gold over the dark hero, sunset-gradient once scrolled onto light bg. */
.lp-nav-cta .iqi-btn { --_bg: var(--gold-400); --_fg: var(--ink-950); box-shadow: var(--shadow-gold); }
.lp-nav-cta .iqi-btn:hover { --_bg: var(--gold-500); }
.lp-nav.is-scrolled .lp-nav-cta .iqi-btn { --_bg: var(--grad-cta); --_fg: #fff; box-shadow: 0 10px 26px -10px rgba(220,80,35,0.55); }
.lp-nav.is-scrolled .lp-nav-cta .iqi-btn:hover { --_bg: var(--grad-cta); filter: brightness(1.04) saturate(1.05); }

.lp-nav-burger {
  display: none; width: 42px; height: 42px; border-radius: var(--radius-sm); border: none; cursor: pointer;
  align-items: center; justify-content: center; font-size: 22px;
  background: rgba(251,248,242,0.12); color: var(--sand-50);
}
.lp-nav.is-scrolled .lp-nav-burger { background: var(--sand-100); color: var(--ink-800); }
.lp-nav-burger svg { width: 1em; height: 1em; }
.lp-nav-burger .ic-x { display: none; }
.lp-nav.is-menu-open .lp-nav-burger .ic-menu { display: none; }
.lp-nav.is-menu-open .lp-nav-burger .ic-x { display: inline-flex; }

.lp-nav__mobile { padding: 8px var(--gutter) 20px; background: var(--surface-glass); backdrop-filter: var(--blur-glass); -webkit-backdrop-filter: var(--blur-glass); box-shadow: var(--shadow-md); }
.lp-nav__mobilelist { display: flex; flex-direction: column; gap: 2px; }
.lp-nav__mobilelink { text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--ink-800); padding: 13px 6px; border-bottom: 1px solid var(--border-hairline); }
/* Mobile menu CTA: centered, comfortably sized (not full-bleed). */
.lp-nav__mobilecta { margin-top: 14px; }
.lp-nav__mobilecta .iqi-btn { display: flex; width: 100%; max-width: 300px; margin: 0 auto; }

/* Footer explore links */
.lp-foot__link { text-align: left; background: none; border: none; cursor: pointer; font-family: var(--font-sans); font-size: 14px; color: var(--text-on-ink-muted); padding: 0; transition: color .2s; }
.lp-foot__link:hover { color: var(--gold-300); }

/* ============================================================
   RESPONSIVE, section grids (from the design's index.html)
   ============================================================ */
@media (max-width: 1024px) {
  .lp-hero-grid { grid-template-columns: 1fr !important; gap: 44px !important; }
  .lp-split { grid-template-columns: 1fr !important; gap: 36px !important; }
  .lp-event { grid-template-columns: 1fr !important; gap: 32px !important; }
  .lp-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .lp-stats-4 { grid-template-columns: repeat(2, 1fr) !important; row-gap: 26px !important; }
  .lp-foot { grid-template-columns: 1.4fr 1fr !important; }
}
@media (min-width: 821px) {
  /* The mobile dropdown never belongs on desktop (guards against resize-while-open). */
  .lp-nav__mobile { display: none !important; }
}
@media (max-width: 820px) {
  .lp-nav-links, .lp-nav-cta { display: none !important; }
  .lp-nav-burger { display: inline-flex !important; }
  .lp-grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .lp-steps { grid-template-columns: repeat(2, 1fr) !important; row-gap: 34px !important; }
  .lp-step-line { display: none !important; }
  .lp-foot { grid-template-columns: 1fr !important; gap: 32px !important; }
  .lp-trust { justify-content: flex-start !important; }
  .lp-hero-inner { padding-top: 100px !important; padding-bottom: 64px !important; }
}
@media (max-width: 560px) {
  .lp-grid-3, .lp-grid-4, .lp-steps, .lp-stats-4 { grid-template-columns: 1fr !important; }
  .lp-damac-stats { grid-template-columns: repeat(2, 1fr) !important; }
  .lp-hero-inner { padding-top: 92px !important; }
}
