:root {
  --bg: #090909;
  --bg-soft: #111111;
  --surface: rgba(19, 19, 19, 0.84);
  --surface-strong: rgba(13, 13, 13, 0.95);
  --line: rgba(255, 255, 255, 0.15);
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f7f7f5;
  --muted: #b9b9b5;
  --orange: #f16009;
  --orange-soft: #ff7a1a;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --content-width: 1460px;
  --header-height: 106px;
  --radius: 18px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "Arial Black", Impact, Haettenschweiler, "Franklin Gothic Heavy", sans-serif;
  --font-script: "Segoe Script", "Brush Script MT", "Lucida Handwriting", cursive;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 67% 32%, rgba(255, 255, 255, 0.06), transparent 25%),
    radial-gradient(circle at 48% 63%, rgba(241, 96, 9, 0.055), transparent 24%),
    linear-gradient(135deg, #060606 0%, #0a0a0a 48%, #111111 100%);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
}

svg {
  display: block;
}

::selection {
  color: #fff;
  background: rgba(241, 96, 9, 0.8);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #111;
  background: #fff;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.site-shell::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 90%);
}

.ambient {
  position: absolute;
  z-index: -4;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(90px);
}

.ambient-one {
  top: 20%;
  right: 17%;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.05);
}

.ambient-two {
  bottom: 8%;
  left: 37%;
  width: 300px;
  height: 300px;
  background: rgba(241, 96, 9, 0.04);
}

.topbar,
.main-content,
.site-footer {
  width: min(calc(100% - 64px), var(--content-width));
  margin-inline: auto;
}

.topbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 32px;
  padding: 22px 0 16px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
  text-decoration: none;
}

.brand-signature {
  display: block;
  width: clamp(185px, 17vw, 280px);
  height: auto;
  transform: rotate(-4deg);
  transform-origin: left center;
  filter: drop-shadow(0 10px 22px rgba(241, 96, 9, 0.12));
}

.brand-domain {
  margin-top: 9px;
  margin-left: 18px;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.social-cluster {
  display: flex;
  align-items: center;
  gap: 22px;
}

.social-label {
  color: #f0f0ee;
  font-size: 0.94rem;
  font-weight: 650;
}

.social-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.social-button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  padding: 0;
  color: #f8f8f8;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.social-button svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-button:hover {
  color: var(--orange);
  border-color: rgba(241, 96, 9, 0.5);
  background: rgba(241, 96, 9, 0.08);
  transform: translateY(-2px);
}

.social-button:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(241, 96, 9, 0.9);
  outline-offset: 4px;
}

.main-content {
  display: grid;
  align-content: center;
  gap: 0;
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 1.06fr) minmax(430px, 0.94fr) minmax(240px, 0.48fr);
  align-items: center;
  min-height: clamp(500px, calc(100svh - 420px), 660px);
  column-gap: clamp(20px, 2.5vw, 46px);
  padding: 20px 4px 0;
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 8% 5% 0 32%;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(to top, rgba(0,0,0,.18), transparent 38%);
  filter: blur(3px);
}

.hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 650px;
  padding: 18px 0 28px;
  animation: reveal-copy 760ms cubic-bezier(.2,.65,.25,1) both;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 14px;
  color: var(--orange-soft);
  font-size: clamp(0.8rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--orange);
  box-shadow: 0 0 18px rgba(241, 96, 9, 0.45);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5.4vw, 6.6rem);
  line-height: 0.86;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 span {
  color: #f8f8f6;
}

.hero h1 strong {
  margin-top: 0.14em;
  color: var(--orange);
  font-size: .83em;
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 12px 36px rgba(241, 96, 9, 0.08);
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #e3e3df;
  font-size: clamp(1rem, 1.28vw, 1.22rem);
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  max-width: 650px;
  gap: 15px;
  margin-top: 28px;
}

.countdown-item {
  position: relative;
  display: grid;
  min-height: 118px;
  place-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 11px;
  background: linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.008));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035), 0 16px 28px rgba(0,0,0,.16);
  text-align: center;
  backdrop-filter: blur(10px);
}

.countdown-item::after {
  position: absolute;
  inset: auto 15% 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(241, 96, 9, .8), transparent);
  opacity: 0;
  transform: translateY(2px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.countdown-item:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.countdown-value {
  display: block;
  color: var(--orange);
  font-size: clamp(2.5rem, 3.5vw, 4.1rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}

.countdown-label {
  display: block;
  margin-top: 10px;
  color: #f5f5f3;
  font-size: 0.81rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.opening-note {
  display: flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
  margin-top: 26px;
  color: #efefec;
}

.opening-note::after {
  position: absolute;
  width: 220px;
  height: 8px;
  margin-top: 38px;
  margin-left: 220px;
  content: "";
  border-top: 2px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-2deg);
  opacity: 0.95;
}

.opening-note svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.opening-note p {
  margin: 0;
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  height: 100%;
  min-height: 510px;
  place-items: end center;
  pointer-events: none;
  animation: reveal-visual 940ms cubic-bezier(.2,.65,.25,1) 80ms both;
}

.hero-visual::before {
  position: absolute;
  z-index: -2;
  bottom: 8%;
  left: 50%;
  width: 120%;
  height: 70%;
  content: "";
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,255,255,.09), rgba(255,255,255,.018) 40%, transparent 70%);
  filter: blur(28px);
  transform: translateX(-50%);
}

.hero-visual::after {
  position: absolute;
  z-index: 3;
  right: -7%;
  bottom: 10%;
  width: 54%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(241,96,9,.78));
  transform: rotate(-47deg);
  transform-origin: right center;
}

.hero-visual picture {
  position: absolute;
  inset: auto -2% 0 -8%;
  display: grid;
  height: min(66vh, 714px);
  min-height: 510px;
  place-items: end center;
}

.hero-visual img {
  display: block;
  width: auto;
  max-width: none;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 22px 50px rgba(0,0,0,.48));
}

.visual-number {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 5%;
  color: transparent;
  font-family: var(--font-display);
  font-size: clamp(8rem, 13vw, 13rem);
  line-height: 1;
  -webkit-text-stroke: 1px rgba(255,255,255,.055);
  opacity: .8;
}

.hero-quote {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 285px;
  margin: 0;
  padding: 42px 0 24px;
  text-align: center;
  animation: reveal-quote 760ms cubic-bezier(.2,.65,.25,1) 220ms both;
}

.quote-mark {
  position: absolute;
  top: -6px;
  left: 50%;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: 5.5rem;
  font-weight: 900;
  line-height: 1;
  transform: translateX(-50%);
}

.hero-quote p {
  margin: 0;
  color: #f1f1ef;
  font-size: clamp(1.24rem, 1.85vw, 1.75rem);
  font-weight: 520;
  line-height: 1.34;
  text-transform: uppercase;
}

.hero-quote footer {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.quote-signature {
  display: block;
  width: min(210px, 88%);
  height: auto;
  transform: rotate(-3deg);
}

.feature-strip {
  position: relative;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(26,26,26,.92), rgba(17,17,17,.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: reveal-strip 820ms cubic-bezier(.2,.65,.25,1) 320ms both;
}

.feature-card {
  position: relative;
  min-height: 202px;
  padding: 26px clamp(20px, 2.4vw, 40px) 24px;
  text-align: center;
  transition: background-color 180ms ease, transform 180ms ease;
}

.feature-card + .feature-card::before {
  position: absolute;
  top: 17%;
  bottom: 17%;
  left: 0;
  width: 1px;
  content: "";
  background: var(--line);
}

.feature-card:hover {
  background: rgba(255,255,255,.018);
  transform: translateY(-3px);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin: 0 auto 13px;
  place-items: center;
  color: var(--orange);
}

.feature-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h2 {
  margin: 0;
  color: #f5f5f3;
  font-size: clamp(1.02rem, 1.4vw, 1.35rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-card p {
  max-width: 300px;
  margin: 14px auto 0;
  color: #d0d0cc;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.52;
}

.site-footer {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  padding: 17px 0 max(17px, env(safe-area-inset-bottom));
  color: #9f9f9b;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}

.toast {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: max(24px, env(safe-area-inset-bottom));
  max-width: min(360px, calc(100vw - 48px));
  padding: 14px 18px;
  border: 1px solid rgba(241, 96, 9, 0.45);
  border-radius: 12px;
  color: #f8f8f6;
  background: rgba(16, 16, 16, 0.96);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.noscript {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(241,96,9,.5);
  border-radius: 10px;
  color: #fff;
  background: #161616;
  text-align: center;
}

@keyframes reveal-copy {
  from { opacity: 0; transform: translate3d(-20px, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes reveal-visual {
  from { opacity: 0; transform: translate3d(0, 24px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes reveal-quote {
  from { opacity: 0; transform: translate3d(18px, 14px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@keyframes reveal-strip {
  from { opacity: 0; transform: translate3d(0, 18px, 0); }
  to { opacity: 1; transform: translate3d(0, 0, 0); }
}

@media (max-width: 1240px) {
  :root {
    --header-height: 96px;
  }

  .hero {
    grid-template-columns: minmax(390px, 1fr) minmax(390px, .92fr);
    min-height: 590px;
  }

  .hero-quote {
    position: absolute;
    top: 18%;
    right: 0;
    width: 230px;
    padding-right: 12px;
  }

  .hero-visual picture {
    right: 3%;
    left: -8%;
  }

  .hero-copy {
    max-width: 600px;
  }

  .feature-card {
    padding-inline: 24px;
  }
}

@media (min-width: 721px) and (max-width: 1240px) {
  .hero-quote {
    display: none;
  }
}

@media (max-width: 980px) {
  .topbar,
  .main-content,
  .site-footer {
    width: min(calc(100% - 40px), var(--content-width));
  }

  .social-label {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(360px, 1.05fr) minmax(330px, .95fr);
    min-height: 620px;
    column-gap: 10px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 7.2vw, 5.2rem);
  }

  .countdown {
    gap: 10px;
  }

  .countdown-item {
    min-height: 102px;
  }

  .hero-visual picture {
    right: -25%;
    left: -22%;
    height: min(61vh, 650px);
  }

  .hero-quote {
    top: 14%;
    right: -4px;
    width: 190px;
  }

  .hero-quote p {
    font-size: 1.18rem;
  }

  .feature-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:nth-child(3)::before {
    display: none;
  }

  .feature-card:nth-child(n+3) {
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 84px;
  }

  .site-shell {
    overflow: clip;
  }

  .topbar,
  .main-content,
  .site-footer {
    width: min(calc(100% - 28px), var(--content-width));
  }

  .topbar {
    min-height: var(--header-height);
    padding-top: max(16px, env(safe-area-inset-top));
  }

  .brand-signature {
    width: 175px;
  }

  .brand-domain {
    margin-top: 6px;
    margin-left: 10px;
    font-size: .94rem;
  }

  .social-actions {
    gap: 3px;
  }

  .social-button {
    width: 34px;
    height: 34px;
  }

  .social-button svg {
    width: 18px;
    height: 18px;
  }

  .social-button:nth-child(1),
  .social-button:nth-child(2) {
    display: none;
  }

  .main-content {
    display: block;
  }

  .hero {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-top: 32px;
  }

  .hero-copy {
    max-width: none;
    padding: 0;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: .76rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
    line-height: .88;
  }

  .hero-lead {
    margin-top: 23px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .countdown {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    max-width: none;
    gap: 7px;
    margin-top: 24px;
  }

  .countdown-item {
    min-height: 90px;
    border-radius: 9px;
  }

  .countdown-value {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .countdown-label {
    margin-top: 7px;
    font-size: .62rem;
    letter-spacing: .04em;
  }

  .opening-note {
    margin-top: 22px;
  }

  .opening-note::after {
    display: none;
  }

  .opening-note p {
    font-size: .9rem;
  }

  .hero-visual {
    order: 2;
    align-self: stretch;
    width: 100%;
    min-height: 430px;
    margin-top: 10px;
  }

  .hero-visual picture {
    inset: 0 -14% 0 -18%;
    height: 100%;
    min-height: 430px;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-visual::after {
    right: -8%;
    bottom: 15%;
  }

  .visual-number {
    top: 8%;
    left: 3%;
    font-size: 8rem;
  }

  .hero-quote {
    position: relative;
    top: auto;
    right: auto;
    order: 3;
    width: auto;
    max-width: 330px;
    align-self: center;
    margin: -10px auto 30px;
    padding: 45px 0 10px;
  }

  .hero-quote p {
    font-size: 1.16rem;
  }

  .quote-signature {
    width: 190px;
  }

  .feature-strip {
    grid-template-columns: 1fr;
    border-radius: 15px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    grid-template-rows: auto auto;
    min-height: 0;
    gap: 3px 16px;
    padding: 22px 21px;
    text-align: left;
  }

  .feature-card + .feature-card::before,
  .feature-card:nth-child(3)::before {
    display: block;
    top: 0;
    right: 20px;
    bottom: auto;
    left: 20px;
    width: auto;
    height: 1px;
  }

  .feature-card:nth-child(n+3) {
    border-top: 0;
  }

  .feature-icon {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .feature-card h2 {
    align-self: end;
    font-size: 1.05rem;
  }

  .feature-card p {
    max-width: none;
    margin: 4px 0 0;
    font-size: .87rem;
  }

  .site-footer {
    min-height: 74px;
    padding-inline: 8px;
  }
}

@media (max-width: 420px) {
  .topbar,
  .main-content,
  .site-footer {
    width: min(calc(100% - 22px), var(--content-width));
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14.3vw, 4rem);
  }

  .hero-lead {
    font-size: .94rem;
  }

  .countdown-item {
    min-height: 82px;
  }

  .countdown-value {
    font-size: 2rem;
  }

  .hero-visual {
    min-height: 390px;
  }

  .hero-visual picture {
    min-height: 390px;
    right: -23%;
    left: -24%;
  }
}

@media (max-height: 800px) and (min-width: 721px) {
  :root {
    --header-height: 88px;
  }

  .topbar {
    padding-top: 14px;
    padding-bottom: 10px;
  }

  .brand-signature {
    width: 205px;
  }

  .brand-domain {
    margin-top: 4px;
    font-size: 1rem;
  }

  .hero {
    min-height: 430px;
  }

  .hero-copy {
    padding-block: 8px 16px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 5.2vw, 5.7rem);
  }

  .hero-lead {
    margin-top: 20px;
    line-height: 1.55;
  }

  .countdown {
    margin-top: 20px;
  }

  .countdown-item {
    min-height: 94px;
  }

  .opening-note {
    margin-top: 18px;
  }

  .hero-visual,
  .hero-visual picture {
    min-height: 430px;
  }

  .feature-card {
    min-height: 158px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 8px;
  }

  .feature-icon svg {
    width: 39px;
    height: 39px;
  }

  .feature-card p {
    margin-top: 9px;
  }

  .site-footer {
    min-height: 48px;
    padding-block: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #dfdfdf;
    --line: rgba(255,255,255,.42);
  }

  .countdown-item,
  .feature-strip {
    border-color: rgba(255,255,255,.5);
  }
}
