

:root {
  
  --black:      #000000;
  --surface-1:  #0A0A0B;
  --surface-2:  #111113;
  --surface-3:  #17171A;
  --line:       #232327;
  --line-soft:  #1A1A1D;

  --red:        #E8141B;
  --red-deep:   #A60D12;
  --red-glow:   rgba(232,20,27,.55);

  --gray:       #8E8E96;
  --gray-2:     #B6B6BD;
  --white:      #F5F5F6;

  --wa:         #25D366;
  --wa-deep:    #1da851;

  --radius:     16px;
  --radius-sm:  11px;
  --pill:       999px;
  --maxw:       1200px;

  --ff-display: "Archivo", system-ui, sans-serif;
  --ff-body:    "Sora", system-ui, -apple-system, sans-serif;

  --ease:       cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--red); color: #fff; }

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

h1, h2, h3, h4 { font-family: var(--ff-display); margin: 0 0 .4em; line-height: 1.03; letter-spacing: -.02em; font-weight: 800; }


@view-transition { navigation: auto; }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .42s; }


.page-fade { animation: pageIn .5s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }


.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--ff-display); font-weight: 700; font-size: .96rem;
  letter-spacing: .005em; padding: .85rem 1.6rem; border-radius: var(--pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap; will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: .58rem 1.1rem; font-size: .88rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.04rem; }
.btn--block { display: flex; justify-content: center; width: 100%; }

.btn--red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -8px var(--red-glow); }
.btn--red:hover { background: var(--red-deep); box-shadow: 0 0 0 1px var(--red), 0 0 26px -2px var(--red-glow); }
.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--red); color: #fff; }
.btn--wa { background: var(--wa); color: #06301c; }
.btn--wa:hover { background: var(--wa-deep); color: #fff; }


.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--black) 78%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { background: color-mix(in srgb, var(--black) 92%, transparent); border-bottom-color: var(--line); }
.header__inner { display: flex; align-items: center; gap: 1.6rem; height: 74px; }
.brand { display: flex; align-items: center; gap: .65rem; }
.brand__icon { width: 42px; height: 42px; object-fit: contain; }
.brand__name { font-family: var(--ff-display); font-weight: 900; font-size: 1.18rem; letter-spacing: .02em; text-transform: uppercase; }

.nav { display: flex; gap: 1.7rem; margin-left: auto; }
.nav a { font-family: var(--ff-body); font-weight: 500; font-size: .94rem; color: var(--gray-2); position: relative; padding: .3rem 0; transition: color .2s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--red); transition: width .25s var(--ease); }
.nav a:hover, .nav a[aria-current="page"] { color: #fff; }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }

.header__cta { display: flex; gap: .55rem; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; margin-left: auto; }
.nav-toggle span { width: 26px; height: 2px; background: #fff; border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile { display: none; flex-direction: column; gap: .1rem; padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .35s var(--ease), padding .35s var(--ease); background: var(--surface-1); border-bottom: 1px solid transparent; }
.nav-mobile.open { max-height: 440px; padding: .6rem 24px 1.3rem; border-bottom-color: var(--line); }
.nav-mobile a { font-family: var(--ff-display); font-weight: 700; padding: .9rem .2rem; border-bottom: 1px solid var(--line-soft); color: var(--gray-2); }
.nav-mobile a.btn { border: 0; margin-top: .9rem; color: #06301c; justify-content: center; }


.hero { position: relative; overflow: clip; padding: clamp(56px, 9vw, 120px) 0 0; }
.hero__glow { position: absolute; top: -25%; right: -8%; width: 64vw; height: 64vw; max-width: 760px; max-height: 760px;
  background: radial-gradient(circle, var(--red-glow), transparent 60%); opacity: .5; filter: blur(10px); pointer-events: none; will-change: transform; }
.hero__inner { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 2.4rem; position: relative; z-index: 1; }

.kicker { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ff-display); font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; font-size: .72rem; color: var(--gray-2);
  border: 1px solid var(--line); padding: .45rem .95rem; border-radius: var(--pill); }
.kicker__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red); box-shadow: 0 0 12px var(--red-glow); }

.hero__title {
  font-family: var(--ff-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.7rem, 7vw, 5.4rem); line-height: .9; letter-spacing: -.025em;
  margin: 1.2rem 0 .9rem;
  background: linear-gradient(180deg, #fff 52%, #b9b9bf); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub { color: var(--gray-2); font-size: 1.12rem; max-width: 36ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.hero__art { justify-self: center; position: relative; z-index: 1; will-change: transform; }
.hero__art img { width: clamp(260px, 38vw, 520px); height: auto; filter: drop-shadow(0 30px 70px rgba(232,20,27,.3)); }


.marquee { margin-top: clamp(48px, 7vw, 84px); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--surface-1); overflow: hidden; }
.marquee__track { display: flex; align-items: center; gap: 1.6rem; white-space: nowrap; padding: 1.05rem 0;
  font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; letter-spacing: .02em;
  font-size: 1.55rem; color: var(--white); width: max-content; animation: marquee 30s linear infinite; }
.marquee__track .sep { color: var(--red); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }


.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--surface-1); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }
.section__head { max-width: 660px; margin: 0 auto clamp(36px, 5vw, 60px); text-align: center; }
.section__head h2 { font-family: var(--ff-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
.section__head p { color: var(--gray-2); }
.eyebrow { display: inline-block; font-family: var(--ff-display); font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  font-size: .74rem; color: var(--red); margin-bottom: .8rem; }


.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 1.15rem; }
.card { background: var(--surface-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem 1.6rem;
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease); position: relative; overflow: hidden; }
.card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 2px; background: linear-gradient(90deg, var(--red), transparent); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-7px); border-color: #34343a; box-shadow: 0 24px 50px -20px rgba(0,0,0,.8); }
.card:hover::before { transform: scaleX(1); }
.card__icon { display: inline-flex; width: 56px; height: 56px; align-items: center; justify-content: center;
  border-radius: 13px; background: rgba(232,20,27,.1); border: 1px solid rgba(232,20,27,.22); color: var(--red); margin-bottom: 1.1rem; }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-family: var(--ff-display); font-weight: 800; font-size: 1.28rem; }
.card p { color: var(--gray-2); font-size: .97rem; margin: .4rem 0 1.1rem; }
.card__link { font-family: var(--ff-display); font-weight: 700; color: var(--red); font-size: .92rem; letter-spacing: .01em; }
.card__link:hover { color: #fff; }


.about { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.4rem); align-items: center; }
.about__media { display: flex; justify-content: center; }
.about__media img { width: clamp(220px, 30vw, 350px); height: auto; filter: drop-shadow(0 26px 60px rgba(232,20,27,.3)); }
.about__copy h2 { font-family: var(--ff-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.1rem, 4.6vw, 3.2rem); }
.about__copy p { color: var(--gray-2); }
.about__copy strong { color: #fff; }
.checks { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .75rem; }
.checks li { position: relative; padding-left: 2rem; color: var(--gray-2); }
.checks li::before { content: ""; position: absolute; left: 0; top: .35em; width: 1.25rem; height: 1.25rem;
  background: var(--red); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/72% no-repeat;
  background-color: var(--red); }


.cta-band { position: relative; overflow: hidden; padding: clamp(56px, 8vw, 96px) 0; text-align: center;
  background: radial-gradient(120% 140% at 50% 0%, var(--red) 0%, var(--red-deep) 55%, #5e070a 100%); }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 120%, rgba(0,0,0,.45), transparent); pointer-events: none; }
.cta-band__inner { position: relative; z-index: 1; }
.cta-band__inner h2 { font-family: var(--ff-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.9rem, 4.6vw, 3.1rem); color: #fff; }
.cta-band__inner p { color: rgba(255,255,255,.92); margin-bottom: 1.6rem; }
.cta-band .hero__actions { justify-content: center; }
.cta-band .btn--ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.cta-band .btn--ghost:hover { background: rgba(0,0,0,.22); border-color: #fff; }
.cta-band .btn--wa { background: #fff; color: var(--red-deep); }
.cta-band .btn--wa:hover { background: #06301c; color: #fff; }


.site-footer { background: var(--surface-1); border-top: 1px solid var(--line); padding: clamp(52px, 6vw, 76px) 0 1.6rem; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr; gap: 2.6rem; }
.footer__brand img { width: 50px; height: 50px; object-fit: contain; margin-bottom: .9rem; }
.footer__name { font-family: var(--ff-display); font-weight: 900; text-transform: uppercase; letter-spacing: .02em; font-size: 1.18rem; margin: 0 0 .45rem; }
.footer__note { color: var(--gray); max-width: 32ch; }
.footer__col h4 { font-family: var(--ff-display); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; color: #fff; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .58rem; }
.footer__col a, .footer__col li { color: var(--gray); font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--red); }
.footer__social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer__social a { font-family: var(--ff-display); font-weight: 700; font-size: .82rem; color: var(--gray-2); }
.footer__social a:hover { color: var(--red); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); color: var(--gray); font-size: .84rem; }
.footer__top { color: var(--gray-2); }
.footer__top:hover { color: var(--red); }


.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 60; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.42); transition: transform .2s var(--ease), background .2s var(--ease); }
.wa-float::after { content: ""; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.45); animation: wapulse 2.6s ease-out infinite; }
.wa-float:hover { background: var(--wa-deep); transform: scale(1.07); }
@keyframes wapulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.4); } 70%,100% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } }


#gd-intro { position: fixed; inset: 0; z-index: 999; background: var(--black); display: flex; align-items: center; justify-content: center;
  transition: opacity .55s var(--ease), visibility .55s var(--ease); }
#gd-intro.hide { opacity: 0; visibility: hidden; }
.gd-intro__inner { display: flex; flex-direction: column; align-items: center; gap: 1.1rem; }
.gd-intro__inner img { width: 116px; height: 116px; object-fit: contain; animation: introPop .6s var(--ease) both; }
.gd-intro__word { font-family: var(--ff-display); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; font-size: 1.15rem;
  color: #fff; opacity: 0; animation: introWord .5s var(--ease) .25s both; }
.gd-intro__bar { width: 132px; height: 2px; background: var(--line); border-radius: 3px; overflow: hidden; }
.gd-intro__bar i { display: block; height: 100%; width: 0; background: var(--red); box-shadow: 0 0 14px var(--red-glow); animation: introLoad .85s var(--ease) .15s forwards; }
@keyframes introPop { from { transform: scale(.78); opacity: 0; } to { transform: scale(1); opacity: 1; } }
@keyframes introWord { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
@keyframes introLoad { to { width: 100%; } }


.reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }
[data-parallax] { will-change: transform; }


@media (max-width: 920px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__copy { order: 2; }
  .hero__art { order: 1; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .kicker { margin: 0 auto; }
  .about { grid-template-columns: 1fr; text-align: center; }
  .about__media { order: 1; }
  .checks { text-align: left; max-width: 380px; margin-left: auto; margin-right: auto; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  body { font-size: 16px; }
  .marquee__track { font-size: 1.25rem; }
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}


:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
  @view-transition { navigation: none; }
}
