/* ============================================================
   MAROHLA — marohla.com
   ============================================================ */

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

:root {
  --white: #FAFAF8;
  --black: #0F0E0C;
  --off-white: #F0EDE6;
  --m-red: #D42B2B;
  --m-yellow: #FFE600;
  --m-blue: #0066FF;
  --m-eggplant: #5C2C5F;
  --m-green: #2D9B5E;
  --m-pink: #E84D8A;
  --m-orange: #FF6B35;
  --mid-gray: #888780;
  --light-gray: #E5E3DC;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  cursor: none;
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */

.cursor {
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s ease, width 0.2s ease, height 0.2s ease;
}
.cursor.hovering {
  width: 40px; height: 40px;
  mix-blend-mode: multiply;
}

/* Touch devices: hide custom cursor, restore native pointer behavior */
@media (hover: none) and (pointer: coarse) {
  .cursor { display: none; }
  body, button, a, input, .nav-cta, .pipeline-item, .word-hover, .app-store-badge, .cta-submit { cursor: auto; }
}

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

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  background: var(--white);
  border-bottom: 1px solid var(--light-gray);
}

.nav-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.nav-mark svg { display: block; height: 80px; width: auto; }

.nav-wordmark {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.24em;
  color: var(--black);
  text-transform: uppercase;
}

.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 10px 22px;
  cursor: none;
  transition: background 0.2s ease;
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover { background: var(--m-red); }

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

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 9rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 3rem;
}

.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: clamp(48px, min(8vw, 10vh), 130px);
  line-height: 0.88;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--black);
  width: 100%;
  max-width: 1200px;
}

/* Headline rows — simple stacked lines */
.hero-headline .row {
  display: flex;
  align-items: baseline;
  line-height: 0.9;
  flex-wrap: wrap;
  gap: 0.3em;
}
.hero-headline .row.right {
  justify-content: flex-end;
}

.hero-headline .word-hover {
  display: inline-block;
  position: relative;
  cursor: none;
  transition: color 0.15s ease;
}
.hero-headline .word-hover::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 0;
  background: var(--m-red);
  transition: height 0.15s ease;
  z-index: -1;
}
.hero-headline .word-hover:hover { color: var(--white); }
.hero-headline .word-hover:hover::after { height: 100%; bottom: 0; }

.hero-headline .accent-yellow::after { background: var(--m-yellow); }
.hero-headline .accent-yellow:hover { color: var(--black); }

.hero-headline .accent-orange::after { background: var(--m-orange); }
.hero-headline .accent-orange:hover { color: var(--white); }

/* Small "we" — sits beside the massive DON'T */
.hero-headline .small-we {
  font-size: 0.5em;
  font-weight: 300;
  letter-spacing: 0.02em;
  color: var(--mid-gray);
  align-self: flex-start;
  padding-top: 0.6em;
  margin-right: 0.3em;
}

/* Loud words — DON'T, WORK, WITHOUT IT. — eggplant colored type, oversized */
.hero-headline .loud {
  color: var(--m-eggplant);
  font-size: 1.45em;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.hero-headline .loud::after {
  background: var(--m-yellow);
}
.hero-headline .loud:hover {
  color: var(--black);
}

/* ============================================================
   ASYMMETRIC BLOCK TRANSITIONS
   ============================================================ */

.block-zone {
  background: var(--off-white);
  padding: 4rem 0;
  display: flex;
}
.block-zone.right { justify-content: flex-end; }
.block-zone.left { justify-content: flex-start; }
.block {
  height: 36px;
}
.block.w-narrow { width: 25%; }
.block.w-30     { width: 30%; }
.block.w-medium { width: 35%; }
.block.w-mid    { width: 45%; }
.block.w-wide   { width: 50%; }

/* ============================================================
   PRODUCT — Rebel Timer
   ============================================================ */

.product {
  padding: 0;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: none;
}

.product-card-visual {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.product-card-visual.is-dark {
  background: var(--black);
}

.timer-stage {
  width: 100%;
  height: 100%;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  gap: 1rem;
}

.ts-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid-gray);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.product-card-visual.is-dark .ts-label {
  color: rgba(255,255,255,0.55);
}

.ts-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 120px;
  color: var(--black);
  line-height: 0.85;
  letter-spacing: -0.02em;
  font-feature-settings: "tnum" 1;
}

.product-card-visual.is-dark .ts-number {
  color: var(--white);
}

.ts-breathe {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 56px;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1;
}

.ts-done {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 96px;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1;
}

.ts-done-sub {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 0.5rem;
}

.ts-ready-marks {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}
.ts-ready-marks span {
  width: 18px; height: 28px;
  background: var(--black);
}

.product-card-visual.is-dark .ts-ready-marks span {
  background: var(--white);
}

.ts-progress {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 1.5rem;
  align-items: center;
}
.ts-progress-row {
  display: flex;
  gap: 6px;
}
.ts-progress-row span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.ts-progress-row span.active {
  background: var(--white);
}

.product-card-visual:not(.is-dark) .ts-progress-row span {
  background: rgba(0,0,0,0.15);
}
.product-card-visual:not(.is-dark) .ts-progress-row span.active {
  background: var(--black);
}

.ts-progress-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.product-card-visual:not(.is-dark) .ts-progress-meta {
  color: var(--mid-gray);
}

/* Phase visibility */
.ts-phase { display: none; flex-direction: column; align-items: center; }
.ts-phase.active { display: flex; }

/* RT brand mark in corner */
.rt-mark {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 38px;
  height: 38px;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}
.rt-mark svg {
  display: block;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.rt-mark .rt-light { opacity: 0; }
.rt-mark .rt-dark { opacity: 1; }
.product-card-visual.is-dark .rt-mark .rt-light { opacity: 1; }
.product-card-visual.is-dark .rt-mark .rt-dark { opacity: 0; }

.product-card-info {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--m-red);
  padding: 5px 12px;
  margin-bottom: 2rem;
  width: fit-content;
}

.product-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.product-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-gray);
  margin-bottom: 3rem;
}

.product-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.product-feature-list li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-feature-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--m-red);
  flex-shrink: 0;
}

.product-app-store-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  padding: 12px 20px;
  cursor: none;
  transition: background 0.2s;
  width: fit-content;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.app-store-badge:hover { background: var(--m-red); }
.app-store-badge .apple-icon {
  width: 16px;
  height: 18px;
  fill: currentColor;
}
.app-store-badge .badge-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.app-store-badge .badge-text-block .small {
  font-size: 9px;
  opacity: 0.7;
  margin-bottom: 2px;
}
.app-store-badge .badge-text-block .big {
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 500;
}

/* ============================================================
   PIPELINE
   ============================================================ */

.pipeline {
  padding: 6rem 3rem;
  background: var(--off-white);
}

.pipeline-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 3rem;
}

.pipeline-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pipeline-item {
  padding: 3rem;
  padding-left: calc(3rem - 4px); /* compensate for hover border so layout doesn't shift */
  border-right: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
  transition: border-left-color 0.3s ease, background 0.3s ease;
  cursor: none;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
}
.pipeline-item:nth-child(2n) { border-right: none; }
.pipeline-item:nth-last-child(-n+2) { border-bottom: none; }

.pipeline-item-letter {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 140px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  flex-shrink: 0;
  width: 110px;
  color: var(--black);
}

.pipeline-item-content {
  flex: 1;
  padding-top: 1.5rem;
}

.pipeline-item-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.pipeline-item-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
}

/* Hover: left border in product color */
.pipeline-item.roam:hover        { border-left-color: var(--m-blue); }
.pipeline-item.mroovi:hover      { border-left-color: var(--m-pink); }
.pipeline-item.task-garden:hover { border-left-color: var(--m-orange); }
.pipeline-item.ckd:hover         { border-left-color: var(--m-green); }

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

.cta-section {
  padding: 10rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: clamp(120px, 20vw, 260px);
  text-transform: uppercase;
  color: var(--light-gray);
  letter-spacing: -0.02em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.5;
  line-height: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-headline {
  font-family: 'Manrope', sans-serif;
  font-weight: 300;
  font-size: clamp(42px, 6vw, 80px);
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.cta-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--mid-gray);
  margin-bottom: 3rem;
}

.cta-form {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 480px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 300;
  padding: 14px 20px;
  border: 1px solid var(--light-gray);
  border-right: none;
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  cursor: text;
}
.cta-input:focus { border-color: var(--m-blue); }
.cta-input::placeholder { color: var(--mid-gray); }

.cta-submit {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: 14px 24px;
  cursor: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.cta-submit:hover { background: var(--m-blue); border-color: var(--m-blue); }

.cta-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-top: 1.5rem;
}

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

footer {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-copy {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--mid-gray);
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--light-gray);
}

.footer-nav-heading {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-list a {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--black);
  text-decoration: none;
  cursor: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover { color: var(--m-red); }

/* Success state */
.success-msg {
  display: none;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m-blue);
  margin-top: 1rem;
}

/* ============================================================
   LEGAL PAGE (privacy, terms, etc.)
   Used by marohla-privacy.html and any future legal pages.
   ============================================================ */

.legal-page {
  padding: 9rem 3rem 6rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--light-gray);
}

.legal-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1.5rem;
}

.legal-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.legal-meta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

.legal-intro {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 4rem;
  max-width: 680px;
}

.legal-section {
  margin-bottom: 3.5rem;
}

.legal-section h2 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--black);
}

.legal-section h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0;
  color: var(--black);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.legal-section p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-gray);
  margin-bottom: 1.25rem;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: none;
  transition: color 0.2s ease;
}

.legal-section a:hover {
  color: var(--m-red);
}

/* ============================================================
   REBEL TIMER PRODUCT PAGE
   Used by marohla-rebel-timer.html
   ============================================================ */

/* Hero — video left, content right. Mirrors the landing page Rebel Timer
   section pattern: visual on one side, product card on the other. */
.rt-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 100vh;
  padding-top: 128px; /* clear fixed nav (svg 80px + 1.5rem*2 padding + 1px border) */
}

.rt-hero-visual {
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.rt-hero-video {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 90vh;
  padding: 20px;
  box-sizing: border-box;
  object-fit: contain;
  background: transparent;
  border-radius: 32px;
  box-shadow: 0 40px 80px -25px rgba(15, 14, 12, 0.25);
}

.rt-hero-content {
  background: var(--white);
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.rt-hero-content .product-tag {
  margin-bottom: 2rem;
}

.rt-hero-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 1.5rem;
}

.rt-hero-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.rt-hero-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.rt-hero-features li {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--mid-gray);
  display: flex;
  align-items: center;
  gap: 12px;
}

.rt-hero-features li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--m-red);
  flex-shrink: 0;
}

/* Section labels and titles — shared across product page sections */
.rt-section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 1rem;
}

/* SCREENS — proper section, not a strip */
.rt-screens {
  padding: 6rem 3rem;
  background: var(--off-white);
}

.rt-screens-header {
  margin-bottom: 2.5rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.rt-screens-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}

.rt-screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.rt-screens-grid figure {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.rt-screens-grid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 40px -15px rgba(15, 14, 12, 0.18);
}

.rt-screens-grid figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.rt-screens-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--mid-gray);
}

.rt-screens-name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
}

/* FAQ */
.rt-faq {
  padding: 6rem 3rem;
  max-width: 800px;
  margin: 0 auto;
}

.rt-faq-header {
  margin-bottom: 3rem;
}

.rt-faq-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
}

.rt-faq-list {
  display: flex;
  flex-direction: column;
}

.rt-faq-list details {
  border-bottom: 1px solid var(--light-gray);
}

.rt-faq-list details:first-child {
  border-top: 1px solid var(--light-gray);
}

.rt-faq-list summary {
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--black);
  padding: 1.5rem 2.5rem 1.5rem 0;
  cursor: none;
  list-style: none;
  position: relative;
  transition: color 0.2s ease;
}

.rt-faq-list summary::-webkit-details-marker { display: none; }

.rt-faq-list summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 22px;
  font-weight: 300;
  color: var(--mid-gray);
  transition: transform 0.2s ease, color 0.2s ease;
}

.rt-faq-list details[open] summary::after {
  content: '−';
  color: var(--m-red);
}

.rt-faq-list summary:hover {
  color: var(--m-red);
}

.rt-faq-list details p {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid-gray);
  padding: 0 0 1.5rem 0;
  max-width: 640px;
}

.rt-faq-list details a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: none;
  transition: color 0.2s ease;
}

.rt-faq-list details a:hover {
  color: var(--m-red);
}


/* ============================================================
   RESPONSIVE — TABLET (max-width: 900px)
   ============================================================ */

@media (max-width: 900px) {
  /* Nav: tighter padding, smaller logo */
  nav {
    padding: 1rem 1.5rem;
  }
  .nav-mark svg { height: 56px; }
  .nav-cta { padding: 8px 16px; font-size: 10px; }

  /* Hero: less padding, accommodate smaller nav */
  .hero {
    padding: 6rem 1.5rem 3rem;
  }
  .hero-headline {
    font-size: clamp(56px, 9vw, 90px);
  }

  /* Asymmetric blocks: less vertical padding */
  .block-zone { padding: 2.5rem 0; }

  /* Rebel Timer: stack to single column */
  .product-card { grid-template-columns: 1fr; }
  .product-card-visual {
    min-height: 480px;
  }
  .timer-stage {
    min-height: 480px;
  }
  .product-card-info {
    padding: 3rem 1.5rem;
  }
  .product-name { font-size: 40px; }

  /* Pipeline: stack to single column */
  .pipeline {
    padding: 4rem 1.5rem;
  }
  .pipeline-items { grid-template-columns: 1fr; }
  .pipeline-item {
    padding: 2rem;
    padding-left: calc(2rem - 4px);
    border-right: none !important;
    border-bottom: 1px solid var(--light-gray) !important;
    gap: 1.5rem;
  }
  .pipeline-item:last-child { border-bottom: none !important; }
  .pipeline-item-letter {
    font-size: 96px;
    width: 70px;
  }
  .pipeline-item-content { padding-top: 0.5rem; }

  /* CTA */
  .cta-section {
    padding: 6rem 1.5rem;
  }

  /* Footer: stack rows, tighter spacing */
  footer {
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }
  .footer-nav {
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  /* Legal page */
  .legal-page {
    padding: 6rem 1.5rem 4rem;
  }
  .legal-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
  }
  .legal-intro {
    font-size: 17px;
    margin-bottom: 3rem;
  }
  .legal-section { margin-bottom: 2.5rem; }
  .legal-section h2 { font-size: 24px; }

  /* Rebel Timer product page — tablet: stack hero, 2-column screens grid */
  .rt-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 88px; /* clear fixed nav (svg 56px + 1rem*2 padding) */
  }
  .rt-hero-visual { padding: 0; min-height: 60vh; }
  .rt-hero-content { padding: 3rem 1.5rem; max-width: none; }
  .rt-hero-title { font-size: 56px; }

  .rt-screens { padding: 4rem 1.5rem; }
  .rt-screens-header { margin-bottom: 3rem; }
  .rt-screens-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem 1.5rem; }

  .rt-faq { padding: 4rem 1.5rem; }

}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 600px)
   ============================================================ */

@media (max-width: 600px) {
  /* Nav: even tighter */
  nav {
    padding: 0.75rem 1rem;
  }
  .nav-mark svg { height: 44px; }
  .nav-cta { padding: 7px 14px; font-size: 9px; letter-spacing: 0.08em; }

  /* Hero: reduce padding further */
  .hero {
    padding: 5rem 1.25rem 2.5rem;
  }
  .hero-headline {
    font-size: clamp(44px, 12vw, 64px);
    margin-bottom: 1.5rem;
  }
  /* Mobile: collapse asymmetric placement, all rows flush left */
  .hero-headline .row.right { justify-content: flex-start; }
  /* Mobile: scale down the loud words so the headline fits */
  .hero-headline .loud { font-size: 1.25em; }

  /* Blocks: even tighter */
  .block-zone { padding: 1.75rem 0; }
  .block { height: 28px; }
  /* Slightly wider mobile blocks so they read clearly */
  .block.w-narrow { width: 35%; }
  .block.w-30     { width: 40%; }
  .block.w-medium { width: 45%; }
  .block.w-mid    { width: 55%; }
  .block.w-wide   { width: 65%; }

  /* Rebel Timer */
  .product-card-visual,
  .timer-stage {
    min-height: 380px;
  }
  .product-card-info {
    padding: 2.5rem 1.25rem;
  }
  .product-tag { margin-bottom: 1.25rem; }
  .product-name { font-size: 36px; line-height: 0.95; }
  .product-desc { font-size: 14px; margin-bottom: 2rem; }
  .product-feature-list { margin-bottom: 2rem; }
  .product-feature-list li { font-size: 10px; }
  .ts-number { font-size: 84px; }
  .ts-done { font-size: 64px; }
  .ts-breathe { font-size: 36px; }
  .rt-mark { width: 30px; height: 30px; top: 1rem; left: 1rem; }

  /* Pipeline */
  .pipeline {
    padding: 3rem 1.25rem;
  }
  .pipeline-label { font-size: 10px; margin-bottom: 2rem; }
  .pipeline-item {
    padding: 1.75rem 1.25rem;
    padding-left: calc(1.25rem - 4px);
    gap: 1.25rem;
  }
  .pipeline-item-letter {
    font-size: 72px;
    width: 50px;
  }
  .pipeline-item-name { font-size: 22px; }
  .pipeline-item-desc { font-size: 12px; }

  /* CTA */
  .cta-section {
    padding: 5rem 1.25rem;
  }
  .cta-bg-text { font-size: clamp(80px, 35vw, 160px); }
  .cta-headline { font-size: 40px; }
  .cta-sub { font-size: 13px; margin-bottom: 2rem; }
  .cta-form { flex-direction: column; gap: 0.5rem; }
  .cta-input { border-right: 1px solid var(--light-gray); }
  .cta-submit { padding: 12px 20px; }

  /* Footer */
  footer {
    padding: 1.5rem 1.25rem;
  }
  .footer-nav {
    gap: 1.5rem;
    padding-bottom: 1.5rem;
  }
  .footer-nav-list a { font-size: 16px; }
  .footer-copy { font-size: 9px; letter-spacing: 0.08em; }

  /* Legal page */
  .legal-page {
    padding: 5rem 1.25rem 3rem;
  }
  .legal-intro { font-size: 16px; }
  .legal-section h2 { font-size: 22px; }
  .legal-section h3 { font-size: 15px; }
  .legal-section p { font-size: 14px; }

  /* Rebel Timer product page — mobile: smaller hero, single column screens */
  .rt-hero-visual { padding: 0; min-height: 55vh; }
  .rt-hero-content { padding: 2.5rem 1.25rem; }
  .rt-hero-title { font-size: 44px; }
  .rt-hero-desc { font-size: 14px; margin-bottom: 2rem; }
  .rt-hero-features { margin-bottom: 2rem; }
  .rt-hero-features li { font-size: 10px; }

  .rt-section-label { font-size: 10px; }

  .rt-screens { padding: 3rem 1.25rem; }
  .rt-screens-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 320px; }
  .rt-screens-title { font-size: 28px; }

  .rt-faq { padding: 3rem 1.25rem; }
  .rt-faq-title { font-size: 28px; }
  .rt-faq-list summary { font-size: 16px; padding: 1.25rem 2rem 1.25rem 0; }
  .rt-faq-list details p { font-size: 14px; }

}
