:root {
  --navy: #07111f;
  --navy-deep: #040a14;
  --ice: #8ec8ff;
  --frost: #c8e4ff;
  --ember: #ff6b2c;
  --ember-deep: #c43a12;
  --gold: #f4c95d;
  --mercury: #ff4d2a;
  --ink: #e8eef6;
  --ink-soft: #b7c4d6;
  --muted: #8b9bb0;
  --line: rgba(142, 200, 255, 0.18);
  --surface: rgba(12, 24, 42, 0.72);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(255, 107, 44, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 45% at 0% 10%, rgba(142, 200, 255, 0.18) 0%, transparent 50%),
    linear-gradient(180deg, var(--navy-deep) 0%, var(--navy) 45%, #0b1628 100%);
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 0.5rem 1rem;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  color: #fff;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand .temp {
  color: var(--ice);
}

.brand .text {
  color: var(--ember);
}

.header-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
}

.header-links a {
  text-decoration: none;
  opacity: 0.9;
}

.header-links a:hover {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 10, 20, 0.25) 0%, rgba(4, 10, 20, 0.72) 58%, rgba(4, 10, 20, 0.94) 100%),
    url("../images/TempText_Image.webp") center 40% / cover no-repeat;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(68rem, 100%);
  margin: 0 auto;
  padding: 0 1.5rem 4.5rem;
}

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.85;
  color: var(--ice);
}

.hero h1 {
  margin: 0.85rem 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.75rem, 8vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
}

.hero-slogan {
  margin: 1rem 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--gold);
  max-width: 28rem;
}

.hero-lede {
  margin: 1rem 0 0;
  max-width: 32rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.4rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--ember), var(--ember-deep));
  color: #fff;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff7d45, var(--ember));
}

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

.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.section {
  width: min(68rem, 100%);
  margin: 0 auto;
  padding: 4.5rem 1.5rem;
}

.section h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.section p.lead {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.55;
}

.platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.platform-chip {
  display: inline-flex;
  padding: 0.4rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ice);
  background: rgba(142, 200, 255, 0.1);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.platform-chip.hot {
  color: var(--gold);
  background: rgba(255, 107, 44, 0.12);
  border-color: rgba(255, 107, 44, 0.35);
}

.feature-grid {
  display: grid;
  gap: 2rem 2.5rem;
  margin-top: 2.5rem;
  grid-template-columns: 1fr;
  width: 100%;
}

@media (min-width: 640px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.feature .step-num {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: 0.5rem;
}

.feature h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

.feature p {
  margin: 0.55rem 0 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.legal-page {
  padding-top: 1.25rem;
}

.legal-page h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
}

.legal-page h2 {
  margin: 2rem 0 0.6rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 42rem;
}

.legal-page a {
  color: var(--ice);
}

.site-footer {
  padding: 2rem 1.5rem 3rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
}

.site-footer a {
  color: var(--ice);
}

.mls-case-shot-tall img {
  object-fit: cover;
  object-position: top;
  max-height: 22rem;
}

.mls-case--on-dark .mls-case-shots img {
  background: #0a1524;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-rise {
  animation: rise 0.85s ease both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

@media (max-width: 720px) {
  .hero h1 {
    max-width: 10ch;
  }
}
