/* ============================================================
   AI FACTORY UNLOCKED â€” NVIDIA Ã— Team Computers
   Single-file landing page. Font: Montserrat.
   ------------------------------------------------------------
   TO DROP IN THE REAL HERO PHOTO:
   set --hero-photo on .hero and add class "has-photo" to <body class="has-photo">.
   e.g.  <body class="has-photo">
         .hero{  }
   The generative CSS/canvas scene is the fallback default.
   Logo lockup uses a clean SVG approximation â€” swap with the
   official PNG inside .brand / .footer-brand when available.
   ============================================================ */

:root {
  --void: #060d0a;
  --ink: #0a140f;
  --ink-2: #0d1812;
  --panel: #101d16;
  --panel-2: #13231b;
  --panel-line: rgba(230, 203, 134, .14);
  --hair: rgba(243, 239, 230, .10);

  --gold: #e7cd8a;
  --gold-deep: #caa863;
  --gold-soft: #f0e0b6;
  --cream: #f4f0e7;
  --muted: #94a89d;
  --muted-2: #6f857a;
  --nvidia: #76b900;

  --maxw: 1240px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, sans-serif;
}

:where(#ai-factory-wrapper) * {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

#ai-factory-wrapper {
  font-family: var(--font);
  background: var(--void);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

:where(#ai-factory-wrapper) img {
  max-width: 100%;
  display: block
}

:where(#ai-factory-wrapper) a {
  color: inherit;
  text-decoration: none
}

:where(#ai-factory-wrapper) button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none
}

:where(#ai-factory-wrapper) ::selection {
  background: rgba(231, 205, 138, .28);
  color: #fff
}

/* grain overlay over everything */
#ai-factory-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px
}

/* ---------- type helpers ---------- */
.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-deep))
}

.section-index {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .28em;
  color: var(--gold-deep);
  text-transform: uppercase;
}

.gold-text {
  background: linear-gradient(180deg, var(--gold-soft) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .5s var(--ease), padding .5s var(--ease), border-color .5s;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 13, 10, .72);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--hair);
  padding: 12px 0;
}

.nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 1100;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold), var(--gold-soft));
  box-shadow: 0 0 12px rgba(231, 205, 138, .55)
}

.nav__links a.active {
  color: var(--cream)
}

.nav__links a.active::after {
  width: 100%
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: rgba(244, 240, 231, .72);
  position: relative;
  transition: color .3s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  height: 1px;
  width: 0;
  background: var(--gold);
  transition: width .35s var(--ease);
}

.nav__links a:hover {
  color: var(--cream)
}

.nav__links a:hover::after {
  width: 100%
}

/* brand lockup (SVG approximation â€” swap with official asset) */
.brand {
  display: flex;
  align-items: center;
  gap: 16px
}

.brand .team {
  display: flex;
  flex-direction: column;
  line-height: .92
}

.brand .team .t1 {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.01em;
  color: #fff
}

.brand .team .t2 {
  font-weight: 600;
  font-size: 8.5px;
  letter-spacing: .42em;
  color: rgba(255, 255, 255, .75);
  padding-left: 2px
}

.brand .divider {
  width: 1px;
  height: 30px;
  background: rgba(244, 240, 231, .22)
}

.brand .nv {
  display: flex;
  align-items: center;
  gap: 9px
}

.brand .nv .mark {
  width: 26px;
  height: 26px;
  flex: none
}

.brand .nv .nvtxt {
  display: flex;
  flex-direction: column;
  line-height: 1
}

.brand .nv .nvtxt .a {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .02em;
  color: #fff
}

.brand .nv .nvtxt .b {
  font-weight: 500;
  font-size: 8px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
  margin-top: 2px
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: 100px;
  padding: 13px 24px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .4s;
  position: relative;
  will-change: transform;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1a1206;
  box-shadow: 0 8px 30px -10px rgba(231, 205, 138, .5);
}

.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -12px rgba(231, 205, 138, .6)
}

.btn--ghost {
  border: 1px solid rgba(231, 205, 138, .4);
  color: var(--gold);
  background: rgba(231, 205, 138, .04)
}

.btn--ghost:hover {
  background: rgba(231, 205, 138, .1);
  transform: translateY(-2px)
}

.btn .arr {
  transition: transform .4s var(--ease)
}

.btn:hover .arr {
  transform: translateX(4px)
}

.nav .btn {
  padding: 11px 22px
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;

}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(120% 90% at 18% 78%, #0e1b16 0%, #081210 38%, var(--void) 78%);
}

/* real-photo layer (hidden unless #ai-factory-wrapper.has-photo) */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url('../images/hero-ai-factory.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0;
  display: none
}

#ai-factory-wrapper.has-photo .hero__photo {
  display: block;
  opacity: 1
}

#ai-factory-wrapper.has-photo .hero__scene {
  opacity: 0
}

#ai-factory-wrapper.has-photo #stars {
  display: none
}

#ai-factory-wrapper.has-photo .hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 13, 10, .94) 0%, rgba(6, 13, 10, .66) 34%, rgba(6, 13, 10, .12) 60%, rgba(6, 13, 10, .30) 100%), linear-gradient(0deg, rgba(6, 13, 10, .88) 0%, rgba(6, 13, 10, .25) 34%, transparent 55%)
}

canvas#stars {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%
}

/* generative scene */
.hero__scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  transition: opacity .6s
}

/* nebula diagonal band */
.nebula {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 90%;
  height: 120%;
  background:
    radial-gradient(60% 40% at 60% 40%, rgba(118, 185, 0, .16), transparent 60%),
    radial-gradient(50% 30% at 55% 45%, rgba(150, 210, 90, .10), transparent 65%);
  transform: rotate(-32deg);
  filter: blur(30px);
  opacity: .9;
}

/* big planet limb bottom-left */
.planet {
  position: absolute;
  left: -26vw;
  bottom: -30vw;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background:
    radial-gradient(circle at 72% 30%, rgba(190, 210, 200, .5), rgba(70, 90, 82, .25) 30%, rgba(14, 24, 20, .9) 62%, #060d0a 75%);
  box-shadow: inset 18px -10px 60px rgba(0, 0, 0, .6);
}

.planet::before {
  /* rim light */
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 72% 22%, rgba(214, 232, 222, .9), transparent 18%);
  filter: blur(2px);
  mix-blend-mode: screen;
}

/* crescent moon */
.moon {
  position: absolute;
  left: 28%;
  top: 20%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 38%, #c9cfca, #6c726d 60%, #2a2e2b);
  box-shadow: 0 0 40px rgba(180, 200, 190, .18);
  opacity: .8;
}

/* faint distant sun glow right */
.sun-glow {
  position: absolute;
  right: 8%;
  top: 46%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 230, 150, .55), rgba(118, 185, 0, .12) 45%, transparent 70%);
  filter: blur(6px);
}

/* ground + monolith skyline */
.ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 34%;
  z-index: -2;
  background: linear-gradient(180deg, transparent, #060d0a 70%);
}

.skyline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18%;
  height: 240px;
  z-index: -2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  opacity: .85;
  -webkit-mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.mono {
  position: relative;
  width: 34px;
  background: linear-gradient(180deg, #0c1813, #05100c);
  border: 1px solid rgba(120, 150, 135, .18);
  border-bottom: none;
  border-radius: 3px 3px 0 0;
  box-shadow: 0 0 22px rgba(0, 0, 0, .5);
  overflow: hidden
}

.mono .led {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 1px;
  background: var(--nvidia);
  box-shadow: 0 0 4px var(--nvidia);
  opacity: .85
}

.mono .led.amber {
  background: #e9b84a;
  box-shadow: 0 0 4px #e9b84a
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(120% 90% at 50% 40%, transparent 50%, rgba(4, 8, 6, .7) 100%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 80px;
  width: 100%
}

.hero .eyebrow {
  margin-bottom: 26px
}

.hero h1 {
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: .94;
  font-size: clamp(48px, 8.4vw, 120px);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero h1 .line {
  display: block;
  overflow: hidden
}

.hero h1 .line>span {
  display: block
}

/* outline treatment removed per request */
.hero__sub {
  font-size: clamp(16px, 1.9vw, 23px);
  font-weight: 500;
  color: var(--cream);
  max-width: 640px;
  margin-top: 22px;
  line-height: 1.4;
  letter-spacing: .005em;
}

.hero__tag {
  font-size: 14px;
  color: var(--muted);
  margin-top: 14px;
  font-weight: 400;
  letter-spacing: .02em
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--hair)
}

.hero__meta .m {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.hero__meta .m .lab {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep)
}

.hero__meta .m .val {
  font-size: 15px;
  font-weight: 600;
  color: var(--cream)
}

.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 10px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px
}

.scroll-cue .bar {
  width: 1px;
  height: 38px;
  background: linear-gradient(var(--gold), transparent);
  animation: cue 2.2s var(--ease) infinite
}

@keyframes cue {
  0% {
    transform: scaleY(0);
    transform-origin: top
  }

  45% {
    transform: scaleY(1);
    transform-origin: top
  }

  55% {
    transform: scaleY(1);
    transform-origin: bottom
  }

  100% {
    transform: scaleY(0);
    transform-origin: bottom
  }
}

/* ===================== MARQUEE STRIP ===================== */
.strip {
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  background: rgba(8, 15, 11, .6);
  overflow: hidden;
  padding: 16px 0
}

.strip__track {
  display: flex;
  gap: 54px;
  white-space: nowrap;
  width: max-content;
  animation: scrollx 32s linear infinite
}

.strip__track span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(244, 240, 231, .5);
  display: inline-flex;
  align-items: center;
  gap: 54px
}

.strip__track span::after {
  content: "\25c6";
  color: var(--gold-deep);
  font-size: 9px
}

@keyframes scrollx {
  to {
    transform: translateX(-50%)
  }
}

/* ===================== SECTION SHELL ===================== */
.section {
  position: relative;
  padding: 120px 0
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap
}

.section__title {
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.04
}

.section__lead {
  max-width: 440px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400
}

/* ===================== WHY ATTEND ===================== */
.why {
  background: linear-gradient(180deg, var(--void), var(--ink) 50%, var(--void))
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--panel-line)
}

.why__item {
  padding: 36px 34px;
  border-bottom: 1px solid var(--panel-line);
  position: relative;
  transition: background .5s var(--ease)
}

.why__item:nth-child(odd) {
  border-right: 1px solid var(--panel-line)
}

.why__item:hover {
  background: rgba(231, 205, 138, .035)
}

.why__item .num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--gold-deep);
  margin-bottom: 18px
}

.why__item .ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  background: rgba(231, 205, 138, .08);
  border: 1px solid var(--panel-line);
  color: var(--gold)
}

.why__item h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -.005em
}

.why__item h3 b {
  color: var(--gold-soft);
  font-weight: 700
}

.why__item:hover .ic {
  transform: translateY(-3px);
  transition: transform .5s var(--ease)
}

/* ===================== AGENDA ===================== */
.agenda {
  background: var(--void)
}

.timeline {
  position: relative;
  margin-top: 20px
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--panel-line) 8%, var(--panel-line) 92%, transparent);
}

.tl__line {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), var(--gold-deep));
  transform-origin: top;
  transform: scaleY(0);
  box-shadow: 0 0 14px rgba(231, 205, 138, .5)
}

.tl__item {
  position: relative;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  padding: 30px 0 30px 40px;
  border-bottom: 1px solid var(--panel-line)
}

.tl__item:last-child {
  border-bottom: none
}

.tl__dot {
  position: absolute;
  left: -5px;
  top: 38px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--ink-2);
  border: 1px solid var(--gold-deep)
}

.tl__dot::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  transition: opacity .5s;
  box-shadow: 0 0 10px var(--gold)
}

.tl__item:hover .tl__dot::after {
  opacity: 1
}

.tl__time {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--gold);
  padding-top: 30px;
  font-variant-numeric: tabular-nums
}

.tl__body {
  padding-top: 24px
}

.tl__body h3 {
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -.01em
}

.tl__body p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
  max-width: 520px;
  line-height: 1.6
}

.tl__tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--nvidia);
  border: 1px solid rgba(118, 185, 0, .3);
  padding: 4px 11px;
  border-radius: 100px
}

.tl__tag.tc {
  color: var(--gold);
  border-color: rgba(231, 205, 138, .3)
}

/* ===================== DETAILS ===================== */
.details {
  background: linear-gradient(180deg, var(--void), var(--ink-2))
}

.det__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.det__card {
  padding: 40px 34px;
  border: 1px solid var(--panel-line);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(19, 35, 27, .5), rgba(10, 20, 15, .5));
  transition: transform .5s var(--ease), border-color .5s
}

.det__card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 205, 138, .4)
}

.det__card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(231, 205, 138, .08);
  border: 1px solid var(--panel-line);
  margin-bottom: 26px
}

.det__card .lab {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px
}

.det__card .val {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em
}

.det__card .sub {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px
}

/* ===================== REGISTER / FORM ===================== */
.register {
  background: var(--void);
  position: relative;
  overflow: hidden
}

.register .nebula-2 {
  position: absolute;
  left: -10%;
  top: 10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(118, 185, 0, .08), transparent 70%);
  filter: blur(40px);
  pointer-events: none
}

.reg__grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start
}

.reg__intro h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.02
}

.reg__intro p {
  font-size: 16px;
  color: var(--muted);
  margin-top: 22px;
  line-height: 1.7;
  max-width: 420px
}

.reg__points {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 14px
}

.reg__points .p {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--cream)
}

.reg__points .p svg {
  flex: none;
  color: var(--gold)
}

.form-card {
  background: linear-gradient(180deg, rgba(19, 35, 27, .6), rgba(10, 20, 15, .7));
  border: 1px solid var(--panel-line);
  border-radius: 22px;
  padding: 38px;
  backdrop-filter: blur(6px)
}

.form-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px
}

.form-card .seats {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px
}

.field {
  margin-bottom: 18px
}

.field.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px
}

.field input,
.field select {
  width: 100%;
  background: rgba(6, 13, 10, .7);
  border: 1px solid var(--hair);
  border-radius: 11px;
  padding: 13px 15px;
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: border-color .3s, box-shadow .3s;
}

.field input::placeholder {
  color: var(--muted-2)
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(231, 205, 138, .12)
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2394a89d' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center
}

.field .err {
  font-size: 11px;
  color: #e08b6b;
  margin-top: 6px;
  display: none;
  letter-spacing: .02em
}

.invalid input,
.invalid select {
  border-color: rgba(224, 139, 107, .6) !important
}

.invalid>.err {
  display: block
}

.form-card .submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px
}

.form-note {
  font-size: 11.5px;
  color: var(--muted-2);
  margin-top: 16px;
  text-align: center;
  line-height: 1.6
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 10px
}

.form-success.show {
  display: block;
  animation: pop .6s var(--ease)
}

@keyframes pop {
  from {
    opacity: 0;
    transform: scale(.96)
  }

  to {
    opacity: 1;
    transform: scale(1)
  }
}

.form-success .check {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  background: rgba(118, 185, 0, .12);
  border: 1px solid rgba(118, 185, 0, .4);
  color: var(--nvidia)
}

.form-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: -.01em;
  text-transform: none;
  margin-bottom: 10px
}

.form-success p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--hair);
  padding: 70px 0 40px
}

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 46px;
  border-bottom: 1px solid var(--hair)
}

.footer__brand .blurb {
  font-size: 14px;
  color: var(--muted);
  max-width: 360px;
  margin-top: 20px;
  line-height: 1.7
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer__contact .lab {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep)
}

.footer__contact a {
  font-size: 18px;
  font-weight: 600;
  color: var(--cream);
  transition: color .3s
}

.footer__contact a:hover {
  color: var(--gold)
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px
}

.footer__bottom p {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: .02em
}

.footer__bottom .links {
  display: flex;
  gap: 24px
}

.footer__bottom .links a {
  font-size: 12px;
  color: var(--muted)
}

.footer__bottom .links a:hover {
  color: var(--gold)
}

/* reveal base */
[data-reveal] {
  opacity: 0;
  transform: translateY(26px)
}

/* ===================== RESPONSIVE ===================== */
@media (max-width:980px) {
  .reg__grid {
    grid-template-columns: 1fr;
    gap: 42px
  }

  .det__grid {
    grid-template-columns: 1fr
  }

  .nav__links {
    display: none
  }
}

@media (max-width:760px) {
  .wrap {
    padding: 0 20px
  }

  .section {
    padding: 84px 0
  }

  .why__grid {
    grid-template-columns: 1fr
  }

  .why__item:nth-child(odd) {
    border-right: none
  }

  .tl__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 32px
  }

  .tl__time {
    padding-top: 0
  }

  .tl__body {
    padding-top: 6px
  }

  .hero__meta {
    gap: 22px
  }

  .field.row {
    grid-template-columns: 1fr
  }

  .brand .nv .nvtxt .b {
    display: none
  }
}

@media (max-width:520px) {
  .hero__cta {
    flex-direction: column
  }

  .hero__cta .btn {
    width: 100%
  }

  .footer__top {
    flex-direction: column
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important
  }

  [data-reveal] {
    opacity: 1;
    transform: none
  }
}
/* Consent Boxes */

.consent-nvidia { margin-bottom: 24px; font-size: 14px; line-height: 1.6; color: rgba(255, 255, 255, 0.9); }
.consent-nvidia p { margin-bottom: 12px; }
.consent-nvidia a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.consent-nvidia label.check-label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; margin-bottom: 0; }
.consent-nvidia input[type='checkbox'] { margin-top: 2px; }
.consent-tc { font-size: 14px; text-align: left; color: rgba(255, 255, 255, 0.9); margin-top: 20px; margin-bottom: 0; }


/* Split Logo Updates */
.brand{gap:15px}
.brand .logo-team{height:31px;width:auto;display:block}
.brand .logo-nv{height:44px;width:auto;display:block}
.brand .divider{height:40px}
.footer .brand .logo-team{height:34px}
.footer .brand .logo-nv{height:48px}
@media (max-width:760px){.brand .logo-team{height:25px}.brand .logo-nv{height:37px}.brand .divider{height:33px}}
