*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0c0c0e;
  --ink: #f4f1ec;
  --mute: #a8a29a;
  --orange: #ff5a2a;
  --orange-deep: #e8431a;
  --panel: rgba(18, 18, 20, 0.72);
  --line: rgba(244, 241, 236, 0.14);
  --max: 1180px;
}

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(55% 45% at 78% 42%, rgba(255, 90, 42, 0.28), transparent 58%),
    radial-gradient(40% 35% at 12% 18%, rgba(255, 90, 42, 0.08), transparent 55%),
    linear-gradient(180deg, #101014 0%, #0c0c0e 55%, #09090b 100%);
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

.ticker {
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.55);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 11px 0;
}

.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.stage {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 42px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
  padding: 28px 28px 36px;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
  animation: rise 0.8s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.toprow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  justify-content: space-between;
}

.stamp {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  border: 1.5px dashed rgba(244, 241, 236, 0.75);
  padding: 7px 10px;
  transform: rotate(-1.5deg);
}

.timer {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 10px;
  backdrop-filter: blur(8px);
}

.timer-label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}

.timer-digits {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 6px;
}

.timer-digits div {
  min-width: 42px;
  text-align: center;
  background: #151518;
  border-radius: 10px;
  padding: 5px 6px 4px;
}

.timer-digits b {
  display: block;
  font-family: Syne, sans-serif;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.timer-digits small {
  display: block;
  margin-top: 2px;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
}

.brand {
  font-family: Syne, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-top: 4px;
}

h1 {
  font-family: Syne, sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.4rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 em {
  font-style: normal;
  color: var(--orange);
}

.lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  line-height: 1.55;
  color: #ddd7ce;
  max-width: 34ch;
}

.lead strong {
  color: var(--orange);
  font-weight: 700;
}

.features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 4px 0;
}

.features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 500;
}

.ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: var(--orange);
  color: #111;
  box-shadow: 0 0 0 4px rgba(255, 90, 42, 0.15);
}

.ico svg {
  width: 16px;
  height: 16px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, 420px);
  margin-top: 6px;
  padding: 16px 16px 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  background: linear-gradient(180deg, #ff6a3d, var(--orange-deep));
  font-family: Syne, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  box-shadow:
    0 14px 34px rgba(255, 90, 42, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse-cta 2.4s ease-in-out infinite;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(255, 90, 42, 0.45);
}

.cta i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #111 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2.4'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / 16px no-repeat;
  flex-shrink: 0;
}

@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 14px 34px rgba(255, 90, 42, 0.35); }
  50% { box-shadow: 0 14px 40px rgba(255, 90, 42, 0.55); }
}

.note {
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--mute);
  max-width: 42ch;
}

.pager {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  color: var(--mute);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.pager i {
  display: block;
  width: 64px;
  height: 1px;
  background: rgba(244, 241, 236, 0.35);
}

.visual {
  position: relative;
  height: min(78vh, 720px);
  border-radius: 28px;
  overflow: hidden;
  animation: fadein 1s ease 0.15s both;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 100%);
}

@keyframes fadein {
  from { opacity: 0; transform: translateX(24px) scale(1.02); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

.visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 12, 14, 0.55), transparent 35%),
    radial-gradient(circle at 60% 45%, transparent 30%, rgba(12, 12, 14, 0.35) 75%);
  pointer-events: none;
}

.visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 82% 42%;
  transform: scale(1.12);
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.5%, 1%, 0); }
}

@media (max-width: 900px) {
  .stage {
    grid-template-columns: 1fr;
    padding: 20px 16px 28px;
    gap: 10px;
  }

  .copy {
    max-width: none;
    order: 2;
  }

  .visual {
    order: 1;
    height: 42vh;
    min-height: 260px;
    border-radius: 22px;
    mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 55%, transparent 100%);
  }

  .visual::after {
    background: linear-gradient(180deg, transparent 40%, rgba(12, 12, 14, 0.85));
  }

  .visual img {
    object-position: center 35%;
  }

  h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .cta {
    width: 100%;
  }

  .pager { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track,
  .cta,
  .visual img { animation: none; }
}
