:root {
  --ctv-black: #050508;
  --ctv-ink: #0b0b11;
  --ctv-panel: #11121a;
  --ctv-blue: #0647ff;
  --ctv-blue-bright: #1b5cff;
  --ctv-ice: #f4f6ff;
  --ctv-muted: #9ca3b9;
  --ctv-line: rgba(244, 246, 255, .15);
}

.ctv-home,
.ctv-home * { box-sizing: border-box; }
.ctv-home {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--ctv-black);
  color: var(--ctv-ice);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}
.ctv-home a { color: inherit; text-decoration: none; }
.ctv-home h1,
.ctv-home h2,
.ctv-home h3,
.ctv-home p { margin-top: 0; }
.ctv-home h1,
.ctv-home h2,
.ctv-home h3 {
  color: var(--ctv-ice);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.ctv-home em { color: var(--ctv-blue-bright); font-style: normal; }

.ctv-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #c6cbda;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .2em;
}
.ctv-kicker > span { display: inline-block; width: 28px; height: 2px; background: var(--ctv-blue-bright); }

.ctv-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: center;
  min-height: min(880px, 91vh);
  padding: clamp(48px, 7vw, 112px) clamp(22px, 6vw, 96px);
  isolation: isolate;
}
.ctv-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 48%, rgba(6, 71, 255, .28), transparent 33%),
    radial-gradient(circle at 24% 8%, rgba(6, 71, 255, .12), transparent 26%),
    linear-gradient(135deg, #050508 30%, #070812 100%);
}
.ctv-hero__grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 90%);
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.ctv-hero__copy { position: relative; z-index: 2; max-width: 780px; }
.ctv-hero h1 { margin-bottom: 26px; font-size: clamp(74px, 10.4vw, 168px); line-height: .78; }
.ctv-hero__lead { max-width: 570px; margin-bottom: 32px; color: #c2c7d5; font-size: clamp(17px, 1.55vw, 23px); line-height: 1.55; }
.ctv-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.ctv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 56px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 27px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.ctv-button:hover { transform: translateY(-3px); }
.ctv-button--primary { background: var(--ctv-blue); color: white !important; box-shadow: 0 12px 45px rgba(6,71,255,.3); }
.ctv-button--primary:hover { background: #2360ff; }
.ctv-button--ghost { border-color: rgba(255,255,255,.28); color: white !important; background: rgba(255,255,255,.03); }
.ctv-button--ghost:hover { border-color: white; background: white; color: var(--ctv-black) !important; }
.ctv-proof { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 38px; color: #868da2; font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.ctv-proof span::first-letter { color: var(--ctv-blue-bright); }

.ctv-hero__art { position: relative; display: grid; place-items: center; min-height: 560px; }
.ctv-hero__art::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 72%;
  height: 15%;
  bottom: 12%;
  border-radius: 50%;
  background: rgba(4, 41, 168, .62);
  filter: blur(48px);
}
.ctv-hero__art img {
  width: min(100%, 640px);
  height: auto;
  filter: saturate(1.1) contrast(1.04) drop-shadow(0 0 34px rgba(0, 64, 255, .28));
  animation: ctv-float 6s ease-in-out infinite;
}
.ctv-orbit { position: absolute; z-index: -1; border: 1px solid rgba(98, 136, 255, .3); border-radius: 50%; transform: rotate(-18deg); }
.ctv-orbit--one { width: 92%; aspect-ratio: 1.45; }
.ctv-orbit--two { width: 70%; aspect-ratio: 1.2; border-style: dashed; animation: ctv-spin 24s linear infinite; }
.ctv-hero__stamp { position: absolute; right: 2%; bottom: 11%; margin: 0; color: white; font: 900 24px/1 Impact, sans-serif; letter-spacing: .07em; text-align: center; transform: rotate(8deg); }
.ctv-hero__stamp span { color: var(--ctv-blue-bright); font: 800 8px/1.2 Inter, sans-serif; letter-spacing: .16em; }

.ctv-marquee { overflow: hidden; border-block: 1px solid var(--ctv-line); background: var(--ctv-blue); color: white; }
.ctv-marquee > div { display: flex; align-items: center; gap: 28px; width: max-content; padding: 15px 0; animation: ctv-marquee 26s linear infinite; }
.ctv-marquee span { font: 900 17px/1 Impact, sans-serif; letter-spacing: .09em; }
.ctv-marquee i { font-size: 11px; font-style: normal; }

.ctv-section { padding: clamp(76px, 9vw, 140px) clamp(22px, 6vw, 96px); }
.ctv-section__heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; max-width: 1500px; margin: 0 auto 50px; }
.ctv-section__heading h2,
.ctv-manifesto h2 { margin-bottom: 0; font-size: clamp(54px, 7vw, 108px); line-height: .83; }
.ctv-section__heading > a { padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 900; letter-spacing: .13em; }
.ctv-events-page { min-height: 100vh; padding-top: clamp(34px, 5vw, 70px); }
.ctv-events-page .ctv-section__heading h1 { margin-bottom: 0; font-size: clamp(64px, 9vw, 136px); line-height: .8; }

.ctv-event-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; max-width: 1500px; margin: 0 auto; }
.ctv-event-card { overflow: hidden; border: 1px solid var(--ctv-line); border-radius: 3px; background: #0c0d13; transition: transform .3s ease, border-color .3s ease; }
.ctv-event-card:hover { transform: translateY(-7px); border-color: rgba(27,92,255,.8); }
.ctv-event-card__image { position: relative; display: block; aspect-ratio: 1.12; overflow: hidden; background: #06070c; }
.ctv-event-card__image::after { content: ""; position: absolute; inset: auto 0 0; height: 55%; background: linear-gradient(transparent, rgba(0,0,0,.72)); }
.ctv-event-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ctv-event-card:hover .ctv-event-card__image img { transform: scale(1.045); }
.ctv-event-card__image > span { position: absolute; z-index: 2; top: 16px; left: 16px; padding: 7px 10px; background: var(--ctv-blue); color: white; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.ctv-event-card__body { padding: 22px; }
.ctv-event-card__date { margin-bottom: 9px; color: var(--ctv-blue-bright); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.ctv-event-card h3 { margin-bottom: 10px; font-size: clamp(28px, 3vw, 44px); line-height: .94; }
.ctv-event-card__venue { color: var(--ctv-muted); font-size: 13px; }
.ctv-event-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 22px; padding-top: 16px; border-top: 1px solid var(--ctv-line); }
.ctv-event-card__footer > span { color: white; font-weight: 900; }
.ctv-event-card__footer > a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ctv-blue); font-size: 18px; }
.ctv-empty-event { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 40px; max-width: 1500px; margin: 0 auto; padding: clamp(30px, 5vw, 70px); border: 1px solid var(--ctv-line); background: linear-gradient(120deg, #0c0d15, rgba(6,71,255,.15)); }
.ctv-empty-event h3 { margin-bottom: 0; font-size: clamp(52px, 7vw, 108px); line-height: .82; }
.ctv-empty-event > p { max-width: 510px; margin: 0; color: var(--ctv-muted); font-size: 17px; line-height: 1.65; }

.ctv-manifesto { display: grid; grid-template-columns: .25fr 1.15fr .6fr; align-items: end; gap: 40px; padding: clamp(86px, 12vw, 190px) clamp(22px, 6vw, 96px); background: var(--ctv-blue); color: white; }
.ctv-manifesto em { color: #050508; }
.ctv-manifesto__number { align-self: start; font: 900 clamp(70px, 10vw, 160px)/.8 Impact, sans-serif; color: rgba(255,255,255,.16); }
.ctv-manifesto > p { margin: 0; padding-bottom: 8px; font-size: clamp(16px, 1.5vw, 22px); line-height: 1.6; }
.ctv-manifesto .ctv-kicker { color: rgba(255,255,255,.78); }
.ctv-manifesto .ctv-kicker > span { background: white; }

.ctv-how { background: #080910; }
.ctv-steps { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1500px; margin: 0 auto; border: 1px solid var(--ctv-line); }
.ctv-steps article { min-height: 310px; padding: clamp(26px, 4vw, 52px); border-right: 1px solid var(--ctv-line); }
.ctv-steps article:last-child { border-right: 0; }
.ctv-steps b { display: block; margin-bottom: 70px; color: var(--ctv-blue-bright); font-size: 12px; letter-spacing: .12em; }
.ctv-steps h3 { margin-bottom: 10px; font-size: clamp(38px, 4vw, 62px); }
.ctv-steps p { max-width: 330px; margin-bottom: 0; color: var(--ctv-muted); line-height: 1.65; }

.ctv-final-cta { position: relative; display: grid; grid-template-columns: 220px 1fr auto; align-items: center; gap: 36px; padding: clamp(48px, 7vw, 100px) clamp(22px, 6vw, 96px); background: #060608; }
.ctv-final-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 15% 50%, rgba(6,71,255,.25), transparent 32%); pointer-events: none; }
.ctv-final-cta img { position: relative; width: 100%; height: auto; }
.ctv-final-cta p { margin-bottom: 4px; color: var(--ctv-blue-bright); font-size: 11px; font-weight: 900; letter-spacing: .16em; }
.ctv-final-cta h2 { margin: 0; font-size: clamp(42px, 5.4vw, 86px); line-height: .9; }
.ctv-final-cta .ctv-button { position: relative; }

.ctv-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.ctv-reveal.ctv-in { opacity: 1; transform: none; }

body.ctv-active { background: var(--ctv-black); color: var(--ctv-ice); }
body.ctv-active .site-content { background: var(--ctv-black); }
body.ctv-active .ast-primary-header-bar { border-bottom: 1px solid rgba(255,255,255,.13) !important; background: rgba(5,5,8,.94) !important; }
body.ctv-active .main-header-menu > .menu-item > .menu-link,
body.ctv-active .site-title a { color: white !important; }
body.ctv-active .ast-site-header-cart .ast-woo-header-cart-info-wrap,
body.ctv-active .ast-icon-shopping-cart { color: var(--ctv-blue-bright) !important; }
body.ctv-active .site-footer { border-top: 1px solid var(--ctv-line); background: #040406; color: var(--ctv-muted); }
body.ctv-active .entry-title,
body.ctv-active .woocommerce h1,
body.ctv-active .woocommerce h2,
body.ctv-active .woocommerce h3 { color: var(--ctv-ice); }
body.ctv-active .woocommerce a { color: var(--ctv-blue-bright); }
body.ctv-active .woocommerce button.button,
body.ctv-active .woocommerce a.button,
body.ctv-active .wc-block-components-button,
body.ctv-active #place_order { min-height: 52px; border-radius: 999px !important; background: var(--ctv-blue) !important; color: white !important; font-weight: 900 !important; text-transform: uppercase; letter-spacing: .04em; }
body.ctv-active .woocommerce table.shop_table,
body.ctv-active .woocommerce form.checkout,
body.ctv-active .wc-block-components-sidebar-layout { color: var(--ctv-ice); }
body.ctv-active .woocommerce table.shop_table,
body.ctv-active .wc-block-components-order-summary,
body.ctv-active .wc-block-cart-items { border-color: var(--ctv-line) !important; background: #0d0e14; }
body.ctv-active .woocommerce input.input-text,
body.ctv-active .woocommerce textarea,
body.ctv-active .wc-block-components-text-input input,
body.ctv-active .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input { border: 1px solid #313545 !important; border-radius: 10px !important; background: #f7f8fc !important; color: #111 !important; }
body.ctv-active .woocommerce div.product p.price,
body.ctv-active .woocommerce div.product span.price { color: var(--ctv-blue-bright); }

@keyframes ctv-float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }
@keyframes ctv-spin { to { transform: rotate(342deg); } }
@keyframes ctv-marquee { to { transform: translateX(-50%); } }

@media (max-width: 1024px) {
  .ctv-hero { grid-template-columns: 1fr; padding-top: 90px; }
  .ctv-hero__copy { max-width: 900px; }
  .ctv-hero__art { min-height: 440px; }
  .ctv-hero__art img { max-width: 520px; }
  .ctv-event-grid { grid-template-columns: repeat(2, 1fr); }
  .ctv-manifesto { grid-template-columns: .2fr 1fr; }
  .ctv-manifesto > p { grid-column: 2; }
  .ctv-final-cta { grid-template-columns: 160px 1fr; }
  .ctv-final-cta .ctv-button { grid-column: 2; justify-self: start; }
}

@media (max-width: 700px) {
  .ctv-hero { min-height: auto; grid-template-columns: 1fr; padding: 68px 20px 48px; }
  .ctv-hero h1 { font-size: clamp(64px, 23vw, 100px); }
  .ctv-hero__art { min-height: 330px; margin-top: 20px; }
  .ctv-hero__stamp { right: 5%; bottom: 2%; }
  .ctv-actions { flex-direction: column; }
  .ctv-button { width: 100%; }
  .ctv-proof { display: grid; gap: 8px; }
  .ctv-section { padding-inline: 20px; }
  .ctv-section__heading { align-items: flex-start; flex-direction: column; }
  .ctv-event-grid { grid-template-columns: 1fr; }
  .ctv-empty-event { grid-template-columns: 1fr; padding: 30px 22px; }
  .ctv-manifesto { grid-template-columns: 1fr; gap: 26px; padding-inline: 20px; }
  .ctv-manifesto__number { display: none; }
  .ctv-manifesto > p { grid-column: auto; }
  .ctv-steps { grid-template-columns: 1fr; }
  .ctv-steps article { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--ctv-line); }
  .ctv-steps article:last-child { border-bottom: 0; }
  .ctv-steps b { margin-bottom: 40px; }
  .ctv-final-cta { grid-template-columns: 90px 1fr; gap: 20px; padding-inline: 20px; }
  .ctv-final-cta .ctv-button { grid-column: 1 / -1; }
}

@media (prefers-reduced-motion: reduce) {
  .ctv-hero__art img,
  .ctv-orbit,
  .ctv-marquee > div { animation: none !important; }
  .ctv-reveal { opacity: 1; transform: none; transition: none; }
}
