/* =========================
   BASE
========================= */

:root {
  --black: #0b0b0b;
  --black-soft: #151515;
  --white: #f5f5f5;
  --grey: #b9b9b9;
  --red: #e31b23;

  --max-width: 1200px;
  --section-padding: 80px;
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

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

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

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

.accent,
.red-dot {
  color: var(--red);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* =========================
   BUTTONS
========================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

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

.btn-red {
  background: var(--red);
  color: white;
}

.btn-red:hover {
  background: #ff2029;
}


/* =========================
   HERO
========================= */

.hero {
  min-height: 760px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.96) 0%,
      rgba(0, 0, 0, 0.76) 38%,
      rgba(0, 0, 0, 0.2) 70%
    ),
    url("./images/hero-slap.png") center right / cover no-repeat;

  position: relative;
}


/* =========================
   NAV
========================= */

.nav {
  height: 90px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 10;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;

  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0.9;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--red);
}


/* =========================
   HERO CONTENT
========================= */

.hero-content {
  min-height: 670px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(520px, 100%);
  padding-bottom: 50px;
}

.hero-copy h1 {
  margin: 0;

  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-description {
  max-width: 420px;

  margin: 28px 0 22px;

  color: #dddddd;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-price {
  display: flex;
  flex-direction: column;
  gap: 4px;

  margin-bottom: 24px;

  font-size: 1.1rem;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.text-link {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--red);
}

.hero-copy small {
  display: block;

  margin-top: 8px;
  margin-left: 46px;

  color: #999;
  font-size: 0.72rem;
}


/* =========================
   HERO TAGLINE
========================= */

.hero-tagline {
  display: flex;
  flex-direction: column;
  gap: 10px;

  margin-right: 10px;

  color: #cccccc;
  font-size: 1.15rem;
  line-height: 1.2;
}

/* =========================
   FEATURES
========================= */

.features {
  background: var(--white);
  color: var(--black);
  padding: 70px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  padding: 10px 38px;
  border-right: 1px solid #d8d8d8;
}

.feature:first-child {
  padding-left: 0;
}

.feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.feature-icon {
  margin-bottom: 22px;

  color: var(--red);
  font-size: 1.8rem;
  line-height: 1;
}

.feature h2 {
  margin: 0 0 12px;

  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.feature p {
  margin: 0;

  color: #666;
  font-size: 0.82rem;
  line-height: 1.6;
}


/* =========================
   DARK SECTIONS
========================= */

.dark-section {
  background: var(--black);
  color: var(--white);
}


/* =========================
   SNOOZE SECTION
========================= */

.snooze-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}

.snooze-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  min-height: 520px;
}

.snooze-copy {
  position: relative;
  z-index: 2;
}

.giant-heading {
  margin: 0 0 65px;

  font-size: clamp(4rem, 7vw, 7rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}


/* Little specs under the headline */

.mini-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  gap: 35px 55px;
}

.mini-feature {
  padding-top: 15px;
  border-top: 1px solid #333;
}

.mini-feature strong {
  display: block;
  margin-bottom: 5px;

  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-feature span {
  display: block;

  color: var(--red);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-feature p {
  margin: 7px 0 0;

  color: #888;
  font-size: 0.78rem;
  line-height: 1.5;
}


/* Robot arm */

.snooze-section .section-image {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.snooze-section .section-image img {
  position: absolute;
  top: 50%;
  left: 50%;

  width: min(720px, 60vw);
  max-width: none;

  transform: translate(-35%, -50%);
  object-fit: contain;
  pointer-events: none;
}

/* =========================
   WAKE-UP INTENSITY
========================= */

.intensity-section {
  padding: 90px 0 70px;
  background: #0d0d0d;
  border-top: 1px solid #252525;
  border-bottom: 1px solid #252525;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  margin: 0 0 10px;

  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.section-heading p {
  margin: 0;
  color: #aaa;
  font-size: 1rem;
}


/* SCALE */

.intensity-scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);

  position: relative;
  gap: 35px;

  padding-top: 55px;
}


/* Horizontal intensity line */

.intensity-scale::before {
  content: "";

  position: absolute;
  top: 15px;
  left: 3%;
  right: 3%;

  height: 4px;

  background: linear-gradient(
    90deg,
    #eee 0%,
    #bbb 25%,
    #d99a82 50%,
    #ee6547 75%,
    var(--red) 100%
  );
}


/* Each level */

.intensity-level {
  position: relative;
  padding-top: 12px;
}


/* Dot on scale */

.intensity-level::before {
  content: "";

  position: absolute;
  top: -50px;
  left: 0;

  width: 18px;
  height: 18px;

  border: 3px solid white;
  border-radius: 50%;
  background: #aaa;

  z-index: 2;
}

.intensity-level:nth-child(1)::before {
  background: #eee;
}

.intensity-level:nth-child(2)::before {
  background: #bbb;
}

.intensity-level:nth-child(3)::before {
  background: #d99a82;
}

.intensity-level:nth-child(4)::before {
  background: #ee6547;
}

.intensity-level:nth-child(5)::before {
  background: var(--red);
}


/* Text */

.level-number {
  display: block;
  margin-bottom: 8px;

  color: #aaa;
  font-size: 2.4rem;
  font-weight: 700;
}

.intensity-level h3 {
  margin: 0 0 15px;

  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intensity-level blockquote {
  min-height: 55px;
  margin: 0 0 22px;

  color: #ddd;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.4;
}

.intensity-level p {
  margin: 0;
  padding-top: 18px;

  border-top: 1px solid #444;

  color: #aaa;
  font-size: 0.82rem;
  line-height: 1.6;
}


/* Italian Mother */

.intensity-level.extreme .level-number,
.intensity-level.extreme h3,
.intensity-level.extreme blockquote {
  color: var(--red);
}


/* Bottom notes */

.intensity-notes {
  display: flex;
  justify-content: center;
  gap: 80px;

  margin-top: 65px;
  padding-top: 30px;

  border-top: 1px solid #333;
}

.intensity-notes p {
  margin: 0;
  color: #bbb;
  font-size: 0.85rem;
}

.intensity-notes .warning {
  color: var(--white);
}

.intensity-notes .warning::before {
  content: "⚠";
  margin-right: 10px;
  color: var(--red);
}

/* =========================
   RESULTS / APP
========================= */

.results-section {
  background: var(--white);
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr 1fr;
  min-height: 520px;
}

.result-panel {
  min-width: 0;
  padding: 65px 55px;
}


/* LEFT: 98% */

.light-panel {
  background: #f3f3f3;
  color: var(--black);
}

.light-panel .eyebrow {
  margin-bottom: 10px;
}

.big-stat {
  margin: 0;

  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.light-panel h2 {
  margin: 18px 0 8px;

  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.light-panel > p:not(.eyebrow) {
  margin: 0;

  color: #666;
  font-size: 0.82rem;
}


/* Fake graph for now */

.chart-placeholder {
  position: relative;

  height: 150px;
  margin-top: 35px;

  border-left: 1px solid #bbb;
  border-bottom: 1px solid #bbb;

  color: transparent;
}

.chart-placeholder::before {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;

  height: 90px;

  background: url("images/results-chart.svg")
    center / contain no-repeat;
}

.light-panel small {
  display: block;

  margin-top: 18px;

  color: #888;
  font-size: 0.65rem;
}


/* CENTER: APP */

.phone-panel {
  display: flex;
  align-items: flex-end;
  justify-content: center;

  padding: 35px 20px 0;

  overflow: hidden;

  background:
    radial-gradient(
      circle at center,
      #242424 0%,
      #111 55%,
      #090909 100%
    );
}

.phone-panel img {
  width: min(260px, 90%);
  max-height: 480px;

  object-fit: contain;
  object-position: bottom;
}


/* RIGHT: COPY */

.dark-panel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;

  background: #111;
  color: var(--white);
}

.dark-panel h2 {
  max-width: 400px;

  margin: 0 0 22px;

  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.dark-panel > p:not(.eyebrow) {
  max-width: 350px;

  margin: 0 0 32px;

  color: #aaa;
  font-size: 1rem;
  line-height: 1.6;
}


/* =========================
   MODELS / PRICING
========================= */

.models-section {
  padding: 85px 0 95px;
  background: #f4f4f4;
  color: var(--black);
}

.models-section .section-heading {
  margin-bottom: 35px;
}

.models-section .eyebrow {
  color: #555;
}


/* GRID */

.model-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}


/* CARDS */

.model-card {
  display: flex;
  flex-direction: column;

  min-height: 440px;
  padding: 28px;

  background: #fafafa;
  border: 1px solid #dedede;
  border-radius: 8px;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}


/* PRODUCT IMAGE */

.model-card img {
  width: 100%;
  height: 190px;

  margin-bottom: 25px;

  object-fit: contain;
}


/* PRODUCT INFO */

.model-card h3 {
  margin: 0 0 8px;

  font-size: 1.15rem;
  font-weight: 700;
}

.model-price {
  margin-bottom: 12px;

  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.model-card p {
  margin: 0 0 25px;

  color: #555;
  font-size: 0.85rem;
  line-height: 1.55;
}

.model-card small {
  margin-top: auto;

  color: #777;
  font-size: 0.75rem;
}

.model-card small::before {
  content: "✓";
  margin-right: 8px;

  color: var(--black);
  font-weight: 700;
}


/* Make the free app stand out */

.model-card:first-child .model-price {
  text-transform: uppercase;
}

/* =========================
   BEHAVIOR SECTION
========================= */

.behavior-section {
  padding: 110px 0;
  overflow: hidden;

  background:
    radial-gradient(circle at 75% 30%, #1b1b1b 0%, #0b0b0b 45%, #050505 100%);

  color: var(--white);
}

.behavior-header {
  max-width: 800px;
  margin-bottom: 65px;
}

.behavior-header h2 {
  margin: 10px 0 25px;

  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.behavior-intro {
  max-width: 520px;
  margin: 0;

  color: #aaa;
  font-size: 1rem;
  line-height: 1.7;
}


/* CARDS */

.behavior-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.behavior-card {
  position: relative;

  min-height: 310px;
  padding: 35px 30px;

  border-right: 1px solid #333;
}

.behavior-card:last-child {
  border-right: 0;
}

.behavior-number {
  display: block;
  margin-bottom: 50px;

  color: #666;
  font-size: 0.75rem;
  font-weight: 700;
}

.behavior-card h3 {
  margin: 0 0 18px;

  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.behavior-card p {
  margin: 0 0 25px;

  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.65;
}

.behavior-card small {
  display: block;

  color: #666;
  font-size: 0.7rem;
  line-height: 1.5;
}


/* ARM WRESTLING */

.featured-behavior {
  background: rgba(225, 25, 32, 0.07);
}

.featured-behavior::before {
  content: "";

  position: absolute;
  top: -1px;
  left: 0;
  right: 0;

  height: 3px;
  background: var(--red);
}

.featured-behavior .behavior-number,
.featured-behavior h3 {
  color: var(--red);
}

/* =========================
   WHAT'S IN THE BOX
========================= */

.box-section {
  padding: 90px 0;
  overflow: hidden;

  background: #0a0a0a;
  color: var(--white);

  border-top: 1px solid #252525;
  border-bottom: 1px solid #252525;
}

.box-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr 1fr;
  align-items: center;
  gap: 55px;
}


/* LEFT */

.box-copy h2 {
  margin: 12px 0 35px;

  font-size: clamp(2rem, 3vw, 3.3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.box-list,
.connected-copy ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.box-list li,
.connected-copy li {
  position: relative;

  margin-bottom: 12px;
  padding-left: 25px;

  color: #bbb;
  font-size: 0.82rem;
  line-height: 1.5;
}

.box-list li::before,
.connected-copy li::before {
  content: "✓";

  position: absolute;
  left: 0;

  color: var(--red);
  font-weight: 800;
}

.box-note {
  max-width: 280px;
  margin: 30px 0 0;

  color: #666;
  font-size: 0.7rem;
  line-height: 1.5;
}


/* PRODUCT */

.box-product {
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-product img {
  width: 100%;
  max-width: 600px;

  object-fit: contain;
}


/* CONNECTED */

.connected-panel {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  align-items: center;
  gap: 30px;
}

.connected-phone {
  display: flex;
  justify-content: center;
}

.connected-phone img {
  width: 100%;
  max-width: 190px;

  object-fit: contain;

  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

.connected-copy h3 {
  margin: 10px 0 25px;

  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.15;
}

.connected-copy small {
  display: block;

  margin-top: 25px;

  color: #666;
  font-size: 0.68rem;
  font-style: italic;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials-section {
  padding: 90px 0;

  background: #f4f4f4;
  color: var(--black);
}

.testimonials-heading {
  margin-bottom: 55px;
}

.testimonials-heading h2 {
  margin: 0;

  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.testimonial {
  position: relative;

  min-height: 250px;
  margin: 0;
  padding: 40px 30px;

  border-right: 1px solid #ccc;
}

.testimonial:last-child {
  border-right: 0;
}

.quote-mark {
  display: block;

  margin-bottom: 18px;

  color: var(--red);
  font-size: 3rem;
  font-weight: 700;
  line-height: 0.7;
}

.testimonial p {
  margin: 0 0 30px;

  color: #333;
  font-size: 0.95rem;
  line-height: 1.65;
}

.testimonial cite {
  position: absolute;
  bottom: 35px;

  color: #777;
  font-size: 0.75rem;
  font-style: normal;
}

/* =========================
   FINAL CTA
========================= */

.final-cta {
  position: relative;
  overflow: hidden;

  padding: 75px 0;

  background:
    radial-gradient(circle at 55% 50%, #1a1a1a 0%, #0c0c0c 45%, #050505 100%);

  border-top: 1px solid #2a2a2a;
}

.final-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 0.55fr;
  align-items: center;
  gap: 40px;
}

.final-cta-copy h2 {
  margin: 0;

  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.055em;
}

.final-cta-sub {
  margin: 22px 0 0;

  color: #aaa;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}


/* ARM */

.final-cta-arm {
  display: flex;
  align-items: center;
  justify-content: center;
}

.final-cta-arm img {
  width: 145%;
  max-width: none;

  transform: rotate(-4deg);

  filter:
    drop-shadow(0 20px 30px rgba(0, 0, 0, 0.45));
}


/* BUTTON */

.final-cta-action {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.final-cta-action .btn {
  min-width: 170px;
}

.final-cta-action small {
  color: #666;
  font-size: 0.65rem;
}

/* =========================
   FOOTER
========================= */

.site-footer {
  padding: 35px 0 25px;

  background: #050505;
  color: var(--white);

  border-top: 1px solid #222;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
}


/* BRAND */

.footer-brand {
  color: var(--white);

  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.footer-brand sup {
  position: relative;
  top: -0.5em;

  font-size: 0.4em;
}


/* NAV */

.footer-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.footer-nav a {
  color: #999;

  font-size: 0.72rem;
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}


/* LEGAL */

.footer-legal {
  text-align: right;
}

.footer-legal p {
  margin: 2px 0;

  color: #666;
  font-size: 0.62rem;
}

/* =========================
   VIDEO MODAL
========================= */

.video-trigger {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 0;

  border: 0;
  background: none;
  color: var(--white);

  font: inherit;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;

  cursor: pointer;
}

.video-trigger:hover {
  color: var(--red);
}

.play-icon {
  color: var(--red);
  font-size: 0.7rem;
}


/* MODAL */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.92);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.video-modal-content {
  position: relative;

  width: min(1100px, 100%);

  transform: scale(0.96);
  transition: transform 0.25s ease;
}

.video-modal.is-open .video-modal-content {
  transform: scale(1);
}

.video-modal video {
  display: block;

  width: 100%;
  max-height: 85vh;

  background: #000;
}

.video-close {
  position: absolute;
  top: -45px;
  right: 0;

  padding: 0;

  border: 0;
  background: transparent;
  color: white;

  font-size: 2.5rem;
  line-height: 1;

  cursor: pointer;
}

.video-close:hover {
  color: var(--red);
}

body.modal-open {
  overflow: hidden;
}


/* BOTTOM */

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  margin-top: 30px;
  padding-top: 20px;

  border-top: 1px solid #1d1d1d;
}

.footer-bottom p {
  margin: 0;

  color: #555;
  font-size: 0.6rem;
}

.footer-tagline {
  flex-shrink: 0;

  font-weight: 700;
  letter-spacing: 0.08em;
}


/* =========================
   DOWNLOAD MODAL
========================= */

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  background: rgba(0, 0, 0, 0.92);

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.download-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.download-modal-content {
  position: relative;

  width: min(520px, 100%);
  padding: 55px;

  background: #111;
  border: 1px solid #333;

  text-align: center;

  transform: translateY(15px);
  transition: transform 0.25s ease;
}

.download-modal.is-open .download-modal-content {
  transform: translateY(0);
}

.download-modal-content .eyebrow {
  margin-bottom: 15px;
}

.download-modal-content h2 {
  margin: 0;

  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.download-price {
  margin: 20px 0 0;

  color: #aaa;
}

.download-price strong {
  color: var(--white);
}

.download-divider {
  width: 50px;
  height: 2px;

  margin: 35px auto;

  background: var(--red);
}

.download-pivot {
  margin: 0 0 30px;

  color: #aaa;
  line-height: 1.6;
}

.download-pivot strong {
  color: var(--white);
  font-size: 1.1rem;
}

.download-modal-content small {
  display: block;

  margin-top: 15px;

  color: #666;
  font-size: 0.7rem;
}

.download-close {
  position: absolute;
  top: 15px;
  right: 20px;

  padding: 0;

  border: 0;
  background: transparent;
  color: #777;

  font-size: 2rem;
  line-height: 1;

  cursor: pointer;
}

.download-close:hover {
  color: var(--red);
}




/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 700px;

    background:
      linear-gradient(
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.92)
      ),
      url("./images/hero-slap.png") center / cover no-repeat;
  }

  .hero-content {
    min-height: 610px;
    align-items: flex-end;
  }

  .hero-copy {
    padding-bottom: 60px;
  }

  .hero-tagline {
    display: none;
  }

  .feature-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 0;
}

.feature {
  padding: 10px 30px;
}

.feature:nth-child(2) {
  border-right: 0;
}

.feature:nth-child(3) {
  padding-left: 0;
}

.snooze-section {
  padding: 80px 0;
}

.snooze-layout {
  grid-template-columns: 1fr;
}

.snooze-copy {
  max-width: 650px;
}

.snooze-section .section-image {
  min-height: 350px;
  margin-top: 40px;
}

.snooze-section .section-image img {
  left: 50%;
  width: min(650px, 100vw);
  transform: translate(-50%, -50%);
}

.intensity-section {
  padding: 70px 0;
}

.intensity-scale {
  grid-template-columns: 1fr;
  gap: 0;

  padding-top: 0;
}

.intensity-scale::before {
  top: 0;
  bottom: 0;
  left: 9px;

  width: 3px;
  height: auto;

  background: linear-gradient(
    #eee,
    #bbb,
    #d99a82,
    #ee6547,
    var(--red)
  );
  
}

.intensity-level {
  padding: 0 0 55px 50px;
}

.intensity-level:last-child {
  padding-bottom: 0;
}

.intensity-level::before {
  top: 0;
  left: 0;
}

.intensity-level blockquote {
  min-height: auto;
}

.intensity-notes {
  align-items: flex-start;
  flex-direction: column;
  gap: 18px;

  margin-top: 55px;
}

.results-grid {
  grid-template-columns: 1fr 1fr;
}

.light-panel {
  min-height: 480px;
}

.phone-panel {
  min-height: 480px;
}

.dark-panel {
  grid-column: 1 / -1;

  min-height: 380px;
  padding-inline: max(40px, calc((100vw - 760px) / 2));
}

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

.model-card {
  min-height: 420px;
}

.behavior-section {
  padding: 80px 0;
}

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

.behavior-card:nth-child(2) {
  border-right: 0;
}

.behavior-card:nth-child(-n + 2) {
  border-bottom: 1px solid #333;
}

.box-grid {
  grid-template-columns: 1fr 1fr;
}

.box-product {
  grid-column: 2;
  grid-row: 1;
}

.connected-panel {
  grid-column: 1 / -1;

  padding-top: 50px;

  border-top: 1px solid #333;
}

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

.testimonial:nth-child(2) {
  border-right: 0;
}

.testimonial:nth-child(-n + 2) {
  border-bottom: 1px solid #ccc;
}

.final-cta {
  padding: 70px 0;
}

.final-cta-grid {
  grid-template-columns: 1fr 0.8fr;
}

.final-cta-arm {
  grid-column: 2;
  grid-row: 1 / 3;
}

.final-cta-action {
  align-items: flex-start;
}

.footer-grid {
  grid-template-columns: 1fr auto;
}

.footer-nav {
  grid-column: 1 / -1;
  grid-row: 2;

  justify-content: flex-start;
}

.footer-legal {
  text-align: right;
}

}

@media (max-width: 600px) {

  .container {
    width: min(100% - 28px, var(--max-width));
  }

  .nav {
    height: 76px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav .btn {
    min-height: 38px;
    padding-inline: 16px;
    font-size: 0.7rem;
  }

  .hero-copy h1 {
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .hero-copy small {
    margin-left: 0;
  }

  .features {
  padding: 50px 0;
}

.feature-grid {
  grid-template-columns: 1fr;
  gap: 0;
}

.feature,
.feature:first-child,
.feature:nth-child(3),
.feature:last-child {
  padding: 28px 0;
  border-right: 0;
  border-bottom: 1px solid #d8d8d8;
}

.feature:first-child {
  padding-top: 0;
}

.feature:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.snooze-section {
  padding: 65px 0;
}

.giant-heading {
  margin-bottom: 45px;
  font-size: clamp(3.2rem, 16vw, 5rem);
}

.mini-feature-grid {
  grid-template-columns: 1fr;
  gap: 25px;
}

.snooze-section .section-image {
  min-height: 280px;
}

.snooze-section .section-image img {
  width: 130%;
}

.intensity-section {
  padding: 55px 0;
}

.section-heading {
  margin-bottom: 45px;
}

.section-heading h2 {
  font-size: 2rem;
}

.level-number {
  font-size: 2rem;
}

.results-grid {
  grid-template-columns: 1fr;
}

.result-panel {
  padding: 50px 28px;
}

.light-panel {
  min-height: auto;
}

.phone-panel {
  min-height: 440px;
  padding-bottom: 0;
}

.phone-panel img {
  width: min(250px, 80%);
}

.dark-panel {
  grid-column: auto;
  min-height: 390px;
  padding: 55px 28px;
}

.dark-panel h2 {
  font-size: 2.8rem;
}

.models-section {
  padding: 60px 0;
}

.model-grid {
  grid-template-columns: 1fr;
}

.model-card {
  min-height: auto;
}

.model-card img {
  height: 220px;
}

.behavior-section {
  padding: 65px 0;
}

.behavior-header {
  margin-bottom: 45px;
}

.behavior-header h2 {
  font-size: 3.2rem;
}

.behavior-grid {
  grid-template-columns: 1fr;
}

.behavior-card,
.behavior-card:nth-child(2) {
  min-height: auto;
  padding: 30px 0;

  border-right: 0;
  border-bottom: 1px solid #333;
}

.behavior-card:last-child {
  border-bottom: 0;
}

.behavior-number {
  margin-bottom: 25px;
}

.box-section {
  padding: 65px 0;
}

.box-grid {
  grid-template-columns: 1fr;
  gap: 45px;
}

.box-product {
  grid-column: auto;
  grid-row: auto;
}

.box-product img {
  max-width: 450px;
}

.connected-panel {
  grid-column: auto;
  grid-template-columns: 0.7fr 1fr;
  gap: 20px;

  padding-top: 40px;
}

.connected-phone img {
  max-width: 150px;
}

.testimonials-section {
  padding: 65px 0;
}

.testimonial-grid {
  grid-template-columns: 1fr;
}

.testimonial,
.testimonial:nth-child(2) {
  min-height: 220px;

  border-right: 0;
  border-bottom: 1px solid #ccc;
}

.testimonial:last-child {
  border-bottom: 0;
}

.final-cta {
  padding: 60px 0;
}

.final-cta-grid {
  grid-template-columns: 1fr;
  gap: 35px;
}

.final-cta-arm {
  grid-column: auto;
  grid-row: auto;

  min-height: 180px;
}

.final-cta-arm img {
  width: 120%;
}

.final-cta-action {
  align-items: flex-start;
}

.site-footer {
  padding: 35px 0 25px;
}

.footer-grid {
  grid-template-columns: 1fr;
  gap: 25px;
}

.footer-nav {
  grid-column: auto;
  grid-row: auto;

  flex-wrap: wrap;
  gap: 15px 25px;
}

.footer-legal {
  text-align: left;
}

.footer-bottom {
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
}

}