/* ========================================
   BREWED IN PIXELS — English Site
   Design System: Brewed × Agnos Hybrid
   Clean, minimal, pixel-accented
======================================== */

/* ========================================
   RESET & BASE
======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Colors */
  --ink: #0A0A0A;
  --paper: #FAF8F5;
  --cream: #F0EDE8;
  --charcoal: #2A2A2A;
  --grey: #999;
  --grey-light: #C4C4C4;
  --faint: #E8E6E3;
  --signal: #FF4D00;
  --signal-light: #FF7733;
  --signal-dark: #CC3D00;
  --signal-glow: rgba(255, 77, 0, 0.35);
  --signal-dim: rgba(255, 77, 0, 0.06);
  --white: #FFFFFF;

  /* Soft border system (Agnos-inspired) */
  --border-soft: 1px solid rgba(10,10,10,0.08);
  --border-medium: 1px solid rgba(10,10,10,0.15);
  --border-accent: 2px solid var(--signal);

  /* Shadow system */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --shadow-signal: 0 4px 20px rgba(255, 77, 0, 0.15);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 100px;

  /* Gradients (Agnos-inspired) */
  --gradient-signal: linear-gradient(135deg, #FF4D00 0%, #FF7733 50%, #FF9F66 100%);
  --gradient-warm: linear-gradient(135deg, #FF6B35 0%, #FF4D00 100%);
  --gradient-hero: radial-gradient(ellipse at 50% 0%, rgba(255,77,0,0.06) 0%, transparent 60%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);

  /* Industry colors */
  --coffee: #4E342E;
  --restaurant: #1B5E20;
  --gym: #1A237E;

  /* Transitions */
  --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  cursor: default;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--signal);
  color: var(--white);
}

img { max-width: 100%; height: auto; }

a {
  color: var(--signal);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover { color: var(--signal-dark); }

/* ========================================
   ANIMATIONS
======================================== */
@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(4px, -8px) rotate(1deg); }
  50% { transform: translate(-2px, -12px) rotate(-0.5deg); }
  75% { transform: translate(6px, -4px) rotate(1.5deg); }
}

@keyframes drift-slow {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-6px, -10px) rotate(-1deg); }
  66% { transform: translate(4px, -6px) rotate(0.5deg); }
}

@keyframes orbit {
  0% { transform: translate(0, 0); }
  25% { transform: translate(10px, -10px); }
  50% { transform: translate(0, -16px); }
  75% { transform: translate(-10px, -10px); }
  100% { transform: translate(0, 0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); opacity: 0.08; }
  50% { transform: scale(1.05); opacity: 0.12; }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

@keyframes draw-underline {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ========================================
   SCROLL ANIMATIONS
======================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  letter-spacing: -2px;
}

h2 {
  font-size: clamp(22px, 4.5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.15;
}

h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.35;
}

h4 {
  font-size: 16px;
  font-weight: 600;
}

p {
  font-size: 16px;
  color: var(--charcoal);
  line-height: 1.7;
  max-width: 640px;
}

strong {
  color: var(--ink);
  font-weight: 600;
}

.highlight {
  color: var(--signal);
}

.dim {
  color: var(--grey);
}

/* ─────────────────────────────────────────────────────────
   MONO FONT USAGE RULE (Space Mono)
   Space Mono is ONLY allowed for:
     (a) CTAs / buttons
     (b) Taglines / section eyebrow labels
     (c) Small UI metadata: tags, badges, timestamps, counters
   NEVER use Space Mono for body paragraphs, card descriptions,
   or any continuous reading text. Use Space Grotesk for those.
   Minimum body text size: 16px.
───────────────────────────────────────────────────────── */

/* Labels / Tags */
.label {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--signal);
  display: block;
  margin-bottom: 16px;
}

.label-subtle {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
}

/* Handwritten (Caveat) */
.handwritten {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
}

.handwritten-lg {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
}

.handwritten-note {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 18px;
  color: var(--signal);
  display: inline-block;
  position: relative;
}

.handwritten-note.rotate-left { transform: rotate(-3deg); }
.handwritten-note.rotate-right { transform: rotate(2deg); }
.handwritten-note.rotate-slight { transform: rotate(-1.5deg); }

/* ========================================
   LAYOUT
======================================== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
  position: relative;
}

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

.section-paper {
  background: var(--paper);
}

.section-cream {
  background: var(--cream);
}

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

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.88);
}

.section-dark .label {
  color: var(--signal-light);
}

.section-divider {
  border: none;
  border-top: var(--border-soft);
  margin: 0;
}

.text-center { text-align: center; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ========================================
   NAVIGATION
======================================== */


.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}

.nav-logo-icon {
  width: 28px;
  height: 28px;
}

.nav-logo-text {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.3px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--charcoal);
  transition: color 0.2s var(--ease-out);
  position: relative;
}

.nav-link:hover {
  color: var(--signal);
}

.nav-link.active {
  color: var(--signal);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--signal);
  border-radius: 1px;
}

.nav-cta {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 24px;
  background: var(--signal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  box-shadow: 0 3px 0 var(--signal-dark);
}

.nav-cta:hover {
  background: var(--signal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 0 var(--signal-dark), 0 6px 16px rgba(255,77,0,0.2);
}

.nav-cta:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--signal-dark);
}

/* Language switcher */
.nav-lang {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  background: transparent;
  color: var(--signal);
  border: 1.5px solid var(--signal);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  margin-left: 12px;
}

.nav-lang:hover {
  color: var(--paper);
  border-color: var(--signal);
  background: var(--signal);
}

/* Hamburger menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: all 0.3s var(--ease-out);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 32px;
  border-bottom: var(--border-medium);
  z-index: 99;
  flex-direction: column;
  gap: 24px;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile .nav-link {
  font-size: 18px;
}

/* ========================================
   HERO
======================================== */
.hero {
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-hero);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero .label {
  margin-bottom: 24px;
  display: inline-block;
}

.hero h1 {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 660px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* ========================================
   PIXEL SPRITES (Floating Decorations)
======================================== */
.sprite {
  position: absolute;
  image-rendering: pixelated;
  pointer-events: none;
  z-index: 1;
}

.sprite-bg {
  opacity: 0.07;
}

.sprite-accent {
  opacity: 0.15;
}

.sprite-visible {
  opacity: 0.3;
}

/* Drift animations (varied speeds) */
.sprite.drift-1 { animation: drift 8s ease-in-out infinite; }
.sprite.drift-2 { animation: drift-slow 10s ease-in-out infinite; }
.sprite.drift-3 { animation: drift 12s ease-in-out 1s infinite; }
.sprite.drift-4 { animation: drift-slow 9s ease-in-out 2s infinite; }
.sprite.drift-5 { animation: orbit 14s ease-in-out infinite; }
.sprite.drift-6 { animation: float 6s ease-in-out 0.5s infinite; }

/* Sprite sizes */
.sprite-sm { width: 28px; height: 28px; }
.sprite-md { width: 40px; height: 40px; }
.sprite-lg { width: 56px; height: 56px; }
.sprite-xl { width: 72px; height: 72px; }

/* ========================================
   MARQUEE
======================================== */


.marquee-track {
  display: inline-block;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  margin-right: 48px;
  font-weight: 600;
  font-size: 15px;
}

/* ========================================
   BUTTONS & CTAs
======================================== */
.btn {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 14px 32px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--signal);
  color: var(--white);
  box-shadow: 0 4px 0 var(--signal-dark), 0 6px 12px rgba(255,77,0,0.2);
  position: relative;
}

.btn-primary:hover {
  background: var(--signal);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--signal-dark), 0 10px 20px rgba(255,77,0,0.25);
}

.btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 var(--signal-dark), 0 2px 4px rgba(255,77,0,0.15);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  background: transparent;
  color: var(--signal);
  padding: 14px 0;
}

.btn-ghost:hover {
  color: var(--signal-dark);
}

.btn-ghost::after {
  content: '→';
  transition: transform 0.2s var(--ease-out);
}

.btn-ghost:hover::after {
  transform: translateX(4px);
}

/* Dark section buttons */
.section-dark .btn-secondary {
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}

.section-dark .btn-secondary:hover {
  border-color: var(--white);
}

/* ========================================
   CARDS
======================================== */
.card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.card-accent {
  border-left: 3px solid var(--signal);
}


.card-dark {
  background: var(--ink);
  border: none;
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
}

.card-dark h3, .card-dark h4 { color: var(--white); }
.card-dark p { color: var(--grey-light); }

/* ========================================
   GRID LAYOUTS
======================================== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* ========================================
   QUOTE BLOCK
======================================== */
.quote-block {
  position: relative;
  padding: 48px 0;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}


.quote-text {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  position: relative;
  z-index: 1;
}

.quote-attribution {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--grey);
  margin-top: 20px;
}

/* ========================================
   STATS / DATA SECTION
======================================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--signal);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}

.section-dark .stat-text {
  color: rgba(255,255,255,0.92);
}

.section-dark .stat-text strong {
  color: var(--white);
}

/* ========================================
   TERMINAL / CODE BLOCK
======================================== */


.terminal-dots {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #FF5F56; }
.terminal-dots span:nth-child(2) { background: #FFBD2E; }
.terminal-dots span:nth-child(3) { background: #27C93F; }

.terminal-line {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  line-height: 1.8;
  color: var(--grey-light);
}

.terminal-line .time {
  color: var(--grey);
  margin-right: 12px;
}

.terminal-line .accent {
  color: var(--signal);
}

/* ========================================
   PROCESS / STEPS
======================================== */
.steps {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: start;
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--signal);
  opacity: 0.2;
  line-height: 1;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
}

/* ========================================
   BEFORE / AFTER TABLE
======================================== */
.comparison-table .before {
  color: var(--grey);
}

.comparison-table .after {
  color: var(--ink);
  font-weight: 500;
}

/* ========================================
   FAQ / ACCORDION
======================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}


.faq-question:hover {
  color: var(--signal);
}

.faq-question .icon {
  font-size: 24px;
  color: var(--signal);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-item.open .faq-question {
  color: var(--signal);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s var(--ease-out);
  padding-top: 0;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 16px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--charcoal);
}

/* ========================================
   BADGES / TAGS
======================================== */


.badge-signal {
  background: var(--signal-dim);
  color: var(--signal);
}

.badge-ink {
  background: rgba(10,10,10,0.06);
  color: var(--charcoal);
}

.badge-white {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* ========================================
   CTA SECTION (Final call-to-action)
======================================== */
.cta-section {
  text-align: center;
  padding: 100px 0;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  margin: 0 auto 32px;
  max-width: 480px;
}

.cta-note {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--grey);
  margin-top: 16px;
  letter-spacing: 0.5px;
}

/* ========================================
   TESTIMONIALS
======================================== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 8px 0;
}

.testimonial-card {
  flex: 0 0 calc(50% - 12px);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-highlight {
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 20px;
}

.testimonial-highlight::before {
  content: '\201C';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--signal);
  opacity: 0.12;
  position: absolute;
  top: 8px;
  left: 24px;
  line-height: 1;
  pointer-events: none;
}

.testimonial-body {
  flex: none;
}

.testimonial-accent {
  margin-top: auto;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal);
  overflow: hidden;
  max-height: 260px;
  position: relative;
  transition: max-height 0.5s ease;
}

.testimonial-text.expanded {
  max-height: 3000px;
}

.testimonial-text.no-truncate {
  max-height: none;
}

.testimonial-text:not(.expanded):not(.no-truncate)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(transparent, var(--white));
  pointer-events: none;
}

.testimonial-text p {
  margin-bottom: 12px;
}

.testimonial-toggle {
  background: none;
  border: none;
  color: var(--signal);
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 8px 0 0;
  transition: color 0.2s;
}

.testimonial-toggle:hover {
  color: var(--signal-dark);
}

.testimonial-accent {
  width: 100%;
  height: 3px;
  background: var(--gradient-signal);
  border-radius: 2px;
  margin: 20px 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

.testimonial-role {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 2px;
}

.testimonial-stars {
  color: var(--signal);
  font-size: 13px;
  letter-spacing: 2px;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: var(--border-medium);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--ink);
  transition: all 0.2s;
}

.testimonial-arrow:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.testimonial-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(100% - 16px);
    padding: 32px 24px 24px;
    height: auto !important;
  }
  .testimonial-track {
    align-items: flex-start;
  }
  .testimonial-highlight {
    font-size: 16px;
  }
  /* Remove auto margin so accent sits right after the toggle, no blank gap */
  .testimonial-accent {
    margin-top: 20px !important;
  }
}

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

.footer p {
  font-size: 12px;
  color: var(--grey);
  margin: 0 auto;
}

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

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

.footer-nav {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(150,150,150,0.4);
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-nav:hover {
  color: var(--signal);
  text-decoration-color: var(--signal);
}

/* ========================================
   HANDWRITTEN ANNOTATIONS (Decorative)
======================================== */


.annotation.left {
  transform: rotate(-3deg);
}

.annotation.right {
  transform: rotate(2deg);
}

.annotation.subtle {
  color: var(--charcoal);
  opacity: 0.5;
}

/* Hand-drawn arrow SVG next to annotations */
.annotation svg {
  width: 40px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}


/* ========================================
   PORTFOLIO / APP SHOWCASE
======================================== */

/* app-card-icon img styles moved to refined app-card section */

.app-card h4 {
  margin-bottom: 4px;
}

.app-card .app-category {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--signal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.app-card p {
  font-size: 14px;
  color: var(--charcoal);
}

/* ========================================
   TAGS CLOUD (About page background)
======================================== */
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}


/* ========================================
   VS / COMPARISON LIST
======================================== */
.vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.vs-column h4 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.vs-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vs-column li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
  color: var(--charcoal);
}

.vs-column.negative li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: var(--grey);
  font-size: 12px;
}

.vs-column.positive li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--signal);
  font-weight: 700;
  font-size: 14px;
}

/* ========================================
   CONTACT OPTIONS
======================================== */

/* ========================================
   AGNOS-INSPIRED ENHANCEMENTS
======================================== */

/* --- Orange Gradient CTA Section (replaces dark CTA) --- */
.section-signal {
  background: var(--gradient-signal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.section-signal h1,
.section-signal h2,
.section-signal h3,
.section-signal h4 {
  color: var(--white);
}

.section-signal p {
  color: rgba(255,255,255,0.9);
}

.section-signal .label {
  color: rgba(255,255,255,0.7);
}

.section-signal .btn-primary {
  background: var(--white);
  color: var(--signal);
  box-shadow: 0 4px 0 rgba(0,0,0,0.15), 0 6px 12px rgba(0,0,0,0.1);
}

.section-signal .btn-primary:hover {
  background: var(--white);
  color: var(--signal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 0 rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.15);
}

.section-signal .btn-primary:active {
  transform: translateY(2px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.15), 0 2px 4px rgba(0,0,0,0.08);
}

.section-signal .cta-note {
  color: rgba(255,255,255,0.6);
}

.section-signal .handwritten {
  color: rgba(255,255,255,0.85);
}

/* --- Glassmorphism Cards --- */
.card-glass {
  background: var(--gradient-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.4s var(--ease-out);
}

.card-glass:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
  border-color: rgba(255,255,255,0.7);
}

/* --- Decorative Wavy SVG Backgrounds --- */
.wavy-bg-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.06;
}

.wavy-bg-decoration svg {
  width: 100%;
  height: auto;
}

.wavy-bg-decoration.top {
  top: -40px;
  left: -10%;
  right: -10%;
  width: 120%;
}

.wavy-bg-decoration.bottom {
  bottom: -40px;
  left: -10%;
  right: -10%;
  width: 120%;
  transform: scaleY(-1);
}

.wavy-bg-decoration.mid {
  top: 30%;
  left: -5%;
  width: 110%;
}

/* --- Section Wave Divider --- */
.section-wave-top {
  position: relative;
}

.section-wave-top::before {
  content: '';
  position: absolute;
  top: -48px;
  left: 0;
  right: 0;
  height: 48px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 1;
}

.section-wave-bottom::after {
  content: '';
  position: absolute;
  bottom: -48px;
  left: 0;
  right: 0;
  height: 48px;
  background: inherit;
  clip-path: ellipse(55% 100% at 50% 0%);
  z-index: 1;
}

/* --- Floating Icon Boxes (Hero accents) --- */
.icon-float {
  position: absolute;
  width: 52px;
  height: 52px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  animation: float-gentle 6s ease-in-out infinite;
  border: 1px solid rgba(0,0,0,0.04);
}

.icon-float img {
  width: 28px;
  height: 28px;
  image-rendering: pixelated;
}

.icon-float.sm {
  width: 40px;
  height: 40px;
}

.icon-float.sm img {
  width: 22px;
  height: 22px;
}

.icon-float.lg {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
}

.icon-float.lg img {
  width: 36px;
  height: 36px;
}

@keyframes float-gentle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-10px) rotate(1.5deg); }
  66% { transform: translateY(-5px) rotate(-1deg); }
}

/* Varied float delays for organic feel */
.icon-float:nth-child(2) { animation-delay: 1.5s; }
.icon-float:nth-child(3) { animation-delay: 3s; }
.icon-float:nth-child(4) { animation-delay: 0.8s; }
.icon-float:nth-child(5) { animation-delay: 2.2s; }

/* --- Enhanced Stat Grid with Dividers --- */
.stat-grid.divided {
  position: relative;
}

.stat-grid.divided > div {
  position: relative;
  padding: 24px 0;
}

.stat-grid.divided > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 20%;
  height: 60%;
  width: 1px;
  border-right: 2px dotted rgba(255,255,255,0.15);
}

/* Colored dot indicators above stats */
.stat-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 12px;
}

.stat-dot.signal { background: var(--signal); }
.stat-dot.electric { background: #0066FF; }
.stat-dot.acid { background: #00E64D; }
.stat-dot.violet { background: #7B2FFF; }

/* --- Enhanced Section Backgrounds --- */
.section-paper-gradient {
  background: linear-gradient(180deg, var(--paper) 0%, var(--white) 100%);
}

.section-warm {
  background: linear-gradient(180deg, #FFF8F3 0%, var(--white) 100%);
}

/* --- Refined Card Flat (more Agnos) --- */
.card-flat {
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--radius-xl);
  padding: 36px;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-sm);
}

.card-flat:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border-color: rgba(10,10,10,0.1);
}

/* --- Scenario cards refined --- */
.scenario-card {
  border-radius: var(--radius-xl);
  padding: 36px;
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.06);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.scenario-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.scenario-card.coffee { border-top: 3px solid var(--coffee); }
.scenario-card.restaurant { border-top: 3px solid var(--restaurant); }
.scenario-card.gym { border-top: 3px solid var(--gym); }

/* --- App cards refined --- */
.app-card {
  display: flex;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(10,10,10,0.06);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.app-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.app-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.app-card-icon img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}

/* --- Enhanced Navigation (more glass) --- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(10,10,10,0.06);
}

/* --- Contact option refined --- */
.contact-option {
  background: var(--white);
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s var(--ease-out);
}

.contact-option:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}

.contact-option.recommended {
  border: 2px solid var(--signal);
  box-shadow: 0 4px 24px rgba(255,77,0,0.08);
  position: relative;
}

.contact-option.recommended:hover {
  box-shadow: 0 12px 40px rgba(255,77,0,0.12);
}

.contact-option.recommended::before {
  content: 'Recommended';
  font-family: 'Caveat', cursive;
  font-size: 16px;
  font-weight: 700;
  color: var(--signal);
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--white);
  padding: 0 12px;
}

/* --- Terminal refined (more rounded, glass-like) --- */
.terminal {
  background: linear-gradient(145deg, #1a1a1a 0%, #111 100%);
  border-radius: var(--radius-xl);
  padding: 28px;
  overflow-x: auto;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
}

/* --- FAQ refined --- */
.faq-item {
  border-bottom: 1px dotted rgba(10,10,10,0.12);
  padding: 28px 0;
}

.faq-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  transition: all 0.25s var(--ease-out);
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

/* --- Marquee refined --- */
.marquee-bar {
  overflow: hidden;
  white-space: nowrap;
  background: var(--ink);
  color: rgba(255,255,255,0.88);
  padding: 14px 0;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* --- Quote block refined --- */
.quote-block::before {
  content: '"';
  font-family: 'Space Grotesk', sans-serif;
  font-size: 140px;
  font-weight: 700;
  color: var(--signal);
  opacity: 0.08;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

/* --- Steps refined with line connector --- */
.steps .step {
  position: relative;
}

.steps .step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 29px;
  top: 50px;
  bottom: -30px;
  width: 1px;
  border-left: 2px dotted rgba(255,77,0,0.15);
}

/* --- VS Grid refined --- */
.vs-column.positive {
  position: relative;
}

.vs-column.positive::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-warm);
  border-radius: 2px;
}

.vs-column.positive {
  padding-left: 12px;
}

/* --- Handwritten annotation enhancement --- */
.annotation {
  position: absolute;
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 18px;
  color: var(--signal);
  pointer-events: none;
  z-index: 3;
  white-space: nowrap;
  opacity: 0.85;
  transition: opacity 0.3s;
}

/* --- Comparison table refined --- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,10,10,0.06);
}

.comparison-table th {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid rgba(10,10,10,0.08);
  color: var(--grey);
  background: var(--paper);
}

.comparison-table td {
  padding: 18px 24px;
  font-size: 14px;
  border-bottom: 1px dotted rgba(10,10,10,0.08);
  vertical-align: top;
  background: var(--white);
}

/* --- Tags refined --- */
.tag {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--white);
  color: var(--charcoal);
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(10,10,10,0.04);
  transition: all 0.25s var(--ease-out);
}

.tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.tag.featured {
  background: var(--gradient-warm);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 16px rgba(255,77,0,0.2);
}

/* --- Enhanced Badge --- */
.badge {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  display: inline-block;
}

/* --- Footer refined --- */
.footer {
  padding: 56px 32px;
  text-align: center;
  border-top: 1px dotted rgba(10,10,10,0.08);
  background: var(--white);
}

/* ========================================
   CTA WITH ANNOTATION (Hand arrow + subtext)
======================================== */
.cta-with-annotation {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
}

.cta-annotation {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.cta-annotation-arrow {
  width: 52px;
  height: 44px;
  flex-shrink: 0;
}

.cta-annotation-text {
  font-family: 'Caveat', cursive;
  font-weight: 700;
  font-size: 22px;
  color: var(--signal);
  white-space: nowrap;
  transform: rotate(-1.5deg);
}

.section-signal .cta-annotation-text {
  color: rgba(255,255,255,0.8);
}

.section-signal .cta-annotation-arrow path {
  stroke: rgba(255,255,255,0.7);
}

/* ========================================
   VIDEO CARDS (Industry content)
======================================== */
.video-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--ink);
  cursor: pointer;
  transition: all 0.35s var(--ease-out);
  box-shadow: var(--shadow-md);
}

.video-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.video-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.6;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.video-card:hover .video-card-bg {
  opacity: 0.4;
  transform: scale(1.05);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  z-index: 1;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.3s var(--ease-out);
}

.video-card:hover .video-card-play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.video-card-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.video-card-caption {
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
}

.video-card-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 6px;
}

/* ========================================
   CARD INTERIOR BORDERS (Dotted separator)
======================================== */
.card-flat .card-header,
.card-glass .card-header {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px dotted rgba(10,10,10,0.1);
}

.card-flat.has-separator > h3:first-of-type,
.card-glass.has-separator > h3:first-of-type {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px dotted rgba(10,10,10,0.1);
}

.scenario-card h4 {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 2px dotted rgba(10,10,10,0.1);
}

/* ========================================
   CREATOR FAQs — Index Page
======================================== */
.guide-hero {
  padding: 140px 0 80px;
  text-align: center;
  background: var(--paper);
  position: relative;
}

.guide-hero h1 {
  letter-spacing: -2px;
  margin-bottom: 16px;
}

.guide-hero .hero-sub {
  max-width: 560px;
  margin: 0 auto;
  color: var(--charcoal);
}

.guide-section {
  padding: 0 0 64px;
}

.guide-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: var(--border-soft);
}

.guide-category-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 700;
  white-space: nowrap;
}

.guide-category h2 {
  font-size: clamp(22px, 3vw, 28px);
  letter-spacing: -0.5px;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.guide-card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.guide-card:hover {
  border-color: var(--signal);
  box-shadow: var(--shadow-signal);
  transform: translateY(-2px);
  color: var(--ink);
}

.guide-card-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--signal);
  font-weight: 700;
}

.guide-card h3 {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.3px;
}

.guide-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
}

.guide-card-arrow {
  margin-top: auto;
  padding-top: 12px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--signal);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s var(--ease-out);
}

.guide-card:hover .guide-card-arrow {
  gap: 10px;
}

/* ========================================
   CREATOR FAQs — Article Page
======================================== */
.article-breadcrumb {
  padding: 100px 0 0;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
}

.article-breadcrumb a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

.article-breadcrumb a:hover {
  color: var(--signal);
}

.article-breadcrumb span {
  margin: 0 8px;
  color: var(--grey-light);
}

.article-header {
  padding: 32px 0 48px;
  border-bottom: var(--border-soft);
  margin-bottom: 48px;
}

.article-header h1 {
  font-size: clamp(28px, 4.5vw, 40px);
  letter-spacing: -1.5px;
  line-height: 1.2;
  max-width: 720px;
}

.article-content {
  padding-bottom: 48px;
  max-width: 720px;
}

.article-content h2 {
  font-size: 22px;
  letter-spacing: -0.5px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 18px;
  letter-spacing: -0.3px;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--charcoal);
}

.article-content strong {
  color: var(--ink);
  font-weight: 600;
}

.article-content ul,
.article-content ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content li {
  margin-bottom: 8px;
  line-height: 1.7;
  color: var(--charcoal);
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14px;
}

.article-content table th {
  text-align: left;
  padding: 12px 16px;
  background: var(--cream);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: var(--border-medium);
}

.article-content table td {
  padding: 12px 16px;
  border-bottom: var(--border-soft);
  color: var(--charcoal);
}

.article-checklist {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 40px 0;
}

.article-checklist h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
}

.article-checklist ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-checklist li {
  padding: 10px 0;
  border-bottom: var(--border-soft);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--charcoal);
  line-height: 1.6;
}

.article-checklist li:last-child {
  border-bottom: none;
}

.article-checklist li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid var(--signal);
  border-radius: 4px;
  margin-top: 2px;
}

.article-sources {
  border-top: var(--border-soft);
  padding: 32px 0;
  margin-bottom: 32px;
}

.article-sources h3 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Space Mono', monospace;
  margin-bottom: 16px;
  color: var(--grey);
}

.article-sources ul {
  list-style: none;
  padding: 0;
}

.article-sources li {
  margin-bottom: 8px;
}

.article-sources a {
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--faint);
  transition: all 0.2s var(--ease-out);
}

.article-sources a:hover {
  color: var(--signal);
  border-color: var(--signal);
}

.article-cta {
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 36px 40px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.article-cta p {
  margin: 0;
  font-size: 16px;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  font-style: italic;
}

.article-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--signal);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  align-self: flex-start;
  transition: opacity 0.15s;
}

.article-cta a:hover {
  opacity: 0.88;
  text-decoration: none;
}

.article-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  border-top: var(--border-soft);
  gap: 24px;
}

.article-nav a {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-nav a:hover {
  color: var(--signal);
}

.article-nav .next {
  margin-left: auto;
  text-align: right;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  /* General: more lateral padding so text doesn't hit edges */
  .container, .container-narrow, .container-wide {
    padding: 0 28px;
  }

  .grid-2, .grid-3, .vs-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 80px 0 60px;
  }

  .icon-float {
    display: none;
  }

  .wavy-bg-decoration {
    display: none;
  }

  .section-wave-top::before,
  .section-wave-bottom::after {
    display: none;
  }

  .stat-grid.divided > div:not(:last-child)::after {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* All hero CTA children stretch to same width */
  .hero-ctas .cta-with-annotation {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .hero-ctas .btn {
    font-size: 11px;
    letter-spacing: 1px;
    padding: 14px 20px;
    white-space: nowrap;
    width: 100%;
    box-sizing: border-box;
  }

  .btn {
    justify-content: center;
    text-align: center;
  }

  /* ===== NAV MOBILE ===== */
  /* Layout: logo left, hamburger center, CTA right */
  .nav {
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-logo { order: 1; }
  .nav-hamburger { order: 2; display: flex; }
  .nav-right { order: 3; display: flex; align-items: center; }

  /* Hide "Brewed in Pixels" text, make isotipo bigger */
  .nav-logo-text {
    display: none;
  }

  .nav-logo-icon {
    width: 40px;
    height: 40px;
  }

  /* Hide only nav links, keep CTA visible */
  .nav-right .nav-link {
    display: none;
  }

  .nav-right .nav-cta {
    font-size: 10px;
    padding: 8px 16px;
    letter-spacing: 0.8px;
  }

  .nav-right .nav-lang {
    font-size: 10px;
    padding: 5px 10px;
    margin-left: 8px;
  }

  /* When mobile menu is open, hide CTA + lang from header — they're already in the overlay */
  nav.menu-open .nav-right .nav-cta,
  nav.menu-open .nav-right .nav-lang {
    display: none !important;
  }

  /* Mobile menu: flush against nav, full screen overlay */
  .nav-mobile {
    top: 0;
    padding-top: 80px;
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 40px;
    gap: 24px;
    text-align: center;
    align-items: center;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
    background: var(--white);
    justify-content: center;
  }

  .nav-mobile .nav-link {
    font-size: 20px;
    padding: 4px 0;
  }

  .nav-mobile .btn {
    margin-top: 12px;
    width: 100%;
    max-width: 280px;
  }

  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .step {
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }

  .step-number {
    font-size: 32px;
  }

  /* Hide background sprites on mobile */
  .sprite-bg {
    display: none;
  }

  .sprite-accent {
    opacity: 0.08;
  }

  .annotation {
    display: none;
  }

  .cta-annotation {
    display: none;
  }

  .video-card-play {
    width: 44px;
    height: 44px;
  }

  .video-card-play svg {
    width: 16px;
    height: 16px;
  }

  .video-card-overlay {
    padding: 16px;
  }

  .app-card {
    flex-direction: column;
  }

  .contact-option {
    padding: 24px;
  }

  .quote-text {
    font-size: 22px;
  }

  /* Sobre Nosotros: text first, image after */
  .about-story {
    flex-direction: column-reverse !important;
  }

  .about-story .about-photo {
    align-self: center;
    margin-bottom: 16px;
  }

  /* Guide pages */
  .guide-hero {
    padding: 100px 0 48px;
  }

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

  .article-breadcrumb {
    padding-top: 80px;
  }

  .article-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-nav .next {
    margin-left: 0;
  }

  /* Footer: stack 3-column inline grid to single column on mobile */
  .footer > div {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Reveal scroll-animated elements immediately on mobile — no blank content */
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Testimonials: prevent body from stretching + keep accent/author pinned to bottom */
  .testimonial-body {
    flex: none;
  }
  .testimonial-accent {
    margin-top: 20px;
  }

  /* FAQ card inner padding: 48px sides is too wide on mobile */
  .faq-card-inner {
    padding: 40px 20px !important;
  }

  /* Calculator wrapper: reduce horizontal padding on mobile */
  .calc-wrapper {
    padding: 28px 20px !important;
  }
}

/* ========================================
   POLISH & ACCESSIBILITY
   Sources: make-interfaces-feel-better +
            ui-ux-pro-max + web-interface-guidelines
======================================== */

/* 1. Typography — balance headings, prevent orphans in body */
h1, h2, h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}

/* 2. Tabular numbers — prevents layout shift on animated stat counters */
.stat-number {
  font-variant-numeric: tabular-nums;
}

/* 3. Focus-visible ring — keyboard / accessibility */
:focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
:focus:not(:focus-visible) {
  outline: none;
}

/* 4. Subtle image outlines — consistent depth on app icons */
.app-card-icon img {
  outline: 1px solid rgba(0, 0, 0, 0.08);
  outline-offset: -1px;
}

/* 5. Fix transition:all → only compositable properties (better perf) */
.btn {
  transition-property: transform, box-shadow, background-color, color, border-color;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease-out);
}
.card-glass {
  transition-property: transform, box-shadow, border-color;
  transition-duration: 0.4s;
  transition-timing-function: var(--ease-out);
}
.card {
  transition-property: transform, box-shadow;
  transition-duration: 0.3s;
  transition-timing-function: var(--ease-out);
}
.nav-cta {
  transition-property: transform, box-shadow, background-color, color;
  transition-duration: 0.25s;
  transition-timing-function: var(--ease-out);
}

/* 6. Scale on press — tactile feedback (scale(0.97) per make-interfaces spec) */
.btn-primary:active {
  transform: translateY(2px) scale(0.97);
}
.btn-secondary:active {
  transform: translateY(1px) scale(0.97);
}

/* 7. Problem grid — stack to 1 column on mobile */
@media (max-width: 768px) {
  .problem-grid {
    grid-template-columns: 1fr !important;
  }
}

/* 8. Reduced motion — respect system preference */

/* ========================================
   CTA SIGNAL BOX — Orange bottom CTA
======================================== */
@media (max-width: 900px) {
  .cta-signal-box {
    padding: 64px 48px !important;
  }
}
@media (max-width: 640px) {
  .cta-signal-box {
    padding: 48px 28px !important;
    border-radius: 16px !important;
  }
}
@media (max-width: 480px) {
  .cta-signal-box {
    padding: 40px 20px !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  /* Reveal scroll-animated elements immediately */
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  /* Pause marquee */
  .marquee-track {
    animation: none !important;
    display: block;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
    letter-spacing: -1px;
  }

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

  /* Typography hierarchy: H1 must always be larger than H2/H3 on mobile */
  h1 {
    font-size: 36px !important;
    letter-spacing: -1.5px !important;
  }
  h2 {
    font-size: 28px !important;
    letter-spacing: -0.8px !important;
  }
  h3 {
    font-size: 18px !important;
    letter-spacing: -0.3px !important;
  }
}




/* ========================================
   GLOBAL MOBILE SPACING — consistent padding
   Ensures all sections/containers feel uniform
======================================== */
@media (max-width: 768px) {

  /* Stat grid cells: reduce horizontal padding so text has room */
  .stat-grid.divided > div {
    padding: 24px 16px !important;
  }

  /* Restore testimonial section side padding (was removed by earlier fix) */
  section[style*="padding:120px"] {
    padding-top: 64px !important;
  }

  /* FAQ card inner: consistent on all pages */
  .faq-card-inner {
    padding: 40px 20px !important;
  }

  /* Package card split: equal padding on mobile */
  .package-card-split > div {
    padding: 28px 20px !important;
  }

  /* Pricing nudge sections */
  .pricing-nudge {
    padding: 40px 20px !important;
  }

  /* Booking CTA + other inline padding sections */
  [style*="padding:80px 40px"],
  [style*="padding:56px 64px"] {
    padding: 40px 20px !important;
  }

  /* CTA buttons: +2px font on mobile, consistent size */
  .btn-primary {
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
    padding: 14px 20px !important;
  }

  .btn-secondary {
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
    padding: 14px 20px !important;
  }

  /* h2 inline font-size overrides: force consistent size */
  h2[style*="font-size"] {
    font-size: 28px !important;
    letter-spacing: -0.8px !important;
  }

  /* ROI calculator section padding */
  #roi-calculator {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  /* Calculator result cards: internal padding when stacked in 1 column */
  .calc-grid-3 > div {
    padding: 20px 16px !important;
  }

  /* Marquee text: smaller than H2 on mobile */
  .marquee-track span {
    font-size: 10px !important;
    letter-spacing: 2px !important;
  }

  /* White-space nowrap: allow H1/H2 to wrap naturally on mobile */
  h1 span[style*="white-space"],
  h2[style*="white-space"] {
    white-space: normal !important;
  }

  /* H2 base size bump on mobile (over the 480px 24px rule) */
  h2 {
    font-size: 28px !important;
    letter-spacing: -0.8px !important;
  }
}

/* ========================================
   REVAMP PAGE
======================================== */

/* Hero */
.rvmp-hero {
  padding: 140px 24px 80px;
  background: var(--paper);
  text-align: center;
  position: relative;
}

.rvmp-hero-inner {
  max-width: 740px;
  margin: 0 auto;
}

.rvmp-availability {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  margin-bottom: 32px;
}

.rvmp-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22C55E;
  animation: rvmp-pulse 2s ease-in-out infinite;
}

@keyframes rvmp-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.rvmp-hero h1 {
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--ink);
}

.rvmp-accent {
  color: var(--signal);
  position: relative;
}

.rvmp-hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--charcoal);
  max-width: 520px;
  margin: 0 auto;
}

/* Service Tabs */
.rvmp-services {
  padding: 0 24px 80px;
  background: var(--paper);
}

.rvmp-services-inner {
  max-width: 900px;
  margin: 0 auto;
}

.rvmp-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.rvmp-tab {
  font-family: 'Space Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: var(--border-medium);
  background: var(--white);
  color: var(--charcoal);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
}

.rvmp-tab:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.rvmp-tab.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Panels */
.rvmp-panel {
  display: none;
}

.rvmp-panel.active {
  display: block;
}

/* Service Card */
.rvmp-card {
  background: var(--white);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.rvmp-card-header {
  padding: 40px 40px 24px;
  border-bottom: var(--border-soft);
}

.rvmp-delivery {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--signal);
  background: var(--signal-dim);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.rvmp-popular {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--ink);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
  margin-left: 8px;
}

.rvmp-card-header h3 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  color: var(--ink);
}

.rvmp-card-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}

.rvmp-card-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.rvmp-card-col {
  padding: 32px 40px;
}

.rvmp-card-col:first-child {
  border-right: var(--border-soft);
}

.rvmp-card-col h4 {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 16px;
}

.rvmp-card-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rvmp-card-col li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--charcoal);
  padding-left: 20px;
  position: relative;
}

.rvmp-card-col li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--signal);
}

.rvmp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-top: var(--border-soft);
  background: rgba(250, 248, 245, 0.5);
}

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

.rvmp-amount {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--ink);
}

.rvmp-urgent {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--grey);
}

.rvmp-cta-btn {
  padding: 14px 28px !important;
  font-size: 14px !important;
}

/* 3-Step Process */
.rvmp-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rvmp-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: var(--border-soft);
}

.rvmp-step:last-child {
  border-bottom: none;
}

.rvmp-step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: 'Space Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvmp-step-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.rvmp-step-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Why Revamp - Reasons */
.rvmp-reasons {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rvmp-reason {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 0;
  border-bottom: var(--border-soft);
}

.rvmp-reason:last-child {
  border-bottom: none;
}

.rvmp-reason-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--signal-dim);
  color: var(--signal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.rvmp-reason h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}

.rvmp-reason p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Proof Cards */
.rvmp-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rvmp-proof-card {
  background: var(--paper);
  border: var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}

.rvmp-proof-metric {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--signal);
  margin-bottom: 8px;
}

.rvmp-proof-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.rvmp-proof-source {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--grey);
}

/* FAQ */
.rvmp-faq {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rvmp-faq-item {
  border-bottom: var(--border-soft);
  padding: 20px 0;
}

.rvmp-faq-item:last-child {
  border-bottom: none;
}

.rvmp-faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.rvmp-faq-item summary::-webkit-details-marker {
  display: none;
}

.rvmp-faq-item summary::after {
  content: '+';
  font-family: 'Space Mono', monospace;
  font-size: 20px;
  color: var(--grey);
  flex-shrink: 0;
  transition: transform 0.2s var(--ease-out);
}

.rvmp-faq-item[open] summary::after {
  content: '\2212';
  color: var(--signal);
}

.rvmp-faq-item p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--charcoal);
  padding-top: 12px;
  padding-right: 40px;
}


/* ========================================
   REVAMP PAGE - RESPONSIVE
======================================== */
@media (max-width: 768px) {
  .rvmp-hero {
    padding: 120px 20px 60px;
  }


  .rvmp-hero-sub {
    font-size: 15px;
  }

  .rvmp-tabs {
    gap: 6px;
  }

  .rvmp-tab {
    font-size: 11px;
    padding: 8px 14px;
  }

  .rvmp-card-header {
    padding: 28px 24px 20px;
  }

  .rvmp-card-body {
    grid-template-columns: 1fr;
  }

  .rvmp-card-col:first-child {
    border-right: none;
    border-bottom: var(--border-soft);
  }

  .rvmp-card-col {
    padding: 24px;
  }

  .rvmp-card-footer {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    align-items: flex-start;
  }

  .rvmp-cta-btn {
    width: 100%;
    text-align: center;
  }

  .rvmp-proof-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .rvmp-step {
    gap: 16px;
  }

  .rvmp-step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* ========================================
   ROTATE PHONE HINT (mobile only)
======================================== */
.rotate-hint {
  display: none;
}
@media (max-width: 768px) {
  .rotate-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grey);
    background: rgba(10,10,10,0.04);
    border-radius: 100px;
    padding: 5px 10px;
    margin-top: 8px;
    pointer-events: none;
  }
}
