:root {
  --ink: #07142f;
  --navy: #02021c;
  --muted: #5f6a84;
  --pink: #f70f72;
  --purple: #8f2bff;
  --blue: #03a3ff;
  --mint: #e8fafe;
  --line: rgba(207, 214, 233, 0.78);
  --shadow: 0 24px 70px rgba(28, 34, 70, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--mint);
}

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

img {
  max-width: 100%;
}

.coming-header {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 220px 1fr auto;
  left: 0;
  padding: 32px 7vw 18px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.logo {
  display: inline-flex;
  width: 220px;
}

.logo img {
  display: block;
}

.header-nav {
  display: flex;
  gap: clamp(24px, 4vw, 58px);
  justify-content: center;
}

.header-nav a,
.phone-link {
  font-size: 14px;
  font-weight: 800;
}

.hero {
  background:
    radial-gradient(circle at 76% 24%, rgba(247, 15, 114, 0.16), transparent 26%),
    radial-gradient(circle at 54% 8%, rgba(143, 43, 255, 0.16), transparent 30%),
    url("../assets/tmo-hero-bg-image.png") center / cover no-repeat,
    var(--mint);
  display: grid;
  gap: clamp(36px, 5vw, 82px);
  grid-template-columns: minmax(380px, 0.92fr) minmax(480px, 1.08fr);
  min-height: 820px;
  overflow: hidden;
  padding: 170px 7vw 82px;
  position: relative;
}

.hero::before {
  animation: glow-drift 9s ease-in-out infinite alternate;
  background:
    radial-gradient(circle at 82% 36%, rgba(3, 163, 255, 0.16), transparent 24%),
    radial-gradient(circle at 70% 60%, rgba(247, 15, 114, 0.12), transparent 28%),
    radial-gradient(circle at 52% 18%, rgba(143, 43, 255, 0.12), transparent 28%);
  content: "";
  filter: blur(8px);
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 1;
}

.eyebrow {
  align-items: center;
  color: var(--pink);
  display: flex;
  font-size: 12px;
  font-weight: 900;
  gap: 14px;
  letter-spacing: 0.08em;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--purple);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: Poppins, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1 {
  font-size: clamp(54px, 6.4vw, 106px);
  line-height: 0.94;
  margin-bottom: 28px;
  max-width: 820px;
}

h2 {
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 1;
  margin-bottom: 22px;
}

h3 {
  font-size: 21px;
  line-height: 1.2;
}

.lede,
.section-heading p,
.updates-copy p,
.step p,
.product-card p {
  color: var(--muted);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.58;
}

.button-row,
.status-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button-row {
  margin: 34px 0 46px;
}

.btn {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 900;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), #fa1550);
  box-shadow: 0 16px 34px rgba(247, 15, 114, 0.28);
  color: #fff;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(7, 20, 47, 0.2);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.btn-dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.status-row {
  list-style: none;
  margin: 0;
  padding: 0;
}

.status-row li {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-width: 150px;
  padding: 14px 16px;
}

.status-row strong,
.status-row span {
  display: block;
}

.status-row strong {
  font-size: 13px;
  font-weight: 900;
}

.status-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  margin-top: 5px;
}

.hero-stage {
  align-self: center;
  min-height: 530px;
}

.hero-stage > img {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: block;
  margin-left: auto;
  padding: 30px;
  width: min(690px, 58vw);
}

.launch-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(2, 2, 28, 0.28);
  color: #fff;
  margin-top: -88px;
  padding: 24px;
  position: relative;
  width: min(340px, 90%);
}

.launch-card span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-card strong {
  display: block;
  font-family: Poppins, Inter, sans-serif;
  font-size: 24px;
  line-height: 1.12;
  margin: 12px 0;
}

.launch-card p {
  color: #d6def0;
  font-weight: 700;
  line-height: 1.45;
  margin-bottom: 0;
}

.product-section,
.how {
  padding: 110px 7vw;
}

.section-heading {
  max-width: 860px;
}

.product-section {
  background: var(--navy);
  color: #fff;
}

.product-section .section-heading p {
  color: #d6def0;
}

.product-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 46px;
}

.product-card,
.step {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(45, 43, 86, 0.08);
  color: var(--ink);
  padding: 26px;
  position: relative;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover,
.step:hover {
  box-shadow:
    0 24px 58px rgba(45, 43, 86, 0.14),
    0 0 34px rgba(143, 43, 255, 0.16);
  transform: translateY(-5px);
}

.product-badge {
  background: var(--pink);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  padding: 8px 12px;
  text-transform: uppercase;
}

.product-badge.muted {
  background: #edf2fb;
  color: var(--ink);
}

.product-art {
  background-color: #f8f9ff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 8px;
  height: 190px;
  margin: 22px 0;
}

.business-cards {
  background-image: url("../assets/business-card-2.png");
}

.postcards {
  background-image: url("../assets/products/postcards.png");
}

.yard-signs {
  background-image: url("../assets/products/yard-signs.png");
}

.flyers {
  background-image: url("../assets/products/flyers.png");
}

.product-card strong {
  color: var(--pink);
  display: block;
  font-size: 17px;
  margin: 18px 0;
}

.product-cta {
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.product-cta:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.product-cta.disabled {
  border-color: rgba(7, 20, 47, 0.18);
  color: var(--muted);
  pointer-events: none;
}

.how {
  background: #fff;
}

.steps {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.step span {
  color: var(--pink);
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

.updates {
  background:
    linear-gradient(rgba(2, 8, 25, 0.68), rgba(2, 8, 25, 0.78)),
    url("../assets/sect_02_bg.png") center / cover no-repeat,
    var(--navy);
  color: #fff;
  padding: 105px 7vw;
}

.updates-copy {
  max-width: 850px;
}

.updates-copy p {
  color: #d6def0;
}

.coming-footer {
  align-items: center;
  background: #020819;
  color: #d6def0;
  display: grid;
  gap: 28px;
  grid-template-columns: 240px 1fr auto;
  padding: 42px 7vw;
}

.coming-footer img {
  width: 220px;
}

.coming-footer p {
  font-weight: 800;
  margin: 0;
}

.coming-footer a {
  color: #fff;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes glow-drift {
  from {
    opacity: 0.72;
    transform: translate3d(-0.5%, -0.4%, 0) scale(1.01);
  }

  to {
    opacity: 1;
    transform: translate3d(0.8%, 0.8%, 0) scale(1.04);
  }
}

@media (max-width: 1120px) {
  .coming-header,
  .hero,
  .coming-footer {
    grid-template-columns: 1fr;
  }

  .coming-header {
    background: rgba(232, 250, 254, 0.94);
    position: relative;
  }

  .header-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-stage > img {
    margin-left: 0;
    width: min(690px, 100%);
  }

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

@media (max-width: 720px) {
  .header-nav,
  .button-row,
  .status-row {
    align-items: stretch;
    flex-direction: column;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero,
  .product-section,
  .how,
  .updates {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero-stage {
    min-height: 0;
  }

  .hero-stage > img {
    padding: 18px;
  }

  .launch-card {
    margin-top: 18px;
    width: 100%;
  }

  .product-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
