/* ============================================================
   KaratOS — marketing site
   Palette: warm ivory + deep navy ink + antique gold accent.
   Type: Jost (display) + Inter (UI/body) — elegant sans-serif.
   ============================================================ */

:root {
  --bg: #faf8f3;
  --bg-2: #f2eee3;
  --surface: #ffffff;
  --surface-2: #fbf9f3;
  --line: #e6e0d2;
  --line-soft: #efeadd;
  --text: #17212f;
  --muted: #545d6a;
  --muted-2: #6f7581;
  --gold: #8a6712;
  --gold-light: #b0842f;
  --gold-dark: #6f4f0d;
  --cream: #faf6ee;

  --maxw: 1160px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 1px 2px rgba(24, 34, 49, 0.05), 0 26px 60px -30px rgba(24, 34, 49, 0.24);
  --shadow-gold: 0 22px 60px -26px rgba(154, 115, 20, 0.32);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --font-display: "Jost", system-ui, -apple-system, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
}
::selection {
  background: rgba(198, 161, 91, 0.3);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #1a1409;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 6vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
}
.display em {
  font-style: italic;
  color: var(--gold-light);
}
.display-sm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--muted);
  max-width: 46ch;
}
.lede em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), color 0.2s var(--ease),
    border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active {
  transform: translateY(1px);
}
.btn-lg {
  padding: 15px 30px;
  font-size: 1.02rem;
}
.btn-block {
  width: 100%;
}
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1409;
  box-shadow: 0 1px 2px rgba(24, 34, 49, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.btn-gold:hover {
  filter: brightness(1.05);
  box-shadow: var(--shadow-gold);
}
.btn-outline {
  border-color: var(--line);
  color: var(--text);
  background: var(--surface);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}
.btn-ghost {
  color: var(--muted);
}
.btn-ghost:hover {
  color: var(--text);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(250, 248, 243, 0.82);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.brand-mark img,
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.brand-name {
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.brand-name span {
  color: var(--gold);
}
.nav {
  display: flex;
  gap: 30px;
  margin-inline: auto;
}
.nav a {
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav a:hover {
  color: var(--text);
}
.nav a:hover::after {
  width: 100%;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 22px;
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
/* The `hidden` attribute must win over the display above. */
.mobile-menu[hidden] {
  display: none;
}
.mobile-menu a {
  padding: 12px 4px;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a.btn {
  margin-top: 10px;
  border: 0;
  justify-content: center;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 150px 0 0;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -260px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 700px;
  background: radial-gradient(closest-side, rgba(198, 161, 91, 0.16), transparent 72%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  margin: 6px 0 22px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  margin: 30px 0 16px;
  flex-wrap: wrap;
}
.hero-note {
  color: var(--muted-2);
  font-size: 0.88rem;
}

/* Device mockup */
.device {
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff, var(--surface-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s var(--ease);
}
.hero-visual:hover .device {
  transform: perspective(1400px) rotateY(-3deg) rotateX(1deg);
}
.device-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.device-bar .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d5cdbc;
}
.device-url {
  margin-left: 10px;
  font-size: 0.76rem;
  color: var(--muted-2);
  letter-spacing: 0.02em;
}
.device-screen {
  padding: 22px;
}
.mock-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mock-eyebrow {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}
.mock-sub {
  font-size: 0.82rem;
  color: var(--muted-2);
}
.mock-scale {
  font-size: 1.4rem;
  color: var(--gold);
}
.karat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}
.karat {
  background: linear-gradient(160deg, rgba(198, 161, 91, 0.12), rgba(198, 161, 91, 0.04));
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 12px;
  padding: 12px 14px;
}
.karat span {
  font-size: 0.76rem;
  color: var(--muted);
}
.karat b {
  display: block;
  font-size: 1.35rem;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.karat small {
  font-size: 0.68rem;
  color: var(--muted-2);
}
.mock-total {
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.mock-figure {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.mock-figure span {
  font-size: 1.1rem;
}
.mock-meta {
  font-size: 0.78rem;
  color: var(--muted-2);
  margin-top: 4px;
}

/* Ticker */
.ticker {
  margin-top: 90px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 44px;
  padding: 14px 22px;
  animation: ticker 34s linear infinite;
}
.ticker-track span {
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}
.ticker-track b {
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Trust ---------- */
.trust {
  padding: 44px 0;
  border-bottom: 1px solid var(--line-soft);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.trust-lead {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  max-width: 24ch;
}
.trust-stats {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}
.trust-stats b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-light);
}
.trust-stats span {
  font-size: 0.82rem;
  color: var(--muted-2);
}

/* ---------- Sections ---------- */
.section {
  padding: 100px 0;
}
.section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.section-head {
  max-width: 640px;
  margin-bottom: 54px;
}
.section-sub {
  color: var(--muted);
  margin-top: 14px;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 1px 2px rgba(24, 34, 49, 0.04);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 161, 91, 0.4);
  box-shadow: var(--shadow);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 13px;
  background: linear-gradient(160deg, rgba(198, 161, 91, 0.18), rgba(198, 161, 91, 0.05));
  border: 1px solid rgba(198, 161, 91, 0.28);
  color: var(--gold-light);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.97rem;
}

/* ---------- How it works / videos ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 16px 0 6px;
}
.step-card p {
  color: var(--muted);
  font-size: 0.92rem;
}
.video-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(198, 161, 91, 0.14), transparent 60%),
    linear-gradient(180deg, var(--surface-2), var(--surface));
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.video-frame:hover {
  border-color: rgba(198, 161, 91, 0.45);
  transform: translateY(-3px);
}
.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
}
.play {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(198, 161, 91, 0.92);
  color: #1a1409;
  display: grid;
  place-items: center;
  padding-left: 4px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 10px 30px -10px rgba(198, 161, 91, 0.6);
}
.play:hover {
  transform: scale(1.07);
}
.video-caption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-size: 0.82rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* ---------- Gold market ---------- */
.gold-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  display: grid;
  gap: 13px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.16);
  border: 1px solid rgba(198, 161, 91, 0.4);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 1.6px solid var(--gold-light);
  border-bottom: 1.6px solid var(--gold-light);
  transform: rotate(-45deg);
}
.pill {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  border: 1px solid rgba(198, 161, 91, 0.35);
  border-radius: 999px;
  padding: 2px 9px;
  margin-left: 6px;
  vertical-align: middle;
}
.rate-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 50%), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.rate-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 0.86rem;
}
.rate-card-head .live {
  color: #157347;
  font-size: 0.76rem;
}
.rate-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
}
.rate-list li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
}
.rate-list li:last-child {
  border-bottom: 0;
}
.rate-list span {
  width: 46px;
  color: var(--muted);
  font-size: 0.9rem;
}
.rate-list b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-light);
  font-variant-numeric: tabular-nums;
  margin-left: auto;
}
.rate-list small {
  color: var(--muted-2);
  font-size: 0.78rem;
}
.rate-foot {
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.price-card.featured {
  border-color: rgba(198, 161, 91, 0.5);
  background: linear-gradient(180deg, rgba(198, 161, 91, 0.08), transparent 40%), var(--surface);
  box-shadow: var(--shadow-gold);
  transform: translateY(-8px);
}
.badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  color: #1a1409;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.price {
  font-family: var(--font-display);
  font-size: 2.7rem;
  color: var(--gold-light);
  line-height: 1;
}
.price .cur {
  font-size: 1.3rem;
  vertical-align: super;
  color: var(--muted);
}
.price .per {
  font-size: 1rem;
  color: var(--muted);
}
.price-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 8px 0 20px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 11px;
}
.price-card ul li {
  position: relative;
  padding-left: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}
.price-card ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 3.5px;
  border-left: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card .btn {
  width: 100%;
}

/* ---------- Trial CTA ---------- */
.trial {
  text-align: center;
}
.trial-inner {
  max-width: 720px;
  margin-inline: auto;
}
.trial .lede {
  margin: 18px auto 30px;
  max-width: 58ch;
}
.trial .lede em {
  color: var(--gold-light);
  font-style: normal;
}

/* ---------- Demo form ---------- */
.demo-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: start;
}
.demo-points {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}
.demo-points li {
  position: relative;
  padding-left: 30px;
  color: var(--text);
}
.demo-points li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.demo-contact {
  color: var(--muted);
  margin-top: 22px;
}
.demo-contact a {
  color: var(--gold-light);
  border-bottom: 1px solid rgba(221, 192, 136, 0.4);
}
.demo-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.field {
  margin-bottom: 16px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 7px;
}
.field .opt {
  font-weight: 400;
  color: var(--muted-2);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea {
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.16);
}
.field input.invalid,
.field select.invalid {
  border-color: #c05353;
  box-shadow: 0 0 0 3px rgba(192, 83, 83, 0.14);
}
.demo-form .btn {
  margin-top: 6px;
}
.form-fineprint {
  font-size: 0.78rem;
  color: var(--muted-2);
  text-align: center;
  margin-top: 14px;
}
.form-success {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(21, 115, 71, 0.08);
  border: 1px solid rgba(21, 115, 71, 0.3);
  color: #14663f;
  font-size: 0.92rem;
  text-align: center;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 780px;
}
.faq-list details {
  border-bottom: 1px solid var(--line-soft);
  padding: 6px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 40px 18px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text);
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 1.5rem;
  transition: transform 0.2s var(--ease);
}
.faq-list details[open] summary::after {
  content: "–";
}
.faq-list details p {
  color: var(--muted);
  padding: 0 40px 20px 0;
  font-size: 0.97rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line-soft);
  padding: 64px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
}
.footer-tag {
  color: var(--muted);
  margin-top: 14px;
  max-width: 30ch;
  font-size: 0.94rem;
}
.footer-col h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--muted);
  padding: 6px 0;
  font-size: 0.94rem;
  transition: color 0.18s var(--ease);
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-small {
  color: var(--muted-2);
  font-size: 0.85rem;
  margin-top: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted-2);
  font-size: 0.86rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .ticker-track,
  html {
    animation: none;
    scroll-behavior: auto;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav,
  .header-actions {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .hero-grid,
  .gold-grid,
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero {
    padding-top: 120px;
  }
  .hero-visual {
    max-width: 460px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
  .price-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  body {
    font-size: 16px;
  }
  .section {
    padding: 72px 0;
  }
  .features-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .trust-stats {
    gap: 22px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .hero-cta .btn {
    flex: 1;
  }
}
