@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./assets/fonts/instrument-sans-400.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/instrument-sans-500.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/instrument-sans-600.ttf") format("truetype");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/instrument-sans-700.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/space-grotesk-500.ttf") format("truetype");
}

@font-face {
  font-family: "Space Grotesk";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/space-grotesk-700.ttf") format("truetype");
}

:root {
  --bg: #191617;
  --bg-soft: #231f20;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --surface-border: rgba(255, 255, 255, 0.14);
  --text: #f5eeea;
  --text-soft: rgba(245, 238, 234, 0.82);
  --accent: #ff565b;
  --accent-strong: #ff6a6f;
  --shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shell: min(1120px, calc(100vw - 40px));
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Instrument Sans", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, rgba(255, 86, 91, 0.18), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #1f1b1c 0%, #151213 100%);
  color: var(--text);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.campaign-bg {
  position: fixed;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  filter: blur(86px);
  opacity: 0.42;
  pointer-events: none;
  z-index: -1;
}

.campaign-bg--top {
  top: -10rem;
  right: -10rem;
  background: rgba(255, 86, 91, 0.28);
}

.campaign-bg--bottom {
  bottom: -14rem;
  left: -10rem;
  background: rgba(255, 255, 255, 0.12);
}

.campaign-header {
  padding: 22px 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.campaign-brand img {
  width: 176px;
}

.campaign-login {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border: 1px solid rgba(255, 86, 91, 0.5);
  background: rgba(255, 86, 91, 0.08);
  font-weight: 600;
}

.campaign-main {
  padding: 24px 0 136px;
}

.hero-card,
.benefit-card,
.proof-strip,
.final-callout {
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--surface-border);
  display: grid;
  gap: 28px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 86, 91, 0.08) 48%, transparent 100%),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 140% 100%, 24px 24px, 24px 24px;
  background-position: -120% 0, 0 0, 0 0;
  opacity: 0.34;
  pointer-events: none;
  animation: techSweep 9s linear infinite;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.video-stage {
  border-radius: 28px;
  overflow: hidden;
  background: #0d0b0c;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 28px 64px rgba(0, 0, 0, 0.3);
}

.video-stage::before,
.video-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}

.video-stage::before {
  inset: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  padding: 12px;
  opacity: 0.75;
}

.video-stage::after {
  left: -10%;
  right: -10%;
  top: 18%;
  height: 96px;
  background: linear-gradient(180deg, transparent, rgba(255, 86, 91, 0.14), transparent);
  filter: blur(18px);
  opacity: 0.8;
  animation: scanDrift 5.2s ease-in-out infinite;
}

.hero-video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #0d0b0c;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(1.7rem, 4.2vw, 3.35rem);
  line-height: 0.95;
  max-width: 14ch;
}

.hero-headline {
  display: grid;
  gap: 0.14em;
  text-wrap: balance;
}

.hero-headline span:first-child {
  color: rgba(245, 238, 234, 0.96);
  text-shadow: 0 8px 26px rgba(0, 0, 0, 0.22);
}

.hero-headline span:last-child {
  background: linear-gradient(135deg, #fff4f1 0%, #ffb4b8 34%, #ff666b 78%, #fff4f1 100%);
  background-size: 180% 180%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 28px rgba(255, 86, 91, 0.14));
  animation: headlineGlow 8s ease-in-out infinite;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.15;
}

p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.lead {
  max-width: 46rem;
  font-size: 1.08rem;
}

.cta-panel {
  margin-top: 6px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.05));
  border: 1px solid var(--surface-border);
  display: grid;
  gap: 14px;
}

.cta-kicker {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.cta-copy {
  max-width: 48rem;
  font-size: 1.02rem;
  color: var(--text);
}

.phone-cta {
  min-height: 74px;
  padding: 14px 18px;
  border-radius: 24px;
  display: grid;
  gap: 4px;
  justify-items: start;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7f5;
  box-shadow: 0 18px 42px rgba(255, 86, 91, 0.28);
}

.phone-cta__label {
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.82;
}

.phone-cta strong {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.phone-cta--large {
  min-width: min(100%, 26rem);
}

.benefit-section {
  padding-top: 80px;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 46rem;
}

.benefit-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  display: grid;
  gap: 14px;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 86, 91, 0.14);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
}

.proof-strip {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.05);
  border: 1px solid var(--surface-border);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.proof-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 255, 255, 0.2));
  opacity: 0.9;
}

.proof-item__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 86, 91, 0.14);
  border: 1px solid rgba(255, 86, 91, 0.18);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.proof-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-item strong {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.proof-item span:last-child {
  color: var(--text-soft);
  line-height: 1.65;
}

.final-callout {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--surface-border);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.final-callout__copy {
  display: grid;
  gap: 14px;
  max-width: 42rem;
}

.campaign-footer {
  padding: 0 0 120px;
  display: grid;
  gap: 14px;
}

.campaign-footer__claim {
  color: var(--text);
  font-size: 0.98rem;
}

.campaign-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.campaign-footer__links a {
  color: var(--text-soft);
}

.mobile-callbar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 30;
  padding: 14px;
  border-radius: 24px;
  background: rgba(22, 18, 19, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  display: none;
  gap: 12px;
}

.mobile-callbar__copy {
  font-size: 0.84rem;
  color: var(--text);
  font-weight: 600;
}

.mobile-callbar__button {
  min-height: 54px;
  padding: 0 18px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #fff7f5;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

@keyframes techSweep {
  0% {
    background-position: -120% 0, 0 0, 0 0;
  }

  100% {
    background-position: 130% 0, 0 0, 0 0;
  }
}

@keyframes scanDrift {
  0%,
  100% {
    transform: translateY(-10%);
    opacity: 0.22;
  }

  50% {
    transform: translateY(190%);
    opacity: 0.68;
  }
}

@keyframes headlineGlow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 980px) {
  .benefit-grid,
  .proof-strip,
  .final-callout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100vw - 28px, 1120px);
  }

  .campaign-header {
    padding-top: 16px;
  }

  .campaign-brand img {
    width: 138px;
  }

  .campaign-login {
    min-height: 42px;
    padding: 0 14px;
  }

  .campaign-main {
    padding-top: 16px;
    padding-bottom: 150px;
  }

  .campaign-footer {
    padding-bottom: calc(176px + env(safe-area-inset-bottom, 0px));
  }

  .campaign-footer__links {
    gap: 14px;
  }

  .hero-card,
  .benefit-card,
  .proof-strip,
  .final-callout {
    padding: 20px;
    border-radius: 24px;
  }

  .video-stage {
    border-radius: 20px;
  }

  .proof-strip {
    gap: 14px;
  }

  .proof-item {
    padding: 16px;
  }

  .video-stage::before {
    inset: 10px;
    border-radius: 16px;
    padding: 8px;
  }

  .lead,
  .cta-copy {
    font-size: 0.98rem;
  }

  .cta-panel {
    padding: 20px;
  }

  .phone-cta {
    min-height: 68px;
  }

  .phone-cta strong {
    font-size: 1.4rem;
  }

  .benefit-section {
    padding-top: 56px;
  }

  .mobile-callbar {
    display: grid;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-card::before,
  .video-stage::after,
  .hero-headline span:last-child {
    animation: none;
  }
}
