/* ==========================================================================
   Goat Status Marketing — Stylesheet
   Brand palette (from LOGO kit): Rich Gold #C9A84C · Deep Black #0A0A0A ·
   Medallion Gold #8B6914 · Pure White #FFFFFF · Charcoal #1A1A1A
   ========================================================================== */

:root {
  --black: #0A0A0A;
  --charcoal: #1A1A1A;
  --surface: #141414;
  --surface-2: #1e1c17;
  --gold: #C9A84C;
  --gold-light: #E8CE84;
  --gold-deep: #8B6914;
  --white: #FFFFFF;
  --text: #f2efe8;
  --muted: #a8a294;
  --border: rgba(201, 168, 76, 0.16);
  --border-strong: rgba(201, 168, 76, 0.38);
  --grad-gold: linear-gradient(100deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1160px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.55);
  --glow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
  /* Tinos: metric twin of Times New Roman — bold classical serif display;
     Times itself is the fallback so the look never flashes different.
     Jost: geometric deco sans echoing the medallion's deco pendant */
  --font-head: "Tinos", "Times New Roman", Times, serif;
  --font-body: "Jost", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.14;
  margin: 0 0 0.5em;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 5.2vw, 3.9rem); letter-spacing: 0.005em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.28rem; letter-spacing: 0.02em; }

p { margin: 0 0 1em; }

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

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Anchor targets clear the fixed header */
[id] { scroll-margin-top: 92px; }

/* Visible keyboard focus on the dark theme */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }

::selection { background: rgba(201, 168, 76, 0.35); color: var(--white); }

/* ---------- Shared bits ---------- */

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* diamonds flanking every eyebrow — royal-certificate style */
.eyebrow::before,
.eyebrow::after {
  content: "◆";
  font-size: 0.5em;
  color: var(--gold-deep);
  vertical-align: 0.25em;
  margin: 0 14px;
  letter-spacing: 0;
}

.lead { color: var(--muted); font-size: 1.08rem; max-width: 620px; }

.grad-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* animated gold sheen sweep */
.sheen {
  background: linear-gradient(100deg,
    var(--gold-deep) 0%, var(--gold) 25%, #f4e3ae 42%,
    var(--gold-light) 50%, #f4e3ae 58%, var(--gold) 75%, var(--gold-deep) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sheen-sweep 5.5s ease-in-out infinite;
}

@keyframes sheen-sweep {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}

.section { padding: 104px 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--black), #121008 50%, var(--black)); }

/* centered heads with an ornamental rule — classical symmetry */
.section-head { max-width: 760px; margin: 0 auto 60px; text-align: center; }
.section-head .lead { margin: 0 auto; }

.section-head::after {
  content: "";
  display: block;
  width: 150px;
  height: 1px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold) 35%, var(--gold) 65%, transparent);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
  will-change: transform;
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

.btn-gold {
  background: var(--grad-gold);
  color: #140f02;
  box-shadow: 0 6px 26px rgba(201, 168, 76, 0.3), inset 0 0 0 1px rgba(255, 253, 244, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 10px 38px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--gold-light);
  border-color: var(--border-strong);
  background: rgba(201, 168, 76, 0.04);
}

.btn-ghost:hover {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), 0 12px 40px rgba(0, 0, 0, 0.45);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  width: 44px; height: 44px;
  filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.35));
}

.brand-text { display: flex; flex-direction: column; line-height: 1.05; }

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.18rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

.brand-sub {
  font-family: var(--font-head);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
}

.main-nav { display: flex; gap: 28px; }

.main-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 6px 0;
  position: relative;
  transition: color 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1.5px;
  background: var(--grad-gold);
  transition: right 0.3s ease;
}

.main-nav a:hover, .main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after, .main-nav a.active::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px 24px 22px;
  background: rgba(10, 10, 10, 0.97);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  color: var(--text);
  padding: 11px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu .btn { margin-top: 14px; text-align: center; border-bottom: none; color: #140f02; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 132px 0 90px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  will-change: transform;
}

.glow-a {
  width: 640px; height: 640px;
  right: -140px; top: -80px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.22), transparent 65%);
  animation: drift-a 16s ease-in-out infinite alternate;
}

.glow-b {
  width: 520px; height: 520px;
  left: -180px; bottom: -160px;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.18), transparent 65%);
  animation: drift-b 20s ease-in-out infinite alternate;
}

@keyframes drift-a {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-60px, 50px) scale(1.12); }
}

@keyframes drift-b {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(70px, -40px) scale(1.08); }
}

/* crest layout: medallion enthroned above centered copy */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 34px;
  position: relative;
  max-width: 860px;
}

.hero-art { order: -1; }

.hero-copy .lead { font-size: 1.16rem; margin-inline: auto; }

.hero-cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 30px; }

.hero-note {
  margin-top: 26px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.medallion {
  width: min(330px, 66vw);
  height: auto;
  /* full lockup (medallion + wordmark) with true transparency — no mask needed */
  filter: drop-shadow(0 18px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 34px rgba(201, 168, 76, 0.22));
  animation: medallion-float 7s ease-in-out infinite;
  will-change: transform;
}


.medallion-glow {
  position: absolute;
  width: 76%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.3), rgba(201, 168, 76, 0.06) 55%, transparent 72%);
  filter: blur(24px);
  animation: glow-pulse 7s ease-in-out infinite;
}

@keyframes medallion-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.75; transform: translateY(-6%) scale(1); }
  50% { opacity: 1; transform: translateY(-6%) scale(1.06); }
}

/* ---------- Split layouts ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* wide children (device trio etc.) must shrink, never blow out the grid */
.split > * { min-width: 0; }

/* ---------- Feature list (flagship) ---------- */

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 26px;
}

.feature-list li {
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm);
  background: linear-gradient(120deg, rgba(201, 168, 76, 0.05), rgba(20, 20, 20, 0.6));
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-list li:hover {
  transform: translateX(6px);
  border-color: var(--border-strong);
  box-shadow: var(--glow-gold);
}

.feature-list h3 { margin-bottom: 4px; color: var(--gold-light); }
.feature-list p { margin: 0; color: var(--muted); font-size: 0.97rem; }

/* ---------- Phone mockup ---------- */

.mockup-wrap {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.mockup-glow {
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18), transparent 68%);
  filter: blur(30px);
}

/* --- device trio: laptop + tablet + phone, one lead story --- */

.device-trio {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* every device dimension below is in em — this one clamp scales the
     whole graphic fluidly to the viewport (540px design width / 16px) */
  font-size: clamp(8.5px, calc((100vw - 48px) / 33.75), 15.5px);
}

.dev { will-change: transform; }

@keyframes dev-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}

.laptop { z-index: 1; animation: dev-float 9s ease-in-out infinite; }

.lap-screen {
  width: 18.75em;
  border: 0.56em solid #23201a;
  border-bottom-width: 0.44em;
  border-radius: 0.88em 0.88em 0 0;
  background: #0d0c0a;
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.lap-base {
  width: 21.75em;
  height: 0.69em;
  margin: 0 -1.5em;
  background: linear-gradient(180deg, #353025, #171512);
  border-radius: 0.13em 0.13em 0.75em 0.75em;
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-top: none;
}

.tablet {
  width: 9.38em;
  margin-left: -2.25em;
  z-index: 2;
  padding: 0.5em;
  border-radius: 1em;
  background: linear-gradient(160deg, #23201a, #121212);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  animation: dev-float 7.5s ease-in-out 0.6s infinite;
}

.tab-screen {
  background: #0d0c0a;
  border-radius: 0.63em;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.88em 0.75em;
  height: 12.25em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  overflow: hidden;
}

.phone2 {
  width: 6.75em;
  margin-left: -1.75em;
  z-index: 3;
  padding: 0.38em;
  border-radius: 1.13em;
  background: linear-gradient(160deg, #23201a, #121212);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  animation: dev-float 6.5s ease-in-out 1.2s infinite;
}

.ph-screen {
  background: #0d0c0a;
  border-radius: 0.81em;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 0.75em 0.5em;
  /* fixed em height: the phone keeps true handset proportions at every
     scale — px-floored text once made it stretch taller than the laptop */
  height: 11.13em;
  overflow: hidden;
}

.dash-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.56em;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0 0 0.45em;
}

.bars {
  display: flex;
  align-items: flex-end;
  gap: 0.44em;
  height: 4.75em;
  padding-bottom: 0.13em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.18);
  margin-bottom: 0.38em;
}

.bars i {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold-deep));
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: bar-grow 0.9s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
}

@keyframes bar-grow {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}

.bubble {
  font-family: var(--font-body);
  font-size: 0.59em;
  line-height: 1.35;
  padding: 0.63em 0.84em;
  border-radius: 0.95em;
  margin-bottom: 0.63em;
  animation: msg-cycle 9s ease-in-out infinite;
  opacity: 0;
}

.bubble.in {
  background: #1e1c17;
  color: #cfc9bb;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom-left-radius: 3px;
}

.bubble.out {
  background: var(--grad-gold);
  color: #140f02;
  font-weight: 500;
  border-bottom-right-radius: 3px;
}

@keyframes msg-cycle {
  0% { opacity: 0; transform: translateY(6px); }
  6%, 82% { opacity: 1; transform: translateY(0); }
  92%, 100% { opacity: 0; transform: translateY(-4px); }
}

.m-nav {
  display: flex;
  align-items: center;
  gap: 0.5em;
  padding: 1em 0.88em 0.63em;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
}

.m-logo {
  width: 1em; height: 1em;
  border-radius: 50%;
  background: var(--grad-gold);
}

.m-title {
  font-family: var(--font-head);
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  flex: 1;
}

.m-burger { display: flex; flex-direction: column; gap: 0.19em; }
.m-burger i { width: 0.88em; height: 1.5px; background: var(--gold); border-radius: 2px; }

.m-hero {
  padding: 1.13em 0.88em 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  background: linear-gradient(140deg, rgba(201, 168, 76, 0.12), transparent 70%);
}

.m-line {
  display: block;
  height: 0.5em;
  border-radius: 0.25em;
  background: rgba(255, 255, 255, 0.14);
}

.m-line.w90 { width: 90%; }
.m-line.w70 { width: 70%; }
.m-line.w60 { width: 60%; }
.m-line.w50 { width: 50%; }

.m-call {
  margin-top: 0.5em;
  align-self: flex-start;
  font-size: 0.62em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #140f02;
  background: var(--grad-gold);
  border-radius: 999px;
  padding: 0.71em 1.6em;
}

.m-call.pulse { animation: call-pulse 2.2s ease-in-out infinite; }

@keyframes call-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.55); }
  55% { box-shadow: 0 0 0 1.2em rgba(201, 168, 76, 0); }
}

.m-stars {
  padding: 0.63em 0.88em 0.25em;
  color: var(--gold);
  font-size: 0.72em;
  letter-spacing: 0.12em;
}

.m-stars em {
  font-style: normal;
  font-size: 0.83em;
  color: var(--muted);
  letter-spacing: 0.02em;
  margin-left: 0.52em;
}

.m-tiles { display: flex; gap: 0.5em; padding: 0.5em 0.88em; }

.m-tile {
  flex: 1;
  height: 3.38em;
  border-radius: 0.5em;
  background: linear-gradient(140deg, #2a2416, #171512);
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.m-tile.alt { background: linear-gradient(140deg, #322a14, #1a1815); }


/* ---------- Cards (shared) ---------- */

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  overflow: hidden;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* inner hairline — double-frame like a royal certificate */
.card::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.card::before {
  /* cursor-following gold spotlight (driven by --mx/--my from JS) */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(201, 168, 76, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card:hover { transform: translateY(-6px); border-color: var(--border-strong); box-shadow: var(--shadow), var(--glow-gold); }
.card:hover::before { opacity: 1; }

/* ---------- Growth ladder ---------- */

.ladder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: stretch; /* uniform card heights — the 01→04 tags tell the ladder story */
}

.addon-tag {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.card-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 16px 0 14px;
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(201, 168, 76, 0.16), rgba(139, 105, 20, 0.08));
  border: 1px solid var(--border);
}

.ladder-card h3 { margin-bottom: 6px; }

.card-job { color: var(--gold-light); font-size: 0.95rem; margin-bottom: 12px; }

.ladder-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.ladder-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.ladder-card li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.6rem;
  color: var(--gold);
}

.ladder-note {
  margin: 42px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

/* ---------- Industries ---------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ind-card h3 { color: var(--gold-light); margin-bottom: 4px; }
.ind-card p { margin: 0; color: var(--muted); font-size: 0.95rem; }

.ind-card.wildcard {
  border-style: dashed;
  border-color: var(--border-strong);
  background: linear-gradient(140deg, rgba(201, 168, 76, 0.07), var(--surface));
}

/* ---------- Process ---------- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 760px;
  position: relative;
}

.steps::before {
  /* gold connecting line, drawn in via JS-driven scaleY */
  content: "";
  position: absolute;
  left: 31px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  transform-origin: top;
  transform: scaleY(var(--line, 0));
  transition: transform 1.1s ease;
  opacity: 0.6;
}

.step {
  display: flex;
  gap: 28px;
  padding: 26px 0;
  position: relative;
}

.step-num {
  flex: 0 0 64px;
  height: 64px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--gold);
  background: var(--black);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  /* double ring — signet-seal look */
  box-shadow: 0 0 0 4px var(--black), 0 0 0 5px rgba(201, 168, 76, 0.3), var(--glow-gold);
  z-index: 1;
}

.step h3 { margin-bottom: 4px; }
.step p { margin: 0; color: var(--muted); }

/* ---------- About ---------- */

.about-split { align-items: start; }

.about-text p { color: var(--muted); }
.about-text .btn { margin-top: 10px; }

.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.value-list li {
  padding: 20px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--muted);
  font-size: 0.97rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-list li:hover { transform: translateX(6px); border-color: var(--border-strong); }

.value-list strong { color: var(--gold-light); display: block; margin-bottom: 2px; font-weight: 600; }

/* ---------- Contact / CTA ---------- */

.section-cta { overflow: hidden; }

.cta-glow {
  position: absolute;
  left: 50%;
  top: -160px;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.14), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.contact-split { align-items: start; }

.contact-info h3 { color: var(--gold-light); }

.call-big {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 14px 0 18px;
  padding: 20px 34px;
  border-radius: var(--radius);
  background: var(--grad-gold);
  color: #140f02;
  box-shadow: 0 10px 40px rgba(201, 168, 76, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform;
}

.call-big:hover { transform: translateY(-3px); box-shadow: 0 16px 54px rgba(201, 168, 76, 0.5); }

.call-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.8;
}

.call-num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; letter-spacing: 0.02em; }

.email-line { display: block; color: var(--muted); margin-bottom: 22px; }
.email-line:hover { color: var(--gold-light); }

.assurances {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.assurances li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.assurances li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.cta-form {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(10, 10, 10, 1), inset 0 0 0 2px rgba(201, 168, 76, 0.12);
}

.form-row { margin-bottom: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.cta-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 7px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  background: #0e0d0b;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 12px 14px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
}

.cta-form textarea { resize: vertical; }

.cta-form .btn { width: 100%; }

.form-note { margin: 14px 0 0; font-size: 0.92rem; min-height: 1.4em; }
.form-note.err { color: #e58f8f; }
.form-note.ok { color: #a8d5a2; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: #0c0b09;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}

.footer-brand img { filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3)); }

.footer-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.26rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin: 14px 0 4px;
}

.footer-name span { color: var(--gold); }

.footer-tag { color: var(--muted); font-size: 0.95rem; }

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-nav h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.footer-nav a {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  padding: 5px 0;
  transition: color 0.25s ease;
}

.footer-nav a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 22px;
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-bottom p { margin: 0; }

.footer-win {
  font-family: var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold);
}

.footer-win a { color: inherit; transition: color 0.25s ease, text-shadow 0.25s ease; }
.footer-win a:hover { color: var(--gold-light); text-shadow: 0 0 14px rgba(201, 168, 76, 0.5); }

.footer-bottom a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Policy pages (privacy.html / terms.html) ---------- */

.policy-body h3 { margin-top: 2.2em; color: var(--gold-light); }
.policy-body p, .policy-body li { color: var(--muted); }
.policy-body ul { padding-left: 22px; margin: 0 0 1em; }
.policy-body li { margin-bottom: 6px; }
.policy-body strong { color: var(--text); }

/* ---------- Back to top ---------- */

.back-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: rgba(10, 10, 10, 0.85);
  color: var(--gold);
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.back-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-top:hover { box-shadow: var(--glow-gold); }

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
}

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

/* ---------- Responsive ---------- */

/* two-column range: trio must track its half-width column, not the viewport */
@media (min-width: 881px) {
  .device-trio { font-size: clamp(8.5px, calc((50vw - 60px) / 33.75), 15.5px); }
}

@media (max-width: 1020px) {
  .ladder { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.open { display: flex; }

  .hero { padding-top: 110px; min-height: 0; }
  .medallion { width: min(250px, 62vw); }
  .eyebrow { font-size: 0.8rem; }
  .eyebrow::before, .eyebrow::after { margin: 0 8px; }

  .split { grid-template-columns: 1fr; gap: 44px; }
  .section { padding: 76px 0; }
  .section-head { margin-bottom: 40px; }
}

@media (max-width: 620px) {
  h1 { font-size: clamp(2rem, 8.6vw, 2.5rem); }
  h2 { font-size: clamp(1.55rem, 6.4vw, 1.9rem); }
  .section-head { margin-bottom: 34px; }
  .section-head .lead { font-size: 1rem; }
  .split { gap: 36px; }
  .ladder { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { left: 27px; }
  .step { gap: 20px; }
  .step-num { flex-basis: 54px; height: 54px; font-size: 1rem; }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal { opacity: 1; transform: none; }
  .steps::before { transform: scaleY(1); }
  .bubble { opacity: 1; animation: none; }
}
