/* ==========================================================================
   Vault Easy — Design Tokens & Base
   ========================================================================== */

:root{
  --void:        #050505;
  --panel:       #0f0e0c;
  --panel-raised:#17150f;
  --panel-line:  #1f1c15;

  --gold:        #d4af37;
  --gold-soft:   #f0d77c;
  --gold-dim:    #8a6e22;
  --gold-line:   rgba(212,175,55,0.14);
  --gold-wash:   rgba(212,175,55,0.06);

  --ink:         #f1ede2;
  --ink-dim:     #bfb7a5;
  --ink-faint:   #948a73;

  --up:          #6fae8c;
  --down:        #c26b5f;

  --font-display: 'Space Grotesk', 'Century Gothic', 'Futura', 'Avenir Next', 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:    'JetBrains Mono', 'Cascadia Code', Consolas, 'SFMono-Regular', monospace;

  --rail: 1200px;
  --gap-sm: 12px;
  --gap-md: 24px;
  --gap-lg: 40px;
  --gap-xl: 64px;

  --ease: cubic-bezier(.16,.84,.44,1);
}

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

html{ scroll-behavior: smooth; overflow-x: hidden; }
@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; }
}

body{
  margin: 0;
  overflow-x: hidden; /* decorative elements (hero float badges, frame corners) use
     negative offsets; this keeps a stray offset from ever opening a horizontal
     scrollbar on narrow screens instead of silently disturbing the layout */
  background: var(--void);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a{ color: inherit; text-decoration: none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p{ margin: 0; color: var(--ink-dim); }

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

section{ position: relative; }

.section-pad{ padding: var(--gap-xl) 0 !important; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.eyebrow::before{
  content: "";
  width: 22px; height: 1px;
  background: var(--gold-dim);
  display: inline-block;
}

.section-head{
  margin-bottom: var(--gap-lg);
}
.section-head h2{
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 16px;
}
.section-head p{ font-size: 1.05rem; }

.tabular{ font-variant-numeric: tabular-nums; font-family: var(--font-mono); }

/* focus states */
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #0d0b06;
}
.btn-gold:hover{
  box-shadow: 0 8px 30px -6px rgba(212,175,55,0.55);
  transform: translateY(-2px);
}
.btn-ghost{
  background: transparent;
  border-color: rgba(241,237,226,0.18);
  color: var(--ink);
}
.btn-ghost:hover{
  border-color: var(--gold-dim);
  background: var(--gold-wash);
}
.btn-sm{ padding: 10px 20px; font-size: 0.85rem; }

/* ==========================================================================
   Navigation
   ========================================================================== */

.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
  /* Solid-ish by default (not just once JS flags a scroll) so nav text is
     never left to read directly against page content sliding underneath it. */
  background: rgba(5,5,5,0.75);
}
.nav.is-scrolled{
  padding: 14px 0;
  background: rgba(5,5,5,0.95);
  border-bottom-color: var(--gold-line);
}
.nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1440px;
}
.brand{
  display: flex;
  align-items: center;
}
.brand-logo{
  display: block;
  height: 30px;
  width: auto; /* preserves the logo file's native aspect ratio at any size */
  transition: height .3s var(--ease);
}
.nav.is-scrolled .brand-logo{ height: 24px; }
.footer-brand .brand-logo{ height: 34px; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0; padding: 0;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-dim);
  white-space: nowrap;
}
.nav-links a{ transition: color .25s; position: relative; white-space: nowrap; }
.nav-links a:hover{ color: var(--ink); }
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-6px;
  width:0; height:1px; background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after{ width: 100%; }

.nav-cta{ display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
/* Header buttons sit tighter than the in-page .btn-sm so the bar stays light. */
.nav-cta .btn{ padding: 8px 16px; font-size: 0.8rem; font-weight: 500; }
.nav-toggle{ display: none; }

/* Visually-hidden but still focusable/keyboard-operable checkbox that drives
   the mobile menu — a native <label for> + <input type="checkbox"> pair
   opens/closes with zero JavaScript, so a script failing to load or erroring
   out can never leave the toggle button non-functional. main.js only adds
   polish on top (scroll lock, Esc to close, auto-close on resize). */
.nav-check{
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1400px){
  .nav-links{
    display: none; /* simplest possible base state: fully removed until opened */
    position: fixed;
    inset: 0;
    background: rgba(5,5,5,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 100px 32px 40px;
    z-index: 9999;
    overflow-y: auto;
  }
  .nav-check:checked ~ .nav-links{
    display: flex;
    animation: nav-menu-in .25s var(--ease);
  }
  .nav-links li{ border-bottom: 1px solid var(--panel-line); }
  .nav-links a{ display: block; padding: 18px 0; font-size: 1.05rem; color: var(--ink); }
  .nav-links a::after{ display: none; }
  /* Hamburger button: three bars that cross into an X while the menu is
     open. Drawn in CSS off one <span> (span = middle bar, its two pseudo-
     elements = top and bottom) so the icon stays tied to the checkbox state
     and needs no JavaScript or icon font. */
  .nav-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(241,237,226,0.18);
    border-radius: 3px;
    background: transparent;
    position: relative;
    z-index: 10000;
    cursor: pointer;
    transition: border-color .25s, background .25s;
  }
  .nav-toggle:hover{ border-color: var(--gold-dim); background: var(--gold-wash); }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after{
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform .25s var(--ease), background .2s;
  }
  /* Middle bar pinned to the centre; the other two hang off it. */
  .nav-toggle-bars{ top: 50%; left: 50%; margin: -1px 0 0 -9px; }
  .nav-toggle-bars::before{ top: -6px; left: 0; margin: 0; }
  .nav-toggle-bars::after{ top: 6px; left: 0; margin: 0; }
  /* Middle bar fades out; the outer two rotate onto the centre line. */
  .nav-check:checked ~ .nav-toggle .nav-toggle-bars{ background: transparent; }
  .nav-check:checked ~ .nav-toggle .nav-toggle-bars::before{ transform: translateY(6px) rotate(45deg); }
  .nav-check:checked ~ .nav-toggle .nav-toggle-bars::after{ transform: translateY(-6px) rotate(-45deg); }
  .nav-check:focus-visible ~ .nav-toggle{ outline: 2px solid var(--gold); outline-offset: 3px; }
  .nav-cta .btn-ghost{ display: none; }
  /* Only "Open Account" + the toggle remain here. Sized off the 36px toggle
     so the two sit as a matched pair instead of the CTA dominating the bar. */
  .nav-cta .btn{
    padding: 0 14px;
    height: 36px;
    font-size: 0.78rem;
    line-height: 1;
  }
}

@keyframes nav-menu-in{
  from{ opacity: 0; transform: translateY(-16px); }
  to{ opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .nav-check:checked ~ .nav-links{ animation: none; }
}

/* Baseline scroll lock the moment the menu opens, independent of JS —
   main.js applies the more iOS-Safari-safe position:fixed technique on top
   when it's available, but the page is never left scrollable-behind-the-menu
   if JS hasn't run yet. */
body:has(.nav-check:checked){ overflow: hidden; }

/* ==========================================================================
   Hero
   ========================================================================== */

.hero{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 150px;
  overflow: hidden;
  position: relative;
  background: var(--void);
}

/* ambient background: grid + glows, kept faint so the terminal panel reads
   as the one bright object in the frame */
.hero-bg{ position: absolute; inset: 0; z-index: 0; }
.hero-grid{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 38% 35%, black 30%, transparent 85%);
  mask-image: radial-gradient(ellipse 70% 55% at 38% 35%, black 30%, transparent 85%);
}
.hero-glow{ position: absolute; border-radius: 50%; filter: blur(100px); }
.hero-glow-a{ width: 560px; height: 560px; top: -180px; left: -140px; background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 70%); }
.hero-glow-b{ width: 460px; height: 460px; bottom: -160px; right: -120px; background: radial-gradient(circle, rgba(212,175,55,0.10), transparent 70%); }

.hero-frame{ position: absolute; inset: 28px; z-index: 1; pointer-events: none; }
.hero-frame span{ position: absolute; width: 26px; height: 26px; border: 1px solid var(--gold-dim); opacity: 0.55; }
.hero-frame span:nth-child(1){ top: 0; left: 0; border-right: none; border-bottom: none; }
.hero-frame span:nth-child(2){ top: 0; right: 0; border-left: none; border-bottom: none; }
.hero-frame span:nth-child(3){ bottom: 0; left: 0; border-right: none; border-top: none; }
.hero-frame span:nth-child(4){ bottom: 0; right: 0; border-left: none; border-top: none; }

.hero-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  text-align: left;
}
.hero-copy h1{
  font-size: clamp(2.4rem, 4.6vw, 4rem);
  line-height: 1.08;
  max-width: 13ch;
  margin: 0 0 24px;
}
.hero-copy h1 em{
  font-style: normal;
  background: linear-gradient(100deg, var(--gold-soft), var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub{
  max-width: 480px;
  margin: 0 0 36px;
  font-size: 1.08rem;
  color: var(--ink-dim);
}
.hero-cta{
  display: flex;
  gap: 18px;
  margin-bottom: 44px;
}
.hero-trust{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-trust .dot{ color: var(--gold-dim); }

/* floating terminal panel */
.hero-visual{ position: relative; }

.hero-panel{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(23,21,15,0.92), rgba(15,14,12,0.94));
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 70px 120px -50px rgba(0,0,0,0.75), 0 0 0 1px rgba(212,175,55,0.05) inset;
  transition: transform 0.25s ease-out;
  will-change: transform;
}
.hero-panel::before{
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 45%;
  background: linear-gradient(100deg, transparent, rgba(240,215,124,0.10) 45%, rgba(240,215,124,0.22) 50%, rgba(240,215,124,0.10) 55%, transparent);
  animation: panel-sheen 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes panel-sheen{
  0%, 20%{ left: -60%; }
  55%, 100%{ left: 130%; }
}
@media (prefers-reduced-motion: reduce){ .hero-panel::before{ animation: none; display: none; } }
.hero-panel-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.hero-panel-pair{
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.live-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--up);
  box-shadow: 0 0 0 3px rgba(111,174,140,0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot{ 0%, 100%{ opacity: 1; } 50%{ opacity: 0.35; } }
.hero-panel-price{
  font-family: var(--font-mono);
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: baseline;
}
.hero-panel-price .delta{ font-size: 0.78rem; }
.hero-panel-price .delta.up{ color: var(--up); }
.hero-panel-price .delta.down{ color: var(--down); }
.hero-panel canvas{ width: 100%; height: 190px; display: block; }
.hero-panel-foot{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--panel-line);
  margin-top: 18px;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.hero-panel-foot b{
  display: block;
  color: var(--ink-dim);
  font-size: 0.82rem;
  margin-top: 5px;
  text-transform: none;
  letter-spacing: normal;
}

.hero-float{
  position: absolute;
  background: rgba(23,21,15,0.88);
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 12px 18px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.65), 0 0 0 0 rgba(212,175,55,0.35);
  animation: float-glow 3.4s ease-in-out infinite;
  will-change: transform;
}
.hero-float-b{ animation-delay: 1.2s; }
@keyframes float-glow{
  0%, 100%{ box-shadow: 0 24px 50px -24px rgba(0,0,0,0.65), 0 0 0 0 rgba(212,175,55,0.28); }
  50%{ box-shadow: 0 24px 50px -24px rgba(0,0,0,0.65), 0 0 18px 2px rgba(212,175,55,0.22); }
}
@media (prefers-reduced-motion: reduce){ .hero-float{ animation: none; } }
.hero-float-label{
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
}
.hero-float-value{ font-family: var(--font-mono); font-size: 0.95rem; color: var(--gold); }
.hero-float-value.up{ color: var(--up); }
.hero-float-a{ top: -68px; right: 20px; }
.hero-float-b{ bottom: -68px; left: -26px; }

/* Ticker */
.ticker-dock{
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--gold-line);
  background: rgba(15,14,12,0.65);
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.ticker-track{
  display: flex;
  width: max-content;
  animation: ticker-scroll 42s linear infinite;
}
@media (prefers-reduced-motion: reduce){ .ticker-track{ animation: none; } }
.ticker-item{
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 34px;
  border-right: 1px solid var(--panel-line);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  white-space: nowrap;
}
.ticker-item .pair{ color: var(--ink); font-weight: 500; letter-spacing: 0.03em; }
.ticker-item .price{ color: var(--ink); }
.ticker-item .delta.up{ color: var(--up); }
.ticker-item .delta.down{ color: var(--down); }

@keyframes ticker-scroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */

/* Hidden state only applies once main.js confirms it's running (see the
   'reveal-armed' class it sets on <html>) — so content is visible by
   default and a JS failure can never leave a whole page blank. */
.reveal-armed .reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Stats
   ========================================================================== */

.stats{
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  background: var(--panel);
}
.stats-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat{
  padding: var(--gap-lg) var(--gap-md);
  text-align: center;
  border-right: 1px solid var(--panel-line);
}
.stat:last-child{ border-right: none; }
.stat-num{
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3vw, 2.75rem);
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  margin-bottom: 8px;
}
.stat-label{
  font-size: 0.82rem;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   Trust indicators (Why Choose Us strip)
   ========================================================================== */

.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-lg) var(--gap-md);
}
.trust-card{
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.trust-icon{
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: var(--gold-wash);
  display: grid;
  place-items: center;
  color: var(--gold);
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease);
}
.trust-icon svg{ width: 24px; height: 24px; }
.trust-card:hover .trust-icon{
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 14px 28px -12px rgba(212,175,55,0.45);
}
.trust-card h3{ font-size: 1rem; margin-bottom: 6px; }
.trust-card p{ font-size: 0.85rem; }

/* ==========================================================================
   Instruments
   ========================================================================== */

.instruments-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}
.instrument-card{
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 28px;
  transition: border-color .35s, transform .35s var(--ease);
}
.instrument-card:hover{
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.instrument-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.instrument-card h3{ font-size: 1.15rem; }
.instrument-count{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
}
.instrument-card canvas{ width: 100%; height: 46px; margin: 14px 0; }
.instrument-foot{
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-dim);
  border-top: 1px solid var(--panel-line);
  padding-top: 14px;
}
.instrument-foot b{ color: var(--gold); font-weight: 500; }

/* ==========================================================================
   Feature grid (Why Choose Us)
   ========================================================================== */

.feature-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--panel-line);
  border: 1px solid var(--panel-line);
}
.feature-card{
  background: var(--void);
  padding: 36px 28px;
}
.feature-card.is-large{
  grid-column: span 2;
  grid-row: span 2;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-icon{
  width: 40px; height: 40px;
  margin-bottom: 22px;
  color: var(--gold);
}
.feature-card h3{ font-size: 1.05rem; margin-bottom: 10px; }
.feature-card p{ font-size: 0.92rem; }
.feature-card.is-large h3{ font-size: 1.5rem; margin-bottom: 14px; }
.feature-card.is-large p{ font-size: 1rem; max-width: 34ch; }

/* ==========================================================================
   Comparison table
   ========================================================================== */

.table-scroll{ overflow-x: auto; }
.compare{
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.compare th, .compare td{
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--panel-line);
}
.compare thead th{
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  background: var(--panel);
}
.compare thead th:first-child{ background: transparent; }
.compare thead th.featured{ color: var(--gold); position: relative; }
.compare tbody th{
  font-weight: 500;
  color: var(--ink-dim);
  font-size: 0.88rem;
  white-space: nowrap;
}
.compare td{ font-family: var(--font-mono); font-size: 0.9rem; }
.compare td.featured, .compare th.featured{ background: var(--gold-wash); }
.compare tfoot td{ border-bottom: none; padding-top: 28px; }

/* ==========================================================================
   Platform showcase
   ========================================================================== */

.platform-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.device-frame{
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 10px;
  padding: 18px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6);
}
.device-bar{
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}
.device-bar span{ width: 8px; height: 8px; border-radius: 50%; background: var(--panel-line); }
.device-frame-media{
  position: relative;
  width: 100%;
  height: 260px;
  border-radius: 4px;
  overflow: hidden;
}
.device-frame-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1) brightness(0.88);
}
.device-frame-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(212,175,55,0.18) 0%, rgba(5,5,5,0.05) 40%, rgba(5,5,5,0.55) 100%);
  pointer-events: none;
}
.platform-list{ list-style: none; margin: 28px 0 34px; padding: 0; display: grid; gap: 16px; }
.platform-list li{ display: flex; align-items: flex-start; gap: 12px; color: var(--ink-dim); font-size: 0.95rem; }
.platform-list li::before{ content: "—"; color: var(--gold); flex-shrink: 0; }
.platform-wrap.is-reverse .device-frame{ order: -1; }
.platform-wrap + .platform-wrap{ margin-top: var(--gap-xl); }

/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-md);
  position: relative;
}
.timeline::before{
  content: "";
  position: absolute;
  top: 27px; left: 6%; right: 6%;
  height: 1px;
  background: var(--panel-line);
}
.timeline-step{ position: relative; padding-top: 70px; }
.timeline-num{
  position: absolute;
  top: 0; left: 0;
  width: 54px; height: 54px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  color: var(--gold);
  background: var(--void);
  z-index: 1;
}
.timeline-step h3{ font-size: 1.05rem; margin-bottom: 10px; }
.timeline-step p{ font-size: 0.9rem; }

/* ==========================================================================
   Security
   ========================================================================== */

.security{
  background: var(--panel);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
}
.security-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.security-list{ list-style: none; padding: 0; margin: 0; display: grid; gap: 24px; }
.security-list li{ display: flex; gap: 18px; }
.security-list .num{ font-family: var(--font-mono); color: var(--gold-dim); font-size: 0.9rem; padding-top: 3px; }
.security-list h4{ font-family: var(--font-body); font-weight: 600; color: var(--ink); font-size: 1rem; margin-bottom: 6px; }
.security-list p{ font-size: 0.9rem; }
.security-visual{
  aspect-ratio: 1;
  width: 100%;
  border: 1px solid var(--gold-line);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}
.security-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.1) brightness(0.72);
}
/* Scrim so the caption stays readable over the photo. */
.security-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78), rgba(0,0,0,0) 48%);
  z-index: 1;
}
.security-visual .core{
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testimonial-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-md);
}
.testimonial{
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.testimonial p{ color: var(--ink); font-size: 1rem; font-style: normal; margin-bottom: 24px; flex: 1; }
.testimonial-who{ display: flex; align-items: center; gap: 12px; }
.avatar-ring{
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
}
.testimonial-who .role{ font-size: 0.8rem; color: var(--ink-faint); }

/* ==========================================================================
   Awards strip
   ========================================================================== */

.awards-strip{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid var(--panel-line);
  border-bottom: 1px solid var(--panel-line);
}
.award-item{
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-faint);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.award-item svg{ color: var(--gold-dim); flex-shrink: 0; }

/* ==========================================================================
   Global presence
   ========================================================================== */

.presence-wrap{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-xl);
  align-items: center;
}
.presence-map{ position: relative; }
.presence-visual{
  position: relative;
  height: 320px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}
.presence-visual img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.1) brightness(0.55);
}
.presence-visual::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 90% at 50% 50%, rgba(5,5,5,0.35), rgba(5,5,5,0.75));
  pointer-events: none;
}
.presence-hub{
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translate(-50%, -50%);
}
.presence-dot{
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: presence-pulse 2.4s ease-out infinite;
}
.presence-label{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink);
  white-space: nowrap;
}
@keyframes presence-pulse{
  0%   { box-shadow: 0 0 0 0 rgba(212,175,55,0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(212,175,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}
@media (prefers-reduced-motion: reduce){ .presence-dot{ animation: none; box-shadow: 0 0 0 4px rgba(212,175,55,0.2); } }
.presence-cities{ list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.presence-cities li{ display: flex; justify-content: space-between; padding-bottom: 12px; border-bottom: 1px solid var(--panel-line); font-size: 0.9rem; }
.presence-cities li span:last-child{ font-family: var(--font-mono); color: var(--ink-faint); font-size: 0.8rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list{ max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item{
  border: 1px solid var(--panel-line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  transition: border-color .3s, background .3s;
}
.faq-item:hover{ border-color: var(--gold-dim); }
.faq-item[open]{
  border-color: var(--gold-dim);
  background: linear-gradient(180deg, var(--gold-wash), var(--panel) 55%);
}
.faq-item summary{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.05rem;
  list-style: none;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-icon{
  width: 30px; height: 30px;
  flex-shrink: 0;
  position: relative;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  transition: border-color .3s, background .3s;
}
.faq-item[open] .faq-icon{ background: var(--gold); border-color: var(--gold); }
.faq-icon::before, .faq-icon::after{
  content: "";
  position: absolute;
  background: var(--gold);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  transition: transform .3s var(--ease), background .3s;
}
.faq-icon::before{ width: 12px; height: 1.5px; }
.faq-icon::after{ width: 1.5px; height: 12px; }
.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after{ background: #0d0b06; }
.faq-item[open] .faq-icon::after{ transform: translate(-50%,-50%) rotate(90deg) scale(0); }

/* Pure-CSS open/close animation, driven only by the [open] attribute —
   whatever adds or removes it (a click, keyboard, or the exclusivity
   script above) animates correctly with no JS-timed handoff required. */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s ease;
}
.faq-item[open] .faq-answer{ max-height: 400px; opacity: 1; }
.faq-answer p{ padding: 0 26px 24px; max-width: 62ch; font-size: 0.95rem; }
.faq-item p{
  padding: 12px 26px;
}
/* ==========================================================================
   Newsletter
   ========================================================================== */

.newsletter{
  background: var(--panel);
  border-radius: 6px;
  border: 1px solid var(--gold-line);
  padding: 64px;
  text-align: center;
  background-image: radial-gradient(ellipse 60% 100% at 50% 0%, var(--gold-wash), transparent 70%);
}
.newsletter h2{ font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 12px; }
.newsletter p{ max-width: 480px; margin: 0 auto 30px; }
.newsletter-form{
  display: flex;
  gap: 12px;
  max-width: 440px;
  margin: 0 auto;
}
.newsletter-form input{
  flex: 1;
  background: var(--void);
  border: 1px solid var(--panel-line);
  color: var(--ink);
  padding: 14px 18px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.9rem;
}
.newsletter-form input::placeholder{ color: var(--ink-faint); }
.form-note{ font-size: 0.78rem; color: var(--ink-faint); margin-top: 14px; }
.form-note.success{ color: var(--up); }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer{
  border-top: 1px solid var(--gold-line);
  padding-top: var(--gap-xl);
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: var(--gap-lg);
  padding-bottom: var(--gap-lg);
}
.footer-brand p{ font-size: 0.88rem; max-width: 30ch; margin-top: 16px; }
.footer-col h5{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  margin-bottom: 18px;
}
.footer-col ul{ list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-col a{ color: var(--ink-dim); font-size: 0.9rem; transition: color .25s; }
.footer-col a:hover{ color: var(--gold); }
.footer-social{ display: flex; gap: 14px; margin-top: 20px; }
.footer-social a{
  width: 34px; height: 34px;
  border: 1px solid var(--panel-line);
  border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-dim);
  transition: border-color .25s, color .25s;
}
.footer-social a:hover{ border-color: var(--gold-dim); color: var(--gold); }
.footer-risk{
  padding: 28px 0;
  border-top: 1px solid var(--panel-line);
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.7;
}
.footer-bottom{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 40px;
  font-size: 0.8rem;
  color: var(--ink-faint);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links{ display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer-bottom-links a:hover{ color: var(--ink); }

/* ==========================================================================
   Inner-page header
   ========================================================================== */

.page-header{
  padding: 148px 0 56px;
  position: relative;
  border-bottom: 1px solid var(--gold-line);
  background:
    radial-gradient(ellipse 60% 80% at 12% 0%, rgba(212,175,55,0.08), transparent 60%),
    var(--void);
}
.page-header .eyebrow{ margin-bottom: 22px; }
.page-header h1{
  font-size: clamp(2rem, 4.2vw, 3.4rem);
  max-width: 18ch;
  margin-bottom: 20px;
}
.page-header p{ max-width: 560px; font-size: 1.05rem; }
.page-header-crumb{
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.page-header-crumb a{ color: var(--ink-dim); }
.page-header-crumb a:hover{ color: var(--gold); }

/* ==========================================================================
   Forms (contact)
   ========================================================================== */

.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field{ display: flex; flex-direction: column; gap: 8px; grid-column: span 1; }
.form-field.is-full{ grid-column: span 2; }
.form-field label{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.form-field input, .form-field select, .form-field textarea{
  background: var(--panel-raised);
  border: 1px solid var(--panel-line);
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 3px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  resize: vertical;
}
.form-field input::placeholder, .form-field textarea::placeholder{ color: var(--ink-faint); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{ border-color: var(--gold-dim); outline: none; }
.contact-wrap{ display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--gap-xl); align-items: start; }
.office-list{ display: grid; gap: 20px; }
.office-card{
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 22px 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.office-card h4{ font-family: var(--font-body); font-size: 1rem; color: var(--ink); margin-bottom: 6px; }
.office-card p{ font-size: 0.85rem; }
.office-card .tag{ font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold-dim); text-transform: uppercase; letter-spacing: 0.06em; white-space: nowrap; }

/* ==========================================================================
   About intro media — real editorial photography, unified to the site's
   black/gold palette via a consistent filter + gradient wash so images from
   different sources still read as one cohesive, branded shoot.
   ========================================================================== */

.about-media{
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  transition: transform .35s var(--ease);
}
.about-media:hover{ transform: translateY(-4px); }
.about-media img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.1) brightness(0.88);
  transition: transform .6s var(--ease);
}
.about-media:hover img{ transform: scale(1.05); }
.about-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(212,175,55,0.22) 0%, rgba(5,5,5,0.05) 40%, rgba(5,5,5,0.6) 100%);
  pointer-events: none;
}

/* ==========================================================================
   Detail cards (markets/platforms/partnership expanded content)
   ========================================================================== */

.detail-card{
  border: 1px solid var(--panel-line);
  border-radius: 4px;
  padding: 30px;
  background: var(--panel);
}
.detail-card h3{ font-size: 1.2rem; margin-bottom: 10px; }
.detail-card p{ font-size: 0.92rem; margin-bottom: 18px; }
.detail-card .tag-row{ display: flex; flex-wrap: wrap; gap: 8px; }
.detail-card .tag-row span{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-dim);
  border: 1px solid var(--panel-line);
  padding: 5px 10px;
  border-radius: 20px;
}
.detail-card-foot{
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--panel-line);
  margin-top: 20px;
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-dim);
}
.detail-card-foot b{ color: var(--gold); font-weight: 500; }

.session-table-wrap .compare td, .session-table-wrap .compare th{ font-family: var(--font-mono); }

/* ==========================================================================
   Market category cards (Metals / Energy / Indices / Agriculture / Currency)
   Built on top of .detail-card for the shared border/radius/padding/background
   — only the title, list and CTA treatment below are new.
   ========================================================================== */

.markets-grid{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-md);
}
.market-cat-card{
  transition: border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease);
}
.market-cat-card:hover{
  border-color: var(--gold-dim);
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -24px rgba(212,175,55,0.4);
}
.market-cat-card h3{
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold);
  margin-bottom: 20px;
}
.market-cat-list{
  list-style: none;
  margin: 0 0 18px;
  padding: 0 0 18px;
  display: grid;
  gap: 11px;
  border-bottom: 1px solid var(--panel-line);
}
.market-cat-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-dim);
}
.market-cat-list .mc-icon{ font-size: 1rem; flex-shrink: 0; line-height: 1; }
.market-cat-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--gold);
  transition: gap .25s var(--ease);
}
.market-cat-cta .mc-arrow{ display: inline-block; transition: transform .25s var(--ease); }
.market-cat-cta:hover{ gap: 10px; }
.market-cat-cta:hover .mc-arrow{ transform: translateX(3px); }

/* ==========================================================================
   CTA band (lightweight, reused across inner pages)
   ========================================================================== */

.cta-band{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 6px;
  padding: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.cta-band::before{
  content: "";
  position: absolute;
  inset: 0;
  background: url('../images/stock/growth-success.jpg') center / cover no-repeat;
  filter: saturate(0.7) contrast(1.1) brightness(0.4);
  z-index: 0;
}
.cta-band::after{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 140% at 100% 0%, rgba(212,175,55,0.28), rgba(5,5,5,0.78) 70%);
  z-index: 0;
}
.cta-band > *{ position: relative; z-index: 1; }
.cta-band h3{ font-size: 1.5rem; margin-bottom: 8px; }
.cta-band p{ font-size: 0.95rem; }
.cta-band .btn{ flex-shrink: 0; }

/* ==========================================================================
   Grid column-count modifiers
   Use these instead of an inline style="grid-template-columns:..." — an
   inline style always wins over a stylesheet rule regardless of specificity,
   which silently defeats every responsive breakpoint below for that element.
   A class has normal, overridable specificity, so it plays nicely with them.
   ========================================================================== */

.cols-2{ grid-template-columns: repeat(2, 1fr); }
.cols-3{ grid-template-columns: repeat(3, 1fr); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .markets-grid{ grid-template-columns: repeat(3, 1fr); }
  .hero-inner{ grid-template-columns: 1fr; gap: 56px; }
  .hero-copy h1{ max-width: 18ch; }
  .hero-visual{ max-width: 480px; }
  .hero-float-b{ left: -12px; }
  .feature-grid{ grid-template-columns: repeat(2, 1fr); }
  .feature-card.is-large{ grid-column: span 2; grid-row: span 1; }
  .instruments-grid{ grid-template-columns: repeat(2, 1fr); }
  .stats-grid{ grid-template-columns: repeat(3, 1fr); }
  .timeline{ grid-template-columns: repeat(2, 1fr); gap: var(--gap-lg) var(--gap-md); }
  .timeline::before{ display: none; }
  .testimonial-grid{ grid-template-columns: repeat(2, 1fr); }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; gap: var(--gap-lg); }
}

@media (max-width: 760px){
  .brand-logo, .nav.is-scrolled .brand-logo{ height: 22px; }
  .hero{ padding-top: 120px; }
  .hero-frame{ display: none; }
  .hero-cta{ flex-direction: column; align-items: stretch; margin-bottom: 40px; }
  .hero-float{ position: static; margin-top: 14px; }
  .hero-visual{ display: flex; flex-direction: column; max-width: none; }
  .stats-grid, .instruments-grid, .feature-grid, .timeline, .testimonial-grid, .trust-grid, .markets-grid{ grid-template-columns: 1fr; }
  .feature-card.is-large{ grid-column: span 1; }
  .stat{ border-right: none; }
  .platform-wrap, .security-wrap, .copy-wrap, .presence-wrap{ grid-template-columns: 1fr; }
  /* Full width in one column — a true square would run too tall here. */
  .security-visual{ aspect-ratio: 16 / 10; }
  .presence-cities{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; }
  .newsletter{ padding: 40px 24px; }
  .newsletter-form{ flex-direction: column; }
  .awards-strip{ justify-content: flex-start; }
  .compare{ min-width: 640px; }
  .form-grid{ grid-template-columns: 1fr; }
  .form-field.is-full{ grid-column: span 1; }
  .office-card{ flex-direction: column; gap: 8px; }
  .page-header{ padding: 140px 0 56px; }
  .cta-band{ flex-direction: column; align-items: flex-start; text-align: left; padding: 32px; }
}

/* Smallest phones (320–480px): the breakpoints above already fix column
   counts; these tighten spacing/type on a few dense components so nothing
   feels cramped once there's this little width left to work with. */
@media (max-width: 480px){
  .container{ padding: 0 20px; }
  /* Logo + Open Account + hamburger have to share ~320px here. */
  .nav .container{ gap: 10px; }
  .nav-cta .btn{ padding: 0 11px; height: 32px; font-size: 0.72rem; }
  .nav-toggle{ width: 32px; height: 32px; }
  .nav-toggle-bars,
  .nav-toggle-bars::before,
  .nav-toggle-bars::after{ width: 16px; }
  .nav-toggle-bars{ margin-left: -8px; }
  .hero-panel{ padding: 18px; }
  .hero-panel-price{ font-size: 0.92rem; }
  .hero-panel-foot{ gap: 8px; font-size: 0.62rem; }
  .hero-panel-foot b{ font-size: 0.74rem; }
  .leaderboard-row{
    grid-template-columns: 1.6fr 0.8fr 1fr 0.7fr;
    padding: 14px 16px;
    font-size: 0.76rem;
    gap: 6px;
  }
  .risk-dots{ gap: 3px; }
  .risk-dots span{ width: 5px; height: 5px; }
  .newsletter{ padding: 28px 18px; }
  .promo-card, .detail-card{ padding: 22px; }
  .testimonial{ padding: 24px; }
  .footer-risk{ font-size: 0.72rem; }
}
