/* ---------- Fonts ---------- */
@font-face { font-family: "FG Display"; src: url("fonts/FGroup-DisplayHeavy.otf") format("opentype"); font-weight: 900; font-display: swap; }
@font-face { font-family: "FG Display"; src: url("fonts/FGroup-DisplayMedium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "FG Text"; src: url("fonts/FGroup-TextRegular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "FG Text"; src: url("fonts/FGroup-TextMedium.otf") format("opentype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "FG Text"; src: url("fonts/FGroup-TextBold.otf") format("opentype"); font-weight: 700; font-display: swap; }
@font-face { font-family: "FG Mono"; src: url("fonts/FGroup-MonoRegular.otf") format("opentype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "FG Mono"; src: url("fonts/FGroup-MonoBold.otf") format("opentype"); font-weight: 700; font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  --red: #FF0000;
  --bg: #FCFCFC;
  --card: #EEEEEE;
  --ink: #0A0A0A;
  --muted: #8A8A8A;
  --line: #1A1A1A;
  --display: "FG Display", "Arial Black", Impact, sans-serif;
  --text: "FG Text", "Helvetica Neue", Arial, sans-serif;
  --mono: "FG Mono", "SF Mono", Menlo, Consolas, monospace;
  --gutter: clamp(20px, 2.5vw, 48px);
  --nav-h: 64px;
  --radius: 4px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--text);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.35;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
p { margin: 0 0 .8em; }
p:last-child { margin-bottom: 0; }
h1, h2, h3 { margin: 0; font-weight: 900; }
ul, ol { margin: 0; padding: 0; }
strong { font-weight: 700; }
.red { color: var(--red); }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 0 var(--gutter);
  background: rgba(252,252,252,.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav__links {
  display: flex; gap: clamp(14px, 1.8vw, 36px);
  overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none;
  font-family: var(--mono); font-size: 14px; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap;
}
.nav__links::-webkit-scrollbar { display: none; }
.nav__links a { color: var(--muted); text-decoration: none; padding: 8px 0; transition: color .2s; }
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__brand {
  font-family: var(--display); font-weight: 900; font-size: 18px; letter-spacing: .01em;
  text-decoration: none; flex: none; color: var(--red);
}

/* ---------- Hero ---------- */
.hero {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: calc(100vh - var(--nav-h));
}
.hero__text {
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(24px, 4vh, 56px) var(--gutter) clamp(32px, 5vh, 64px);
}
.hero__title {
  font-family: var(--display); color: var(--red);
  font-size: clamp(56px, 7.6vw, 160px); white-space: nowrap;
  line-height: .88; letter-spacing: -.02em; text-transform: uppercase;
}
.hero__lead { max-width: 34em; font-size: clamp(18px, 1.6vw, 28px); line-height: 1.25; margin-top: 48px; }
.hero__tag { font-weight: 700; margin-bottom: 1em; }
.hero__photo {
  background: var(--red);
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
  padding-top: clamp(40px, 8vh, 120px);
}
.hero__photo img { width: min(60%, 620px); height: auto; }

/* ---------- Intro video ---------- */
.intro { background: #000; line-height: 0; }
.intro__video { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.stats__cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(56px, 8vh, 120px) var(--gutter) clamp(48px, 7vh, 96px);
  text-align: center;
}
.stats__cell--red { background: var(--red); color: #fff; }
.stats__cell--grey { background: var(--card); color: var(--ink); }
.stats__icon { width: clamp(140px, 18vw, 260px); margin-bottom: clamp(32px, 5vh, 64px); }
.stats__num { font-family: var(--display); font-weight: 900; font-size: clamp(56px, 6.5vw, 120px); line-height: 1; color: var(--red); text-transform: uppercase; }
.stats__cell--red .stats__num { color: #fff; }
.stats__label { font-size: clamp(20px, 1.9vw, 34px); margin-top: .35em; }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 10vh, 140px) var(--gutter); }
.section__kicker {
  font-family: var(--mono); text-transform: uppercase; letter-spacing: .06em; font-size: 14px; color: var(--muted);
  margin-bottom: clamp(24px, 4vh, 48px);
}
.section__title {
  font-family: var(--display); color: var(--red); text-transform: uppercase;
  font-size: clamp(40px, 6vw, 112px); line-height: .92; letter-spacing: -.01em;
  margin-bottom: clamp(32px, 5vh, 72px);
}

/* ---------- Rubrics ---------- */
.rubric { padding: clamp(40px, 6vh, 80px) 0; border-top: 1px solid rgba(0,0,0,.12); }
.rubric:first-of-type { border-top: 0; padding-top: 0; }
.rubric__head {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.5fr) minmax(0, .7fr);
  gap: clamp(24px, 4vw, 72px);
  margin-bottom: clamp(40px, 6vh, 80px);
}
.rubric__title {
  font-family: var(--display); color: var(--red); text-transform: uppercase;
  font-size: clamp(40px, 4.8vw, 88px); line-height: .9; letter-spacing: -.02em;
}
.rubric__title-sub { display: block; font-size: .42em; letter-spacing: .02em; margin-top: .25em; }
.rubric__desc { font-size: clamp(16px, 1.25vw, 22px); line-height: 1.3; }
.rubric__desc strong { font-weight: 700; }
.rubric__meta { margin: 0; font-size: clamp(14px, 1vw, 18px); line-height: 1.35; }
.rubric__meta div { margin-bottom: .55em; }
.rubric__meta dt { display: inline; font-weight: 700; }
.rubric__meta dt::after { content: ": "; }
.rubric__meta dd { display: inline; margin: 0; }
.rubric__meta--inline { margin-top: 1.6em; }

/* video grid + lite YouTube embed */
.videos { display: grid; gap: clamp(12px, 1.5vw, 24px); }
.videos--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.videos--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.videos--1 { grid-template-columns: minmax(0, 1fr); max-width: 62%; }
.yt { margin: 0; }
.yt__frame, .yt > img, .yt > iframe {
  position: relative; width: 100%; aspect-ratio: 16 / 9;
  object-fit: cover; background: #111; border-radius: var(--radius);
}
.yt { position: relative; }
.yt > img { cursor: pointer; }
.yt__play {
  position: absolute; left: 50%; top: 50%;
  width: 72px; height: 50px; margin: -25px 0 0 -36px;
  border: 0; border-radius: 14px; background: rgba(255,0,0,.92);
  cursor: pointer; transition: transform .2s, background .2s;
}
.yt__play::before {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-40%, -50%);
  border-style: solid; border-width: 11px 0 11px 20px; border-color: transparent transparent transparent #fff;
}
.yt:hover .yt__play { transform: scale(1.08); background: var(--red); }
.yt.is-playing .yt__play, .yt.is-playing > img { display: none; }
.yt > iframe { border: 0; display: block; }
.yt figcaption { font-size: 14px; line-height: 1.3; color: var(--muted); margin-top: 10px; }
.yt figcaption { position: static; }
.yt.is-playing figcaption { margin-top: 10px; }

/* new rubrics */
.upcoming {
  position: relative; overflow: hidden;
  margin-top: clamp(40px, 6vh, 80px);
  padding: clamp(32px, 4vw, 64px) clamp(24px, 3vw, 56px) clamp(120px, 18vh, 220px);
  background: var(--card); border-radius: var(--radius);
}
.upcoming__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 72px);
  max-width: 62%; position: relative; z-index: 1;
}
.upcoming__title {
  font-family: var(--display); color: var(--red); text-transform: uppercase;
  font-size: clamp(36px, 3.4vw, 64px); line-height: .95; margin-bottom: .4em;
}
.upcoming__badge {
  position: relative; z-index: 1;
  display: inline-block; margin-top: clamp(40px, 8vh, 120px);
  background: var(--red); color: #fff; font-style: italic; font-weight: 500;
  font-size: clamp(18px, 1.6vw, 28px); padding: .7em 1.4em; border-radius: 16px;
}
.upcoming__star {
  position: absolute; right: -4%; bottom: -16%;
  width: clamp(260px, 38vw, 720px); pointer-events: none;
}

/* ---------- Cards / prices ---------- */
.cards { display: grid; gap: clamp(12px, 1.2vw, 20px); }
.cards--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card {
  background: var(--card); padding: clamp(24px, 2.4vw, 40px);
  display: flex; flex-direction: column; border-radius: var(--radius);
}
.card__title {
  font-family: var(--text); font-weight: 700; text-transform: uppercase;
  font-size: clamp(26px, 2.6vw, 48px); line-height: 1; letter-spacing: -.01em;
}
.card__sub { font-family: var(--text); color: var(--muted); text-transform: uppercase; font-size: clamp(13px, .95vw, 17px); margin: .9em 0 1.6em; }
.card__sub::first-line { text-transform: uppercase; }
.card__text { margin-bottom: 1.2em; }
.card__meta { margin-top: 1.4em; }
.card--note { justify-content: flex-start; }
.card--note .card__text { font-size: clamp(17px, 1.25vw, 22px); }

.list { list-style: none; }
.list li {
  position: relative; padding-left: 2em; margin-bottom: .7em;
}
.list li::before {
  content: ""; position: absolute; left: 0; top: .15em;
  width: 1.15em; height: 1.05em;
  background: url("assets/diamond.png") center / contain no-repeat;
}
.socials { list-style: none; margin-top: .4em; }
.socials li { display: flex; align-items: center; gap: .6em; margin-bottom: .55em; }
.socials img { width: 1.35em; height: 1.35em; object-fit: contain; }

.prices { margin-top: auto; padding-top: clamp(28px, 4vh, 56px); }
.price {
  display: flex; align-items: baseline; gap: .6em; flex-wrap: wrap;
  padding: .55em 0; border-top: 1px solid var(--line);
}
.price:first-child { border-top: 0; }
.prices .price:first-child { border-top: 1px solid var(--line); }
.price__num { font-family: var(--display); font-weight: 900; font-size: clamp(30px, 2.6vw, 48px); line-height: 1.1; }
.price__num--text { font-size: clamp(24px, 2.2vw, 40px); text-transform: uppercase; line-height: 1; }
.price__tax { font-size: .95em; }
.price__note { margin-left: auto; text-align: right; }

/* restricted */
.restrict {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .85fr); gap: clamp(24px, 4vw, 72px);
  margin-top: clamp(56px, 9vh, 120px); align-items: stretch;
}
.restrict__photo { position: relative; min-height: 320px; }
.restrict__title {
  font-family: var(--text); font-weight: 700; text-transform: uppercase;
  font-size: clamp(28px, 3vw, 52px); line-height: 1; margin-bottom: .7em;
}
.restrict__list { padding-left: 1.6em; margin: .3em 0 1.2em; }
.restrict__list li { margin-bottom: .3em; }
.restrict__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 100%; border-radius: var(--radius); }

/* ---------- Bonuses ---------- */
.bonus {
  position: relative; background: var(--card); border-radius: var(--radius);
  padding: clamp(24px, 2.4vw, 40px);
  min-height: clamp(260px, 26vw, 360px);
  display: flex; flex-direction: column;
}
.bonus__title {
  font-family: var(--text); font-weight: 700; text-transform: uppercase;
  font-size: clamp(24px, 2.1vw, 40px); line-height: 1; letter-spacing: -.01em;
  padding-right: 34%;
}
.bonus p { margin-top: auto; padding-top: 2.5em; }
.bonus__icon {
  position: absolute; top: clamp(20px, 2vw, 32px); right: clamp(20px, 2vw, 32px);
  width: 26%; max-height: 40%; object-fit: contain; object-position: top right;
}

/* ---------- Clients marquee ---------- */
.section--clients { padding-left: 0; padding-right: 0; }
.section--clients .section__title { padding: 0 var(--gutter); }
.marquee { overflow: hidden; width: 100%; padding: 16px 0; }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee__row { display: flex; align-items: center; list-style: none; gap: clamp(48px, 6vw, 112px); padding-right: clamp(48px, 6vw, 112px); }
.marquee__row li { flex: none; display: flex; align-items: center; height: 110px; }
.marquee__row img { height: 44px; width: auto; max-width: 240px; object-fit: contain; }
.marquee__row .marquee__sq img { height: 90px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; flex-wrap: wrap; width: 100%; }
  .marquee__row[aria-hidden="true"] { display: none; }
  .marquee__row { flex-wrap: wrap; padding: 0 var(--gutter); }
}

/* ---------- Results ---------- */
.results { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.results__cell {
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: clamp(64px, 12vh, 160px) var(--gutter);
  min-height: 60vh;
}
.results__cell { background: #F3F3F3; }
.results__cell--grey { background: #E9E9E9; }
.results__logo { height: clamp(40px, 4vw, 64px); width: auto; max-width: 70%; object-fit: contain; margin-bottom: clamp(48px, 12vh, 160px); }
.results__text { font-size: clamp(22px, 2.3vw, 42px); font-weight: 500; line-height: 1.2; max-width: 16em; }
.results__text .red { font-weight: 700; }

/* ---------- Examples ---------- */
.examples__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(24px, 4vh, 48px);
}
.examples__head .section__title { margin-bottom: 0; }
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  background: var(--red); color: #fff; text-decoration: none;
  font-family: var(--mono); font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  font-size: clamp(14px, 1vw, 17px); padding: 1.05em 1.8em; border-radius: 999px;
  transition: transform .2s, background .2s;
}
.btn:hover { background: #000; transform: translateY(-2px); }
.examples__cover { display: block; overflow: hidden; border-radius: var(--radius); }
.examples__cover img { width: 100%; transition: transform .6s ease; }
.examples__cover:hover img { transform: scale(1.02); }

/* ---------- Outro ---------- */
.outro {
  background: var(--red); color: #fff;
  min-height: 90vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(64px, 10vh, 140px) var(--gutter) 32px; position: relative;
}
.outro__text {
  font-family: var(--display); font-weight: 900; text-transform: uppercase; text-align: center;
  font-size: clamp(56px, 11vw, 220px); line-height: .88; letter-spacing: -.01em;
}
.outro__copy {
  position: absolute; bottom: 24px; left: 0; right: 0; text-align: center;
  font-family: var(--mono); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; opacity: .8;
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .rubric__head { grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); }
  .rubric__meta { grid-column: 1 / -1; }
  .cards--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .upcoming__grid { max-width: 100%; }
  .upcoming__star { display: none; }
  .upcoming { padding-bottom: clamp(32px, 5vh, 64px); }
}
@media (max-width: 800px) {
  :root { --nav-h: 56px; }
  .nav__brand { font-size: 15px; }
  .nav__links { font-size: 12px; }
  .hero { grid-template-columns: 1fr; }
  .hero__text { min-height: 0; gap: 40px; }
  .section { padding: 56px var(--gutter); }
  .section__title { margin-bottom: 28px; }
  .upcoming { margin-top: 32px; padding: 32px 20px 32px; }
  .hero__lead { margin-top: 32px; }
  .hero__photo { padding-top: 32px; }
  .hero__photo img { width: min(70%, 420px); }
  .stats { grid-template-columns: 1fr; }
  .rubric__head { grid-template-columns: 1fr; gap: 20px; }
  .videos--3, .videos--2 { grid-template-columns: 1fr; }
  .videos--1 { max-width: 100%; }
  .upcoming__grid { grid-template-columns: 1fr; }
  .cards--2, .cards--3 { grid-template-columns: 1fr; }
  .restrict { grid-template-columns: 1fr; }
  .restrict__photo { order: -1; }
  .results { grid-template-columns: 1fr; }
  .results__cell { min-height: 0; }
  .bonus { min-height: 0; }
  .bonus p { padding-top: 1.6em; }
  .price__note { margin-left: 0; width: 100%; text-align: left; }
  .marquee__row li { height: 80px; }
  .marquee__row img { height: 34px; max-width: 180px; }
  .marquee__row .marquee__sq img { height: 64px; }
  .marquee__track { animation-duration: 32s; }
}

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
  [data-reveal].is-visible { opacity: 1; transform: none; }
  .hero__title, .hero__lead, .hero__photo img { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
  .hero__lead { animation-delay: .15s; }
  .hero__photo img { animation-delay: .1s; animation-duration: 1.1s; }
  @keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
  .card, .bonus { transition: transform .35s ease, box-shadow .35s ease; }
  .card:hover, .bonus:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -24px rgba(0,0,0,.28); }
  .bonus__icon { transition: transform .4s cubic-bezier(.2,.7,.2,1); }
  .bonus:hover .bonus__icon { transform: translateY(-4px) rotate(-3deg); }
  .yt > img { transition: transform .5s ease, filter .3s ease; }
  .yt:hover > img { transform: scale(1.02); filter: brightness(1.05); }
  .yt { overflow: hidden; border-radius: var(--radius); }
  .yt figcaption { transition: color .25s; }
  .yt:hover figcaption { color: var(--ink); }
  .marquee__row img { transition: transform .3s ease, opacity .3s ease; }
  .marquee__row li:hover img { transform: scale(1.06); }
  .stats__icon { transition: transform .5s cubic-bezier(.2,.7,.2,1); }
  .stats__cell:hover .stats__icon { transform: translateY(-6px) rotate(-4deg); }
  .restrict__photo img { transition: transform .8s ease; }
  .restrict__photo:hover img { transform: scale(1.02); }
}
