:root {
  --bg: #050505;
  --bg-soft: #0a0a0a;
  --surface: rgba(18, 18, 18, 0.72);
  --surface-strong: #111111;
  --line: rgba(255, 221, 140, 0.14);
  --line-strong: rgba(255, 215, 118, 0.38);
  --text: #f5f2e9;
  --muted: #aaa59a;
  --gold-1: #fff1b2;
  --gold-2: #e8c266;
  --gold-3: #a87419;
  --gold-gradient: linear-gradient(135deg, #fff1b2 0%, #e8c266 48%, #aa771a 100%);
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow-gold: 0 24px 90px rgba(190, 135, 28, 0.16);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 15% -5%, rgba(196, 145, 42, 0.12), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(255, 222, 143, 0.06), transparent 25%),
    var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.noise {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.orb {
  position: fixed;
  width: 420px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.orb-one { background: #d3a232; top: 12%; left: -260px; }
.orb-two { background: #fff1b2; bottom: 6%; right: -300px; opacity: .06; }

.container { width: min(var(--container), calc(100% - 40px)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, .74);
  border-bottom: 1px solid rgba(255, 227, 158, .08);
  backdrop-filter: blur(18px);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 13px;
  border: 1px solid var(--line);
  box-shadow: 0 8px 30px rgba(223, 171, 62, .11);
}
.brand div, .footer-brand div { display: grid; line-height: 1.15; }
.brand strong, .footer-brand strong {
  font-family: "Montserrat", sans-serif;
  font-size: .95rem;
  letter-spacing: .08em;
}
.brand span, .footer-brand span { color: var(--muted); font-size: .72rem; margin-top: 5px; }
.desktop-nav { display: flex; gap: 30px; margin-left: auto; }
.desktop-nav a { color: #bdb7aa; font-size: .88rem; font-weight: 600; transition: .25s ease; }
.desktop-nav a:hover { color: var(--gold-1); }
.header-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  color: #171005;
  background: var(--gold-gradient);
  font-weight: 800;
  font-size: .82rem;
  box-shadow: 0 8px 34px rgba(217, 169, 64, .17);
  transition: transform .25s ease, box-shadow .25s ease;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(217, 169, 64, .25); }

.hero {
  min-height: calc(100vh - 82px);
  padding-block: 78px 92px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
}
.eyebrow, .section-kicker {
  color: var(--gold-2);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 25px; }
.eyebrow span { width: 34px; height: 1px; background: var(--gold-gradient); }
.hero h1 {
  margin: 0;
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3rem, 6.4vw, 6.2rem);
  line-height: .96;
  letter-spacing: -.055em;
}
.hero h1 em {
  font-style: normal;
  color: transparent;
  background: var(--gold-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}
.hero-copy > p {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  transition: .25s ease;
}
.button svg { width: 19px; height: 19px; }
.button-primary { color: #171005; background: var(--gold-gradient); box-shadow: 0 14px 45px rgba(198, 145, 36, .18); }
.button-primary svg { fill: currentColor; }
.button-secondary { border: 1px solid var(--line); background: rgba(255,255,255,.025); color: var(--text); }
.button-secondary svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover { transform: translateY(-3px); }
.button-secondary:hover { border-color: var(--line-strong); background: rgba(233, 194, 102, .06); }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: #c3bdae; font-size: .78rem; }
.trust-row span { display: inline-flex; align-items: center; gap: 7px; }
.trust-row i { font-style: normal; color: var(--gold-2); }

.hero-visual { display: flex; justify-content: center; }
.logo-stage {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1.05;
  display: grid;
  place-items: center;
}
.stage-glow {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 194, 102, .22), rgba(232, 194, 102, 0) 68%);
  filter: blur(4px);
  animation: pulse 5s ease-in-out infinite;
}
.logo-stage::before,
.logo-stage::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(244, 211, 129, .12);
}
.logo-stage::before { inset: 6%; animation: spin 26s linear infinite; border-style: dashed; }
.logo-stage::after { inset: 15%; border-color: rgba(244, 211, 129, .2); }
.logo-frame {
  position: relative;
  z-index: 2;
  width: 65%;
  border-radius: 38px;
  padding: 1px;
  background: linear-gradient(145deg, rgba(255, 240, 178, .75), rgba(172, 119, 24, .08), rgba(255, 240, 178, .2));
  box-shadow: var(--shadow-gold), inset 0 0 45px rgba(255,255,255,.035);
  transform: rotate(-2deg);
}
.logo-frame img { border-radius: 37px; width: 100%; }
.status-pill {
  position: absolute;
  right: 3%;
  bottom: 15%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(12px);
  color: #cfc9bb;
  font-size: .75rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.32);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #63d991; box-shadow: 0 0 0 5px rgba(99, 217, 145, .1); }

.section { padding-block: 90px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 35px; margin-bottom: 34px; }
.section-heading h2, .about-card h2, .safety-copy h2 {
  margin: 10px 0 0;
  max-width: 760px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.section-heading > p { max-width: 390px; margin: 0; color: var(--muted); font-size: .92rem; }

.link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.link-card {
  position: relative;
  min-height: 210px;
  padding: 26px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.link-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: rgba(227, 184, 84, .08);
  filter: blur(15px);
  transition: .35s ease;
}
.link-card:hover { transform: translateY(-5px); border-color: var(--line-strong); background: linear-gradient(145deg, rgba(240, 201, 108, .075), rgba(255,255,255,.018)); }
.link-card:hover::before { right: -60px; top: -80px; }
.link-card.featured { grid-column: 1 / -1; min-height: 230px; background: linear-gradient(115deg, rgba(230, 189, 92, .11), rgba(255,255,255,.018) 60%); }
.card-number { position: absolute; top: 18px; right: 22px; color: rgba(255, 230, 171, .18); font-family: "Montserrat", sans-serif; font-size: .75rem; font-weight: 800; }
.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--gold-1);
  border: 1px solid rgba(255, 229, 165, .18);
  background: rgba(235, 195, 100, .08);
}
.card-icon svg { width: 28px; height: 28px; fill: currentColor; }
.card-icon.instagram svg, .card-icon.channel svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.link-card small { color: var(--gold-2); font-size: .64rem; font-weight: 800; letter-spacing: .16em; }
.link-card h3 { margin: 6px 0 5px; font-family: "Montserrat", sans-serif; font-size: clamp(1.25rem, 2vw, 1.7rem); }
.link-card p { margin: 0; color: var(--muted); font-size: .85rem; }
.arrow { color: var(--gold-2); font-size: 1.6rem; transition: transform .3s ease; }
.link-card:hover .arrow { transform: translate(3px, -3px); }

.about-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 18px; }
.about-card, .metric-card, .safety-card {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.about-card { padding: clamp(30px, 5vw, 56px); border-radius: var(--radius-lg); }
.about-card p { max-width: 690px; color: var(--muted); }
.about-card > a { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; color: var(--gold-1); font-weight: 800; font-size: .88rem; }
.about-card > a span { transition: transform .25s ease; }
.about-card > a:hover span { transform: translateX(4px); }
.metric-stack { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.metric-card { min-height: 180px; padding: 28px; border-radius: var(--radius-md); display: flex; flex-direction: column; justify-content: center; }
.metric-card > strong { font-family: "Montserrat", sans-serif; font-size: 3rem; line-height: 1; color: transparent; background: var(--gold-gradient); background-clip: text; -webkit-background-clip: text; }
.metric-card > span { margin-top: 12px; color: var(--muted); font-size: .82rem; }
.metric-card.wide { grid-column: 1 / -1; min-height: 180px; flex-direction: row; align-items: center; gap: 18px; }
.metric-card.wide strong { font-size: 1.15rem; color: var(--text); background: none; -webkit-text-fill-color: initial; }
.metric-card.wide span { display: block; margin-top: 6px; }
.shield-icon { flex: 0 0 52px; width: 52px; height: 52px; display: grid; place-items: center; border-radius: 16px; background: rgba(232, 194, 102, .09); color: var(--gold-2); }
.shield-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; }

.safety-card {
  padding: clamp(30px, 5vw, 55px);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 42px;
  background:
    radial-gradient(circle at 82% 20%, rgba(237, 199, 108, .1), transparent 27%),
    linear-gradient(145deg, rgba(255,255,255,.035), rgba(255,255,255,.012));
}
.safety-copy p { max-width: 760px; margin: 18px 0 0; color: var(--muted); }
.safety-card .button { flex: 0 0 auto; }

footer { margin-top: 55px; border-top: 1px solid var(--line); background: rgba(0,0,0,.2); }
.footer-inner { min-height: 140px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 44px; height: 44px; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); }
.footer-inner > p { color: #817d74; font-size: .78rem; }
.footer-links { display: flex; gap: 18px; color: #b8b2a6; font-size: .78rem; }
.footer-links a:hover { color: var(--gold-1); }

.floating-wa {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #22c66b;
  color: white;
  box-shadow: 0 14px 40px rgba(34, 198, 107, .28);
  transition: .25s ease;
}
.floating-wa svg { width: 28px; fill: currentColor; }
.floating-wa:hover { transform: translateY(-4px) scale(1.03); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100% { transform: scale(.95); opacity: .8; } 50% { transform: scale(1.08); opacity: 1; } }

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 62px; gap: 34px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-visual { order: -1; }
  .logo-stage { width: min(100%, 430px); }
  .section-heading { align-items: start; flex-direction: column; }
  .about-grid { grid-template-columns: 1fr; }
  .safety-card { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .site-header { position: relative; }
  .header-inner { min-height: 72px; }
  .brand img { width: 42px; height: 42px; }
  .brand span { display: none; }
  .header-cta { min-height: 40px; padding: 0 14px; font-size: .75rem; }
  .hero { padding-block: 38px 64px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-copy > p { font-size: .95rem; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .trust-row { gap: 12px; font-size: .7rem; }
  .logo-stage { width: 330px; max-width: 100%; }
  .logo-frame { width: 68%; border-radius: 28px; }
  .logo-frame img { border-radius: 27px; }
  .status-pill { right: 0; bottom: 10%; font-size: .68rem; }
  .section { padding-block: 66px; }
  .section-heading h2, .about-card h2, .safety-copy h2 { font-size: 2.05rem; }
  .link-grid { grid-template-columns: 1fr; gap: 10px; }
  .link-card.featured { grid-column: auto; min-height: 112px; }
  .link-card {
    min-height: 112px;
    padding: 14px 44px 14px 14px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 13px;
    border-radius: 16px;
  }
  .link-card::before { width: 110px; height: 110px; right: -75px; top: -75px; }
  .link-card .arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    font-size: 1.25rem;
  }
  .link-card:hover .arrow { transform: translate(2px, calc(-50% - 2px)); }
  .card-number { top: 8px; right: 11px; font-size: .58rem; }
  .card-icon { width: 43px; height: 43px; border-radius: 13px; }
  .card-icon svg { width: 21px; height: 21px; }
  .link-card small { font-size: .54rem; letter-spacing: .12em; }
  .link-card h3 { margin: 3px 0 2px; font-size: 1.02rem; line-height: 1.15; }
  .link-card p {
    font-size: .72rem;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .metric-stack { grid-template-columns: 1fr 1fr; }
  .metric-card { min-height: 150px; padding: 22px; }
  .metric-card > strong { font-size: 2.5rem; }
  .metric-card.wide { min-height: 160px; }
  .footer-inner { min-height: 210px; padding-block: 30px; flex-direction: column; justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .floating-wa { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 420px) {
  .link-card,
  .link-card.featured { min-height: 102px; }
  .link-card { padding: 12px 38px 12px 12px; gap: 11px; }
  .card-icon { width: 40px; height: 40px; border-radius: 12px; }
  .card-icon svg { width: 20px; height: 20px; }
  .link-card h3 { font-size: .94rem; }
  .link-card p { font-size: .68rem; -webkit-line-clamp: 1; }
  .link-card .arrow { right: 12px; }
}
