:root {
  --ink: #03070d;
  --navy: #061321;
  --navy-soft: #0b1c30;
  --panel: rgba(3, 9, 16, 0.82);
  --line: rgba(218, 156, 45, 0.48);
  --gold: #d99c2d;
  --gold-light: #ffe189;
  --gold-deep: #8d5715;
  --text: #f6f1e8;
  --muted: #beb9af;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 72% 10%, rgba(23, 61, 94, 0.5), transparent 32rem),
    linear-gradient(180deg, #02060c 0%, #081727 58%, #02060c 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.page-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 78%, transparent);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 48px));
  margin: 22px auto 0;
  padding: 12px 16px;
  border: 1px solid rgba(217, 156, 45, 0.22);
  border-radius: 8px;
  background: rgba(2, 7, 13, 0.72);
  box-shadow: 0 16px 54px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: clamp(112px, 13vw, 168px);
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(217, 156, 45, 0.18));
}

.brand-title {
  color: transparent;
  background: linear-gradient(92deg, #fff0b7, #d99c2d 46%, #a86818 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 2.05rem);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.58));
}

.social-nav,
.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-nav a,
.footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(217, 156, 45, 0.32);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.social-nav a:hover,
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-deep));
  color: #120b03;
}

.social-nav svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-nav a:nth-child(2) svg,
.social-nav a:nth-child(4) svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.hero {
  position: relative;
  min-height: clamp(620px, 56vw, 760px);
  isolation: isolate;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(1, 5, 10, 0.76) 0%, rgba(1, 5, 10, 0.48) 31%, rgba(1, 5, 10, 0.08) 65%, rgba(1, 5, 10, 0.12) 100%),
    linear-gradient(180deg, rgba(1, 5, 10, 0.18) 0%, rgba(1, 5, 10, 0.06) 54%, rgba(1, 5, 10, 0.92) 100%),
    url("assets/studio-bg.jpg") center top / cover no-repeat;
}

.hero::after {
  position: absolute;
  left: 4vw;
  right: 4vw;
  bottom: 48px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 216, 129, 0.75), transparent);
  box-shadow: 0 0 34px rgba(217, 156, 45, 0.65);
}

.hero-content {
  width: min(700px, calc(100% - 48px));
  padding-top: clamp(150px, 17vw, 210px);
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
}

.eyebrow,
.section-title h2,
.notify-form h2,
.about-copy h2,
.cta-inner h2 {
  margin: 0;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  color: #f5f3ee;
  font-size: clamp(1.45rem, 3.4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.18em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.78);
}

.hero h1 {
  max-width: 650px;
  margin: 8px 0 18px;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(5.2rem, 12.4vw, 10.4rem);
  font-weight: 700;
  line-height: 0.9;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong,
.gold-text {
  display: block;
  color: transparent;
  background: linear-gradient(94deg, #fff4bc 0%, #dda138 28%, #b36b18 52%, #ffe9a3 72%, #b9741d 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.42));
}

.hero h1 strong {
  font-size: 1.34em;
  line-height: 0.82;
}

.tagline {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
}

.tagline::first-letter {
  color: var(--gold);
}

.section-pad {
  padding: 64px 0;
}

.launch-panel {
  margin-top: -78px;
  position: relative;
  z-index: 2;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) auto minmax(40px, 1fr);
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
  text-align: center;
}

.section-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 156, 45, 0.85));
}

.section-title span:last-child {
  background: linear-gradient(90deg, rgba(217, 156, 45, 0.85), transparent);
}

.section-title h2,
.notify-form h2,
.about-copy h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.75rem);
  letter-spacing: 0.06em;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(132px, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto 42px;
}

.time-card {
  min-height: 118px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(11, 28, 48, 0.82), rgba(0, 0, 0, 0.66));
  box-shadow: var(--shadow);
  text-align: center;
}

.time-card strong {
  display: block;
  color: #f4f4f4;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 8px 24px #000;
}

.time-card span {
  display: block;
  margin-top: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
}

.notify-form {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.58);
  box-shadow: var(--shadow);
}

.input-row input {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  padding: 16px 20px;
  color: #fff;
  background: transparent;
}

.input-row input::placeholder {
  color: #bdb8ad;
}

.input-row button,
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border: 0;
  background: linear-gradient(135deg, #ffe38f, #d99c2d 46%, #9d6117);
  color: #120b03;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.input-row button {
  min-width: 170px;
  padding: 0 26px;
}

.input-row button:hover,
.cta-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 16px 36px rgba(217, 156, 45, 0.22);
}

.notify-form p {
  margin: 13px 0 0;
  color: var(--muted);
}

.about-section {
  padding-top: 10px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) 1.45fr;
  gap: 34px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(2, 8, 14, 0.92), rgba(5, 17, 30, 0.8)),
    rgba(2, 8, 14, 0.9);
  box-shadow: var(--shadow);
}

.about-copy {
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.about-copy p {
  margin: 14px 0 0;
  color: #eee8df;
}

.section-title.compact {
  margin-bottom: 18px;
}

.section-title.compact h2 {
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.feature-card {
  min-height: 210px;
  padding: 20px 12px;
  border-left: 1px solid var(--line);
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  background: rgba(255, 255, 255, 0.035);
}

.feature-card svg {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  fill: none;
  stroke: var(--gold);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.feature-card:nth-child(2) svg {
  fill: rgba(217, 156, 45, 0.18);
}

.feature-card h3 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.feature-card p {
  margin: 0;
  color: #d8d3ca;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cta-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(11, 11, 12, 0.86), rgba(7, 20, 33, 0.78));
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 128px;
  padding: 26px 0;
}

.cta-inner h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.8rem);
  letter-spacing: 0.06em;
}

.cta-inner p {
  margin: 4px 0 0;
  color: #eee7dd;
}

.cta-button {
  min-width: 220px;
  gap: 12px;
  padding: 0 28px;
  border: 1px solid rgba(255, 225, 137, 0.55);
  border-radius: 8px;
  background: transparent;
  color: var(--gold-light);
}

.cta-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
}

.footer-brand img {
  width: 178px;
  max-width: 100%;
}

.footer-social {
  justify-content: center;
}

.footer-social a {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: var(--gold-light);
  font-size: 0.74rem;
  font-weight: 900;
}

.site-footer p {
  justify-self: end;
  max-width: 340px;
  margin: 0;
  color: #d9d4ca;
  font-size: 0.9rem;
  text-align: right;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 720ms ease, transform 720ms ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: 700px;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(1, 5, 10, 0.78) 0%, rgba(1, 5, 10, 0.42) 48%, rgba(1, 5, 10, 0.12) 100%),
      linear-gradient(180deg, rgba(1, 5, 10, 0.12) 0%, rgba(1, 5, 10, 0.08) 42%, rgba(1, 5, 10, 0.96) 100%),
      url("assets/studio-bg.jpg") 62% top / cover no-repeat;
  }

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

  .about-card {
    grid-template-columns: 1fr;
  }

  .about-copy {
    padding-right: 0;
    padding-bottom: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .container,
  .site-header,
  .site-footer,
  .hero-content {
    width: min(100% - 32px, var(--max));
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
    margin-top: 14px;
  }

  .brand img {
    width: 88px;
    max-height: 58px;
  }

  .brand-title {
    font-size: 1.08rem;
    white-space: normal;
  }

  .social-nav {
    gap: 7px;
  }

  .social-nav a {
    width: 32px;
    height: 32px;
  }

  .social-nav svg {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-backdrop {
    background:
      linear-gradient(180deg, rgba(1, 5, 10, 0.08) 0%, rgba(1, 5, 10, 0.5) 46%, rgba(1, 5, 10, 0.98) 100%),
      linear-gradient(90deg, rgba(1, 5, 10, 0.72) 0%, rgba(1, 5, 10, 0.22) 100%),
      url("assets/studio-bg.jpg") 68% top / auto 62% no-repeat;
    background-color: #03070d;
  }

  .hero-content {
    padding-top: 365px;
    margin-inline: auto;
  }

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

  .eyebrow {
    font-size: 1.1rem;
    letter-spacing: 0.15em;
  }

  .tagline {
    font-size: 0.96rem;
  }

  .launch-panel {
    margin-top: -38px;
  }

  .section-pad {
    padding: 44px 0;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .input-row button {
    width: 100%;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-button {
    width: 100%;
  }
}

@media (max-width: 500px) {
  .site-header {
    flex-direction: column;
    gap: 12px;
  }

  .social-nav {
    width: 100%;
    justify-content: space-between;
  }

  .countdown,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .time-card {
    min-height: 104px;
  }

  .feature-card {
    min-height: 190px;
    padding: 16px 8px;
  }

  .feature-card svg {
    width: 58px;
    height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
