/* ═══════════════════════════════════════════════
   AUREAL — Design Tokens & Global Styles
   ═══════════════════════════════════════════════ */

:root {
  --gold: #cc9e04;
  --dark: #242424;
  --light: #e4ded5;
  --white: #e4ded5;
  --border: rgba(255,255,255,0.06);
  --border-light: rgba(36,36,36,0.1);
  --gold-border: #cc9e04;
  --gold-glow: rgba(204,158,4,0.5);
  --gold-glow-soft: rgba(204,158,4,0.2);
  --text-muted: rgba(245,242,237,0.55);
  --text-muted-dark: rgba(36,36,36,0.55);
  --font-display: 'Laro Soft', 'Qanelas Soft', 'Rubik', system-ui, sans-serif;
  --font-body: 'Laro Soft', 'Qanelas Soft', 'Rubik', system-ui, sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --radius: 10px;
  --radius-lg: 14px;
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.32);
  --shadow: 0 4px 22px rgba(0,0,0,0.44), 0 1px 5px rgba(0,0,0,0.28);
  --shadow-lg: 0 12px 44px rgba(0,0,0,0.58), 0 3px 12px rgba(0,0,0,0.38);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 10000;
  opacity: 0.3;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.3s var(--ease); }
::selection { background: rgba(204,158,4,0.3); color: var(--white); }

/* ── Layout ── */
.au-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.2; text-wrap: pretty; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 500; }
p { font-size: 1rem; line-height: 1.75; text-wrap: pretty; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.gold-rule { width: 48px; height: 2px; background: var(--gold); margin: 1rem 0; }

/* ── Sections ── */
.au-section { padding: 6rem 0; }
.au-section.sec-dark { background: var(--dark); color: var(--white); }
.au-section.sec-dark h1, .au-section.sec-dark h2, .au-section.sec-dark h3 { color: var(--white); }
.au-section.sec-dark p { color: var(--text-muted); }
.au-section.sec-dark .eyebrow { color: var(--gold); }
.au-section.sec-light { background: var(--white); color: var(--dark); }
.au-section.sec-light h1, .au-section.sec-light h2, .au-section.sec-light h3 { color: var(--dark); }
.au-section.sec-light p { color: var(--text-muted-dark); }
.au-section.sec-light .eyebrow { color: var(--gold); }
.au-section.sec-light .gold-rule { background: var(--gold); }
.au-section.sec-gold { background: var(--gold); color: var(--dark); }
.au-section.sec-gold h1, .au-section.sec-gold h2 { color: var(--dark); }
.au-section.sec-gold p { color: rgba(36,36,36,0.75); }

/* ── Navigation ── */
.au-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  background: rgba(36,36,36,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out);
}
.au-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.au-nav-logo {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold);
  cursor: pointer; transition: opacity 0.3s; border: none; background: none;
}
.au-nav-logo:hover { opacity: 0.8; }
.au-nav-links { display: flex; gap: 1.75rem; align-items: center; list-style: none; }
.au-nav-link {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); cursor: pointer; position: relative;
  padding: 0.25rem 0; background: none; border: none; transition: color 0.3s var(--ease);
}
.au-nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1.5px;
  background: var(--gold); transition: width 0.4s var(--ease-out);
}
.au-nav-link:hover { color: var(--gold); }
.au-nav-link:hover::after, .au-nav-link.active::after { width: 100%; }
.au-nav-link.active { color: var(--gold); }
.au-nav-cta {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  padding: 0.5rem 1.25rem; border-radius: var(--radius); border: none;
  cursor: pointer; transition: all 0.3s var(--ease);
}
.au-nav-cta:hover {
  box-shadow: 0 0 16px var(--gold-glow), 0 0 40px var(--gold-glow-soft);
}
.au-nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: none; padding: 5px;
}
.au-nav-toggle span { width: 22px; height: 2px; background: var(--white); transition: all 0.3s; display: block; }

/* ── Hero Shared ── */
.au-hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 64px; }
.au-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 70%, rgba(204,158,4,0.06) 0%, transparent 60%), var(--dark);
}

/* ── Hero Dawn (centered) ── */
.hero-dawn .au-hero-content { text-align: center; max-width: 720px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
.hero-dawn .hero-logo {
  width: 120px; height: 120px; margin: 0 auto 0.75rem; object-fit: contain;
  animation: logoRise 2.4s var(--ease) forwards;
  opacity: 0;
}
.hero-dawn .hero-tagline {
  font-family: 'Rubik', sans-serif; font-style: italic; font-weight: 400;
  font-size: 1.1rem; color: var(--gold); margin-bottom: 1.25rem;
  opacity: 0; animation: textUp 0.8s var(--ease) 1.4s forwards;
}
.hero-dawn .hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; color: var(--gold);
  margin-bottom: 1.25rem; letter-spacing: -0.01em; line-height: 1.15;
  opacity: 0; animation: textUp 0.8s var(--ease) 1.7s forwards;
}
.hero-dawn .hero-sub {
  font-size: 1.05rem; color: var(--white); max-width: 500px; margin: 0 auto 2.5rem;
  opacity: 0; animation: textUp 0.8s var(--ease) 2s forwards;
}
.hero-dawn .hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: textUp 0.8s var(--ease) 2.3s forwards;
}

/* ── Hero Horizon (split) ── */
.hero-horizon .au-hero-content {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; position: relative; z-index: 1;
}
.hero-horizon .hero-text { opacity: 0; animation: textUp 0.8s var(--ease) 0.5s forwards; }
.hero-horizon .hero-tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1rem; color: var(--gold); margin-bottom: 1rem;
}
.hero-horizon .hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 400; color: var(--white);
  margin-bottom: 1rem; line-height: 1.15;
}
.hero-horizon .hero-sub { font-size: 1rem; color: var(--text-muted); margin-bottom: 2rem; max-width: 480px; }
.hero-horizon .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-horizon .hero-visual {
  position: relative; opacity: 0; animation: textUp 0.8s var(--ease) 0.8s forwards;
}
.hero-horizon .hero-frame {
  position: relative; aspect-ratio: 4/5; border: 1px solid var(--gold);
}
.hero-horizon .hero-frame::after {
  content: ''; position: absolute; top: 20px; left: 20px; right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
}
.hero-horizon .hero-frame-inner {
  position: absolute; inset: 16px;
  background: linear-gradient(160deg, rgba(204,158,4,0.06) 0%, rgba(36,36,36,0.8) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── Hero Editorial (full-width type) ── */
.hero-editorial .au-hero-content {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem; width: 100%; position: relative; z-index: 1;
}
.hero-editorial .hero-logo {
  width: 56px; height: 56px; object-fit: contain; margin-bottom: 3rem;
  opacity: 0; animation: logoRise 2s var(--ease) forwards;
}
.hero-editorial .hero-title {
  font-size: clamp(3rem, 7vw, 6rem); font-weight: 300; color: var(--white);
  line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 2rem;
}
.hero-editorial .hero-title .gold { color: var(--gold); }
.hero-editorial .hero-line {
  display: block; opacity: 0;
}
.hero-editorial .hero-line:nth-child(1) { animation: textUp 0.8s var(--ease) 1s forwards; }
.hero-editorial .hero-line:nth-child(2) { animation: textUp 0.8s var(--ease) 1.2s forwards; }
.hero-editorial .hero-line:nth-child(3) { animation: textUp 0.8s var(--ease) 1.4s forwards; }
.hero-editorial .hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem;
  opacity: 0; animation: textUp 0.8s var(--ease) 1.8s forwards;
}
.hero-editorial .hero-sub { font-size: 1rem; color: var(--text-muted); max-width: 400px; }
.hero-editorial .hero-buttons { display: flex; gap: 1rem; }

/* ── Hero Animations ── */
@keyframes logoRise {
  0% { opacity: 0; transform: translateY(30px) scale(0.92); filter: drop-shadow(0 0 0 rgba(204,158,4,0)); }
  50% { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 40px rgba(204,158,4,0.6)) drop-shadow(0 0 80px rgba(204,158,4,0.25)); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: drop-shadow(0 0 12px rgba(204,158,4,0.5)) drop-shadow(0 0 40px rgba(204,158,4,0.2)); }
}
@keyframes textUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ── */
.au-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; padding: 0.8rem 1.75rem;
  border: none; cursor: pointer; border-radius: var(--radius);
  transition: all 0.3s var(--ease); text-decoration: none;
}
.au-btn-primary { background: var(--gold); color: var(--dark); box-shadow: var(--shadow-sm); }
.au-btn-primary:hover { box-shadow: var(--shadow), 0 0 16px var(--gold-glow), 0 0 40px var(--gold-glow-soft); }
.au-btn-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.au-btn-outline:hover { background: var(--gold); color: var(--dark); box-shadow: 0 0 16px var(--gold-glow); }
.au-btn-dark { background: var(--dark); color: var(--white); }
.au-btn-dark:hover { background: #1a1a1a; box-shadow: var(--shadow); }
.au-btn-ghost { background: rgba(255,255,255,0.06); color: var(--white); border: 1px solid rgba(255,255,255,0.1); }
.au-btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }
.sec-light .au-btn-outline { border-color: var(--gold); color: var(--gold); }
.sec-light .au-btn-outline:hover { background: var(--gold); color: var(--dark); }
.sec-gold .au-btn-dark { background: var(--dark); color: var(--gold); }
.sec-gold .au-btn-dark:hover { background: #1a1a1a; }

/* ── Cards ── */
.au-card {
  padding: 2rem;
  border: 1.5px solid var(--gold);
  box-shadow: var(--shadow-sm);
  border-radius: 24px;
  transition: all 0.4s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.au-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sec-light .au-card { background: #f2ece4; border-color: var(--gold); box-shadow: 0 2px 12px rgba(36,36,36,0.09), 0 1px 3px rgba(36,36,36,0.05); }
.sec-light .au-card:hover { box-shadow: 0 6px 24px rgba(36,36,36,0.14), 0 2px 6px rgba(36,36,36,0.07); }
.sec-light .au-card h3 { color: var(--dark); }
.sec-light .au-card p { color: var(--text-muted-dark); }

/* ── Path Cards ── */
.path-link {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold);
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.path-link .arrow { transition: transform 0.3s var(--ease-out); }
.au-card:hover .path-link .arrow { transform: translateX(4px); }

/* ── Image Placeholder ── */
.au-img-placeholder {
  background: rgba(255,255,255,0.03);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px dashed var(--gold); border-radius: var(--radius);
  position: relative; overflow: hidden;
}
.au-img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(204,158,4,0.04) 0%, transparent 60%);
}
.sec-light .au-img-placeholder { background: rgba(36,36,36,0.04); border-color: var(--gold); }

/* ── Product tier cards ── */
.au-product-groups { display: flex; flex-direction: column; gap: 4rem; margin-top: 2.5rem; }
.au-product-group { display: flex; flex-direction: column; gap: 1.5rem; }
.au-product-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold);
}
.au-product-head h3 {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: 2.1rem; letter-spacing: -0.01em;
  margin: 0;
}
.au-product-head p {
  font-size: 0.95rem; color: var(--text-muted);
  line-height: 1.6; max-width: 440px; text-align: right; margin: 0;
}
.au-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.au-tier-card {
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.3s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.au-tier-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.45), 0 0 0 1px var(--gold);
}
.au-tier-frame {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  background: rgba(0,0,0,0.4);
}
.au-tier-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s var(--ease-out);
}
.au-tier-card:hover .au-tier-img { transform: scale(1.04); }
.au-tier-placeholder {
  position: absolute; inset: 0; aspect-ratio: auto !important;
  border: none; border-radius: 0;
}
.au-tier-badge {
  position: absolute; left: 14px; top: 14px;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 10px;
  color: var(--dark); background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.au-tier-meta {
  padding: 1.1rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.au-tier-price {
  display: flex; align-items: baseline; gap: 0.35rem;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.au-tier-price .from {
  font-size: 0.7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted);
}
.au-tier-price .amt {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 500;
  letter-spacing: -0.01em;
}
.au-tier-price .unit {
  font-size: 0.78rem; color: var(--text-muted);
  margin-left: -0.2rem;
}
.au-tier-final {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--gold); margin: 0.1rem 0 0;
}
.au-tier-spec {
  font-size: 0.72rem; letter-spacing: 0.06em;
  color: var(--text-muted); margin: 0.15rem 0 0;
  font-variant-numeric: tabular-nums;
}
.au-tier-desc {
  font-size: 0.85rem; line-height: 1.5;
  color: var(--text-muted); margin: 0.25rem 0 0;
}
.sec-light .au-tier-final { color: var(--gold); }
.sec-light .au-tier-spec { color: var(--text-muted-dark); }

/* ── Product description (community modal) ── */
.au-product-desc {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.au-product-desc::-webkit-scrollbar { width: 4px; }
.au-product-desc::-webkit-scrollbar-thumb { background: rgba(204,158,4,0.25); border-radius: 2px; }
.au-product-desc div,
.au-product-desc p {
  margin: 0 0 0.4rem 0;
}
.au-product-desc div:last-child,
.au-product-desc p:last-child { margin-bottom: 0; }
.au-product-desc strong, .au-product-desc b {
  color: var(--white); font-weight: 600;
}
.au-product-desc a {
  color: var(--gold); text-decoration: underline;
}
.au-product-desc ul, .au-product-desc ol {
  padding-left: 1.25rem;
  margin: 0 0 0.6rem 0;
}
.au-product-desc li { margin-bottom: 0.25rem; }
/* Tables hidden by default — the stock Tapstitch size guide doesn't fit
   the dark theme cleanly and isn't useful in a Members-Only modal. When
   curating product descriptions in Shopify, omit the size guide table or
   adjust this rule if a custom table is needed. */
.au-product-desc table { display: none; }
.au-product-desc img { max-width: 100%; height: auto; border-radius: 8px; }

/* ── Color swatches inside tier cards ── */
.au-swatches {
  margin-top: 0.9rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.au-swatch-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.au-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.au-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.12);
}
.au-swatch:hover { transform: translateY(-1px); border-color: var(--gold); }
.au-swatch.sel {
  border: 2px solid var(--gold);
  width: 24px;
  height: 24px;
}

.sec-light .au-tier-card { background: #f7f2ea; border-color: var(--gold); }
.sec-light .au-tier-price { color: var(--dark); }
.sec-light .au-tier-price .from,
.sec-light .au-tier-price .unit,
.sec-light .au-tier-desc { color: var(--text-muted-dark); }
.sec-light .au-product-head h3 { color: var(--dark); }
.sec-light .au-product-head p { color: var(--text-muted-dark); }
.sec-light .au-swatch { background: #ece5d8; border-color: rgba(36,36,36,0.18); }
.sec-light .au-swatch-label { color: var(--text-muted-dark); }

/* ── Steps / Flywheel ── */
.au-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.au-step { text-align: center; position: relative; }
.au-step-num {
  font-family: var(--font-display); font-size: 3.5rem; font-weight: 300;
  color: var(--gold); opacity: 1; line-height: 1; margin-bottom: 1rem;
}
.au-step h3 { margin-bottom: 0.5rem; }
.au-step-connector {
  position: absolute; top: 2rem; right: -1.25rem;
  color: var(--gold); font-size: 1rem; opacity: 1;
}

/* ── Price Tables ── */
.au-price-table { width: 100%; border-collapse: collapse; }
.au-price-table th {
  font-family: var(--font-body); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 600;
  padding: 0.6rem 0.75rem; text-align: right; border-bottom: 1px solid var(--border);
}
.au-price-table th:first-child { text-align: left; }
.au-price-table td {
  padding: 0.65rem 0.75rem; text-align: right; border-bottom: 1px solid rgba(255,255,255,0.03);
  color: var(--white); font-variant-numeric: tabular-nums; font-size: 0.9rem;
}
/* Label column: only left-aligned. Everything else inherits the uniform
   body-cell style above (white, 0.9rem) so the whole table reads identically. */
.au-price-table td:first-child { text-align: left; }
.au-price-table tr:last-child td { border-bottom: none; }
.au-price-table tr:hover td { background: rgba(255,255,255,0.03); }

/* Garment spec line under each tier on the pricing page */
.au-spec-line {
  font-size: 0.82rem; letter-spacing: 0.04em;
  color: var(--text-muted); margin: 0 0 1.5rem;
  font-variant-numeric: tabular-nums;
}
/* Banner above the price tables: the no-hidden-fees promise.
   Outline only — no transparent-gold fill (design rule). Border width
   matches the hero "How It Works" outline button (1.5px). */
.au-price-banner {
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  padding: 0.85rem 1.1rem; margin-bottom: 2rem;
  font-size: 0.9rem; font-weight: 500; line-height: 1.45;
  color: var(--white);
}

/* ── Tier Tabs ── */
.au-tier-tabs { display: flex; justify-content: center; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 2.5rem; }
.au-tier-tab {
  font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.75rem 2rem; cursor: pointer; border-bottom: 2px solid transparent;
  color: var(--white); transition: all 0.2s var(--ease);
  background: none; border-top: none; border-left: none; border-right: none;
}
.au-tier-tab:hover { color: var(--white); }
.au-tier-tab.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── Calculator ── */
.au-calc {
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem; margin-top: 2rem;
  box-shadow: var(--shadow-sm);
}
.au-calc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.au-calc label {
  display: block; font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem;
}
.au-calc select, .au-calc input {
  width: 100%; background: var(--dark); border: 1px solid var(--border);
  border-radius: 6px; color: var(--white); padding: 0.6rem 0.75rem;
  font-family: var(--font-body); font-size: 0.88rem; outline: none;
  transition: border-color 0.3s; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.au-calc input { background-image: none; }
.au-calc select:focus, .au-calc input:focus { border-color: var(--gold); }
.au-calc-result { display: flex; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.au-calc-result-item { flex: 1; }
.au-calc-result-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.au-calc-result-value { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--gold); }
.au-calc-result-sub { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.2rem; }

/* ── Forms ── */
.au-form { display: flex; flex-direction: column; gap: 1.25rem; }
.au-form-group label {
  display: block; font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.4rem;
}
.au-form-group input, .au-form-group select, .au-form-group textarea {
  width: 100%; padding: 0.8rem 1rem; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body); font-size: 0.9rem;
  outline: none; transition: border-color 0.3s, box-shadow 0.3s;
}
.au-form-group input:focus, .au-form-group select:focus, .au-form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold);
}
.au-form-group textarea { resize: vertical; min-height: 120px; }
.au-form-group select { appearance: none; cursor: pointer; }

/* ── Role Cards ── */
.au-role-card {
  padding: 2rem; background: rgba(255,255,255,0.03);
  border: 1.5px solid var(--gold);
  border-radius: 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.au-role-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow), 0 0 18px var(--gold-glow), 0 0 48px var(--gold-glow-soft);
  background: rgba(204,158,4,0.06);
}
.au-role-apply {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold); margin-top: auto; padding-top: 1.25rem;
  transition: gap 0.2s ease;
}
.au-role-card:hover .au-role-apply { gap: 0.55rem; }
.au-role-type {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.au-role-comp {
  font-size: 0.82rem; color: var(--gold); font-weight: 500;
  padding-top: 0.75rem; margin-top: 0.75rem; border-top: 1px solid var(--border);
}

/* ── Product Card ── */
.au-product-card { cursor: pointer; transition: transform 0.3s var(--ease-out); box-shadow: var(--shadow-sm); border-radius: var(--radius); overflow: hidden; }
.au-product-card:hover { transform: translateY(-3px); }
.au-product-org { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.au-product-name { font-family: var(--font-display); font-size: 1rem; font-weight: 500; margin-bottom: 0.2rem; }
.au-product-price { font-size: 0.88rem; color: var(--text-muted); }

/* ── Footer ── */
.au-footer {
  background: var(--dark); border-top: 1px solid var(--gold);
  padding: 4rem 0 2rem;
}
.au-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.au-footer-brand { }
.au-footer-logo {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.au-footer-tagline {
  font-family: var(--font-display); font-style: italic; font-size: 0.92rem;
  color: var(--gold); margin-bottom: 0.75rem; font-weight: 400;
}
.au-footer-col h4 {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.au-footer-col ul { list-style: none; }
.au-footer-col li { margin-bottom: 0.4rem; }
.au-footer-col a, .au-footer-col button {
  font-family: var(--font-body); font-size: 0.85rem; color: var(--text-muted);
  cursor: pointer; background: none; border: none; padding: 0; transition: color 0.2s;
}
.au-footer-col a:hover, .au-footer-col button:hover { color: var(--gold); }
.au-footer-bottom {
  padding-top: 1.5rem; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--text-muted);
}

/* ── Product Selector ── */
.au-product-block { margin: 4rem 0 2.5rem; padding: 2.5rem 0 0.5rem; border-top: 1px solid var(--border); }
.au-product-eyebrow {
  text-align: center; font-family: var(--font-body); font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem;
}
.au-product-selector { display: flex; justify-content: center; gap: 0; margin-bottom: 0.5rem; }
.au-product-btn {
  position: relative; background: transparent; color: var(--text-muted);
  border: 1px solid var(--border); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.85rem 2.5rem;
  cursor: pointer; transition: all 0.25s var(--ease);
}
.au-product-btn:first-child { border-radius: var(--radius) 0 0 var(--radius); border-right: none; }
.au-product-btn:last-child  { border-radius: 0 var(--radius) var(--radius) 0; }
.au-product-btn:hover { color: var(--white); border-color: rgba(255,255,255,0.18); }
.au-product-btn.active {
  background: var(--gold); color: var(--dark); border-color: var(--gold);
  font-weight: 700; box-shadow: 0 0 16px rgba(204,158,4,0.2);
}
.au-product-btn .product-sub {
  display: block; font-size: 0.6rem; letter-spacing: 0.12em;
  font-weight: 400; margin-top: 0.2rem; opacity: 0.7;
}

/* ── Delivery Badges ── */
.au-delivery-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
.au-delivery-item {
  flex: 1; background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem 1.25rem;
}
.au-delivery-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.3rem; }
.au-delivery-val { color: var(--white); font-size: 0.95rem; font-weight: 600; }
.au-delivery-note { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.15rem; }

/* ── Product Modal ── */
.au-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: transparent;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem; animation: fadeIn 0.2s ease;
}
.au-modal {
  background: #242424; border: 3px solid var(--gold);
  border-radius: 24px; width: 100%; max-width: 820px;
  max-height: 90vh; overflow: auto;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; box-shadow: 0 32px 96px rgba(0,0,0,0.75);
  animation: slideUp 0.28s var(--ease-out);
}
.au-modal-img { padding: 2rem; min-width: 0; }
.au-modal-img img { border-radius: 14px; }
.au-modal-body { padding: 2.5rem 2.5rem 2.5rem 0; display: flex; flex-direction: column; min-width: 0; }
.au-modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: var(--white); width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 0.9rem; transition: background 0.2s; z-index: 1;
}
.au-modal-close:hover { background: rgba(255,255,255,0.14); }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.au-size-grid { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 0.6rem 0 1.25rem; }
.au-size-btn {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  padding: 0.45rem 0.9rem; border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent; color: var(--text-muted); cursor: pointer; transition: all 0.18s;
}
.au-size-btn:hover { border-color: var(--gold); color: var(--white); }
.au-size-btn.sel { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 700; }
.au-qty-row { display: flex; align-items: center; gap: 1rem; margin: 0.6rem 0 1.25rem; }
.au-qty-btn {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: var(--white); font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.18s;
}
.au-qty-btn:hover { background: rgba(255,255,255,0.14); }

/* ── Cart nav badge ── */
.au-cart-icon { position: relative; display: flex; align-items: center; }
.au-cart-badge {
  position: absolute; top: -5px; right: -8px;
  background: var(--gold); color: var(--dark); font-size: 0.5rem; font-weight: 800;
  min-width: 15px; height: 15px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; padding: 0 3px;
}

/* ── Cart page items ── */
.au-cart-item {
  display: grid; grid-template-columns: 72px 1fr auto; gap: 1.5rem;
  align-items: center; padding: 1.25rem;
  background: rgba(255,255,255,0.03); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color 0.2s;
}
.au-cart-item:hover { border-color: var(--gold); }
.au-cart-summary {
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border);
  display: flex; justify-content: flex-end;
}
.au-cart-totals { min-width: 300px; }
.au-cart-row { display: flex; justify-content: space-between; margin-bottom: 0.6rem; }

@media (max-width: 768px) {
  .au-modal { grid-template-columns: 1fr; }
  .au-modal-img { padding: 1.5rem 1.5rem 0; }
  .au-modal-body { padding: 1.5rem; }
  .au-cart-item { grid-template-columns: 56px 1fr; }
}

/* ── Contact Promise ── */
.au-promise {
  padding: 1.5rem; background: rgba(204,158,4,0.04);
  border: 1px solid var(--gold-border); border-radius: var(--radius);
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}
.au-promise h3 { font-size: 1.1rem; color: var(--gold); margin-bottom: 0.3rem; }
.au-promise p { font-size: 0.88rem; }

/* ── Scroll Reveal ── */
.au-reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.au-reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .au-nav-toggle { display: flex; }
  .au-nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: rgba(36,36,36,0.98); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem;
    border-bottom: 1px solid var(--border);
  }
  .au-nav-links.open { display: flex; }
  .hero-horizon .au-hero-content { grid-template-columns: 1fr; }
  .hero-horizon .hero-visual { display: none; }
  .hero-editorial .hero-bottom { flex-direction: column; align-items: flex-start; }
  .au-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .au-steps { grid-template-columns: 1fr; gap: 2rem; }
  .au-step-connector { display: none; }
  .au-delivery-row { flex-direction: column; }
  .au-calc-result { flex-direction: column; gap: 1rem; }
  .au-product-btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .au-section { padding: 4rem 0; }
  h1 { font-size: clamp(2rem, 5vw, 3rem); }
  .au-tier-grid { grid-template-columns: 1fr; }
  .au-product-head { flex-direction: column; gap: 0.5rem; }
  .au-product-head p { text-align: left; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .au-tier-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}
@media (max-width: 550px) {
  .au-footer-grid { grid-template-columns: 1fr; }
}

/* ── Order Journey timeline (home) — 3-point before/during/after ──
   Centered spine attaches to the heading underline (au-journey-rule) and
   runs past the last pill, fading out. Problem left, Aureal's fix right. */
.au-journey { position: relative; max-width: 900px; margin: 1.5rem auto 0; padding-bottom: 3rem; }
/* horizontal cap = the underline under the heading; the spine drops from it */
.au-journey-rule {
  width: 48px; height: 2px; background: var(--gold);
  margin: 0 auto; position: relative; z-index: 1;
}
/* vertical spine: starts at the rule, fades out below the last pill */
.au-journey-spine {
  position: absolute; left: 50%; top: 1px; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold) 82%, rgba(204,158,4,0) 100%);
  transform: translateX(-50%); z-index: 0;
}
.au-journey-heads {
  display: grid; grid-template-columns: 1fr 200px 1fr; align-items: end;
  margin: 2rem 0 1.5rem;
}
.au-journey-head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; }
.au-journey-head.left { text-align: right; padding-right: 1.6rem; color: var(--text-muted-dark); }
.au-journey-head.right { text-align: left; padding-left: 1.6rem; color: var(--gold); }
.au-journey-stage {
  display: grid; grid-template-columns: 1fr 200px 1fr; align-items: center; margin-bottom: 2.2rem;
}
.au-journey-stage:last-of-type { margin-bottom: 0; }
/* problem/solution cells are flex rows: text + a flanking marker that stays
   vertically centered against the whole text block (not inline on line 1). */
.au-journey-problem, .au-journey-solution { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; line-height: 1.5; }
.au-journey-problem { justify-content: flex-end; padding-right: 1.2rem; }
.au-journey-solution { padding-left: 1.2rem; }
.au-journey-text { flex: 1; }
.au-journey-problem .au-journey-text { text-align: right; color: var(--text-muted-dark); }
.au-journey-solution .au-journey-text { text-align: left; color: var(--dark); font-weight: 500; }
/* dedicated markers — bigger, so the ✗ / ✓ contrast reads at a glance */
.au-journey-mark { flex-shrink: 0; font-size: 1.5rem; font-weight: 700; line-height: 1; }
.au-journey-mark.x { color: var(--text-muted-dark); opacity: 0.7; }
.au-journey-mark.check { color: var(--gold); }
/* the point on the spine: outline pill, section-colored bg only masks the line */
.au-journey-pill {
  justify-self: center; position: relative; z-index: 1;
  border: 1.5px solid var(--gold); background: var(--white); color: var(--dark);
  border-radius: 999px; padding: 0.5rem 1.25rem;
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
}
@media (max-width: 767px) {
  /* Underline attaches to the heading on mobile; gap between rule and first stage. */
  .au-journey { margin-top: 0.4rem; padding-bottom: 2rem; }
  .au-journey-rule { margin-bottom: 2rem; }
  .au-journey-heads { display: none; }
  .au-journey-spine { top: 2.5rem; left: 9px; }
  .au-journey-stage { grid-template-columns: 1fr; gap: 0.55rem; margin-bottom: 2.2rem; padding-left: 2.6rem; }
  /* Mobile reading order: pill (stage label) → problem (✗) → solution (✓). */
  .au-journey-pill { justify-self: start; order: -1; margin-bottom: 0.15rem; }
  .au-journey-problem { order: 1; }
  .au-journey-solution { order: 2; }
  .au-journey-problem, .au-journey-solution { justify-content: flex-start; padding: 0 !important; }
  .au-journey-problem .au-journey-text, .au-journey-solution .au-journey-text { text-align: left !important; }
  /* keep both markers leading (near the left spine) so the eye reads them first */
  .au-journey-problem { flex-direction: row-reverse; justify-content: flex-end; }
}
