/* Outvie — charcoal, gold, red */
:root {
  --charcoal: #1c1c1e;
  --charcoal-2: #232326;
  --charcoal-3: #2c2c30;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d2af37;
  --gold-hi: #e6c65a;
  --gold-dim: rgba(210, 175, 55, 0.14);
  --red: #ef3340;
  --red-glow: rgba(239, 51, 64, 0.55);
  --text: #eeede8;
  --muted: #a3a29c;
  --chalk: #ebebeb;
  --radius: 14px;
  --wrap: 1120px;
  --display: "Archivo", "Arial Black", system-ui, sans-serif;
  --body: "Archivo", system-ui, -apple-system, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--charcoal);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* chalkboard grain over everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
main, header, footer { position: relative; z-index: 1; }
#field { position: fixed; inset: 0; width: 100vw; height: 100vh; z-index: 0; pointer-events: none; display: block;
  -webkit-mask-image: radial-gradient(ellipse 55% 50% at 50% 48%, rgba(0,0,0,.28), #000 85%); mask-image: radial-gradient(ellipse 55% 50% at 50% 48%, rgba(0,0,0,.28), #000 85%); }
a { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--gold); color: var(--charcoal); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.wrap { width: min(var(--wrap), 100% - 32px); margin-inline: auto; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px max(16px, calc((100% - var(--wrap)) / 2));
  transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(28, 28, 30, 0.86); backdrop-filter: blur(10px); border-color: var(--line); }
.nav .mark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav .mark img { width: 38px; height: auto; transition: transform .25s, filter .25s; }
.nav .mark:hover img { transform: translate(2px, -2px); filter: drop-shadow(0 4px 12px rgba(210,175,55,.35)); }
.nav .mark span { font-family: var(--display); font-stretch: 125%; font-weight: 800; letter-spacing: .14em; font-size: 13px; }
.nav ul { list-style: none; display: flex; gap: 26px; margin: 0; padding: 0; }
.nav ul a { text-decoration: none; font-size: 14px; color: var(--muted); font-weight: 600; letter-spacing: .04em; transition: color .2s; }
.nav ul a:hover { color: var(--gold); }
@media (max-width: 640px) { .nav ul { gap: 16px; } .nav ul li.hide-sm { display: none; } .nav .mark span { display: none; } }

/* ---------- logo with live red dot ---------- */
.logo { display: block; position: relative; width: min(560px, 82vw); margin-inline: auto; }
.logo img { width: 100%; height: auto; filter: drop-shadow(0 6px 30px rgba(210, 175, 55, 0.18)); }
.logo .dot {
  position: absolute;
  left: 75.675%;
  top: 36.806%;
  width: 5.78%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--red);
  opacity: 0;
  /* intro: logo settles, then the dot fades in, then it breathes in and out */
  animation: dot-in .9s ease-out 1.1s forwards, breathe 2.8s ease-in-out 2s infinite;
}
@keyframes dot-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes breathe {
  0%, 100% { opacity: 1; box-shadow: 0 0 14px 2px var(--red-glow); }
  50% { opacity: .12; box-shadow: 0 0 0 0 transparent; }
}
/* logo intro */
.hero .logo img, .links-page .logo img { animation: logo-in 1.1s cubic-bezier(.2,.7,.2,1) both; }
@keyframes logo-in { from { opacity: 0; transform: translateY(10px) scale(.985); filter: blur(4px); } to { opacity: 1; transform: none; } }
.hero .tagline, .hero .define, .hero .cta, .links-page .tagline, .links-page .define { animation: fade-up .8s ease-out both; }
.hero .tagline, .links-page .tagline { animation-delay: .5s; }
.hero .define, .links-page .define { animation-delay: .7s; }
.hero .cta { animation-delay: .9s; }
@keyframes fade-up { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .logo .dot, .logo img, .tagline, .define, .cta { animation: none !important; }
  .logo .dot { opacity: 1; box-shadow: 0 0 14px 2px var(--red-glow); }
  .play { animation: none !important; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid; place-items: center;
  text-align: center;
  padding: 110px 16px 90px;
  overflow: hidden;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.045), transparent 60%);
}
.play { position: absolute; pointer-events: none; opacity: .5; user-select: none; }
.play.fb { top: -2%; left: -3%; width: min(46vw, 620px); animation: drift 14s ease-in-out infinite alternate; }
.play.bb { bottom: -3%; right: -3%; width: min(44vw, 600px); animation: drift 16s ease-in-out infinite alternate-reverse; }
@keyframes drift { from { transform: translate(0, 0) rotate(0deg); } to { transform: translate(8px, -6px) rotate(.6deg); } }
@media (max-width: 640px) { .play { opacity: .32; } .play.fb { width: 78vw; top: 4%; left: -18%; } .play.bb { width: 78vw; right: -20%; bottom: 2%; } }

.tagline {
  margin: 22px 0 0;
  font-family: var(--display); font-stretch: 125%; font-weight: 800;
  letter-spacing: .28em; font-size: clamp(14px, 2.2vw, 20px);
  color: var(--text);
}
.define { margin: 26px auto 0; max-width: 34ch; color: var(--muted); font-size: clamp(15px, 1.9vw, 18px); }
.define b { color: var(--gold); font-weight: 700; }
.define i { color: var(--text); font-style: normal; }
.cta { margin-top: 34px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 700; font-size: 15px; letter-spacing: .02em; text-decoration: none;
  border: 1px solid var(--gold); transition: transform .15s, background .2s, color .2s, box-shadow .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn.gold { background: var(--gold); color: #17171a; }
.btn.gold:hover { background: var(--gold-hi); box-shadow: 0 8px 30px rgba(210,175,55,.25); transform: translateY(-1px); }
.btn.ghost { color: var(--gold); background: transparent; }
.btn.ghost:hover { background: var(--gold-dim); transform: translateY(-1px); }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 11px; letter-spacing: .3em; color: var(--muted); text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scroll-cue::after { content: ""; width: 1px; height: 30px; background: linear-gradient(var(--gold), transparent); }

/* ---------- sections ---------- */
section { padding: clamp(70px, 10vw, 120px) 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 10px var(--red-glow); }
h2 {
  font-family: var(--display); font-stretch: 112%; font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px); line-height: 1.08; letter-spacing: -.01em;
  margin: 14px 0 18px; text-wrap: balance;
}
h2 em { font-style: normal; color: var(--gold); }
.lead { color: var(--muted); max-width: 60ch; margin: 0; font-size: clamp(16px, 1.8vw, 19px); }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent); }

/* pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.pillar {
  position: relative; padding: 30px 26px 28px; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--charcoal-2), rgba(35,35,38,.4));
  border: 1px solid var(--line);
}
.pillar .num { font-family: var(--display); font-stretch: 125%; font-weight: 800; font-size: 13px; letter-spacing: .2em; color: var(--gold); }
.pillar h3 { font-family: var(--display); font-stretch: 110%; font-size: 22px; margin: 14px 0 8px; font-weight: 800; }
.pillar p { margin: 0; color: var(--muted); font-size: 15.5px; }
.pillar::after { content: ""; position: absolute; left: 26px; right: 26px; top: 0; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); opacity: .7; }
@media (max-width: 820px) { .pillars { grid-template-columns: 1fr; } }

/* socials */
.socials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 48px; }
.social {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 28px 26px; border-radius: var(--radius); text-decoration: none;
  background: var(--charcoal-2); border: 1px solid var(--line);
  transition: transform .2s, border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.social:hover { transform: translateY(-3px); border-color: rgba(210,175,55,.55); box-shadow: 0 18px 50px rgba(0,0,0,.35); }
.social .top { display: flex; align-items: center; justify-content: space-between; }
.social .ico { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-dim); color: var(--gold); }
.social .ico svg { width: 24px; height: 24px; }
.social .live { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.social .live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: breathe 2.8s ease-in-out infinite; }
.social h3 { margin: 6px 0 0; font-family: var(--display); font-stretch: 110%; font-size: 24px; font-weight: 800; }
.social .handle { color: var(--gold); font-weight: 600; font-size: 15px; margin-top: -8px; }
.social p { margin: 0; color: var(--muted); font-size: 15.5px; flex: 1; }
.social .go { font-weight: 700; font-size: 14px; letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
.social .go span { transition: transform .2s; }
.social:hover .go span { transform: translateX(4px); }
@media (max-width: 900px) { .socials { grid-template-columns: 1fr; } }

/* business */
.biz {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
  padding: clamp(30px, 5vw, 56px); border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239,51,64,.12), transparent 45%),
    linear-gradient(135deg, var(--charcoal-3), var(--charcoal-2));
  border: 1px solid rgba(210,175,55,.25);
}
.biz .mail { font-family: var(--display); font-stretch: 112%; font-weight: 800; font-size: clamp(22px, 3.2vw, 34px); color: var(--gold); text-decoration: none; word-break: break-all; }
.biz .mail:hover { color: var(--gold-hi); }
.biz ul { margin: 18px 0 0; padding: 0; list-style: none; color: var(--muted); }
.biz li { padding: 8px 0; border-top: 1px solid var(--line); display: flex; gap: 10px; }
.biz li::before { content: "—"; color: var(--red); }
@media (max-width: 820px) { .biz { grid-template-columns: 1fr; } }

/* footer */
footer { padding: 46px 0 50px; border-top: 1px solid var(--line); }
.foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; color: var(--muted); font-size: 14px; }
.foot .mark { display: flex; align-items: center; gap: 12px; }
.foot .mark img { width: 26px; }
.foot nav { display: flex; gap: 20px; flex-wrap: wrap; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--gold); }
.tm { margin-top: 18px; margin-bottom: 0; font-size: 12px; color: #77766f; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- legal pages ---------- */
.legal { padding: 130px 0 80px; }
.legal .wrap { max-width: 760px; }
.legal h1 { font-family: var(--display); font-stretch: 112%; font-weight: 800; font-size: clamp(32px, 5vw, 48px); margin: 12px 0 6px; }
.legal .updated { color: var(--muted); margin: 0 0 40px; }
.legal h2 { font-size: 22px; margin: 40px 0 10px; font-stretch: 105%; }
.legal p, .legal li { color: #cfcec8; }
.legal ul { padding-left: 20px; }
.legal a { color: var(--gold); }

/* ---------- link-in-bio ---------- */
.links-page { min-height: 100svh; display: grid; place-items: start center; padding: 56px 16px 40px; text-align: center; position: relative; overflow: hidden; }
.links-page .logo { width: min(300px, 72vw); }
.links-page .tagline { font-size: 12px; margin-top: 14px; }
.links-page .define { margin-top: 14px; font-size: 15px; }
.stack { width: min(440px, 100%); margin: 30px auto 0; display: grid; gap: 12px; }
.link {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; border-radius: 14px;
  background: rgba(35,35,38,.9); border: 1px solid var(--line); text-decoration: none; text-align: left;
  transition: border-color .2s, transform .15s;
}
.link:hover { border-color: rgba(210,175,55,.6); transform: translateY(-1px); }
.link .ico { width: 40px; height: 40px; border-radius: 10px; display: grid; place-items: center; background: var(--gold-dim); color: var(--gold); flex: none; }
.link .ico svg { width: 20px; height: 20px; }
.link b { display: block; font-size: 16px; }
.link small { color: var(--muted); font-size: 13.5px; }
.link.feature { background: var(--gold); color: #17171a; border-color: var(--gold); }
.link.feature small { color: rgba(23,23,26,.7); }
.link.feature .ico { background: rgba(23,23,26,.12); color: #17171a; }
.links-page .fine { margin-top: 30px; font-size: 12.5px; color: var(--muted); }
.links-page .fine a { text-decoration: none; }
.links-page .fine a:hover { color: var(--gold); }

/* 404 */
.lost { min-height: 100svh; display: grid; place-items: center; text-align: center; padding: 16px; }
.lost h1 { font-family: var(--display); font-stretch: 125%; font-weight: 800; font-size: clamp(60px, 14vw, 140px); margin: 0; color: var(--gold); line-height: 1; }
.lost p { color: var(--muted); }
