/* ============================================================
   WEB-O-RAMA — THE MAGIC WEBSITE MAKER
   Main Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   CSS VARIABLES — TECHNICOLOR MODE (default)
   ------------------------------------------------------------ */
:root {
  /* Colors */
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --text: #F0EDE6;
  --text-dim: #999990;
  --c1: #E8272A;
  --c2: #F5C400;
  --c3: #1A54C4;
  --c4: #2BAD4E;
  --c5: #9B3FC8;
  --accent: #F5C400;
  --accent-glow: rgba(245,196,0,0.3);
  --border: rgba(240,237,230,0.1);
  --badge-bg: #F5C400;
  --badge-text: #0a0a0a;
  --btn-bg: #E8272A;
  --btn-text: #ffffff;
  --btn-hover: #F5C400;
  --btn-hover-text: #0a0a0a;

  /* Monitor */
  --monitor-sq: #1A54C4;
  --bubble-left-top: #e8e4dc;
  --bubble-left-bot: #b8b4ac;
  --bubble-right-top: #a8d4f0;
  --bubble-right-bot: #6aaed8;

  /* Type scale */
  --text-xs:   11px;   /* labels, tags, nav, monitor labels */
  --text-sm:   14px;   /* secondary UI, badge text, footer */
  --text-base: 18px;   /* body copy, card text */
  --text-md:   20px;   /* lead paragraphs, page hero sub */
  --text-lg:   24px;   /* section labels, sub-headings */
  --text-ui:   13px;   /* buttons, CTA */
}

body.neon {
  --bg: #0a0a0a;
  --bg-card: #0d0d14;
  --bg-card2: #0a0a12;
  --text: #E0E0E0;
  --text-dim: #888898;
  --c1: #00F5FF;
  --c2: #FF00C8;
  --c3: #39FF14;
  --c4: #4D4DFF;
  --c5: #FF3F8E;
  --accent: #00F5FF;
  --accent-glow: rgba(0,245,255,0.25);
  --border: rgba(0,245,255,0.12);
  --badge-bg: #FF6600;
  --badge-text: #ffffff;
  --btn-bg: #00F5FF;
  --btn-text: #0a0a0a;
  --btn-hover: #FF6600;
  --btn-hover-text: #ffffff;

  --monitor-sq: #4D4DFF;
  --bubble-left-top: #d0cce0;
  --bubble-left-bot: #9890b0;
  --bubble-right-top: #a0f0f8;
  --bubble-right-bot: #50d0e8;
}

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

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  transition: background 0.4s ease, color 0.4s ease;
}

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

/* ------------------------------------------------------------
   MODE TOGGLE
   ------------------------------------------------------------ */
.mode-toggle {
  position: fixed;
  top: 18px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.mode-label {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  transition: color 0.4s;
  user-select: none;
}

.toggle-track {
  width: 42px;
  height: 22px;
  background: var(--bg-card2);
  border: 1.5px solid var(--accent);
  border-radius: 11px;
  position: relative;
  transition: border-color 0.4s;
  box-shadow: 0 0 8px var(--accent-glow);
}

.toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform 0.3s ease, background 0.4s;
}

body.neon .toggle-thumb { transform: translateX(20px); }

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,10,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0 40px;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo */
.logo {
  font-family: 'Boogaloo', cursive;
  font-size: 2rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
}

.logo-letter, .footer-logo .logo-letter {
  display: inline-block;
  transition: color 0.4s, transform 0.2s;
}
.logo-letter:hover { transform: scale(1.2) rotate(-3deg); }

.logo-dash, .footer-logo .logo-dash {
  color: var(--text-dim);
  margin: 0 1px;
}

.logo-letter.c1, .footer-logo .logo-letter.c1 { color: var(--c1); }
.logo-letter.c2, .footer-logo .logo-letter.c2 { color: var(--c2); }
.logo-letter.c3, .footer-logo .logo-letter.c3 { color: var(--c3); }
.logo-letter.c4, .footer-logo .logo-letter.c4 { color: var(--c4); }
.logo-letter.c5, .footer-logo .logo-letter.c5 { color: var(--c5); }

/* Nav */
.site-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */
.hero {
  padding: 72px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Pre-headline */
.hero-pre {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(var(--text-xs), 1.2vw, var(--text-sm));
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--text);
  margin-bottom: 12px;
  animation: fadeDown 0.5s ease both;
  text-transform: uppercase;
}

/* Giant wordmark */
.hero-wordmark {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  animation: fadeDown 0.55s 0.05s ease both;
}

.hero-wordmark .logo-letter,
.hero-wordmark .logo-dash {
  display: inline-block;
  transition: color 0.4s, transform 0.2s;
}

.hero-wordmark .logo-letter:hover {
  transform: scale(1.15) rotate(-4deg);
}

.hero-wordmark .logo-dash {
  color: var(--text-dim);
  margin: 0 2px;
}

/* Tagline under wordmark */
.hero-tagline {
  font-family: 'Oxanium', sans-serif;
  font-size: clamp(var(--text-sm), 1.4vw, var(--text-base));
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--accent);
  margin-bottom: 56px;
  animation: fadeDown 0.6s 0.1s ease both;
  transition: color 0.4s;
}

/* Machine row */
.hero-machine {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 44px;
  max-width: 960px;
  animation: fadeUp 0.7s 0.15s ease both;
}

/* ---- MONITOR ---- */
.monitor-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin: 0 -18px;
  z-index: 1;
  position: relative;
}

/* Solid bold colored square */
.monitor-square {
  width: 220px;
  height: 180px;
  background: var(--monitor-sq);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 0 rgba(0,0,0,0.35),
    0 10px 30px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background 0.4s;
  position: relative;
}

/* Bubble / curved glass face */
.monitor-bubble {
  width: 172px;
  height: 140px;
  clip-path: path('M 10,0 Q 86,-10 162,0 Q 172,70 162,140 Q 86,150 10,140 Q 0,70 10,0 Z');
  overflow: hidden;
  position: relative;
}

/* Left bubble — off-white, lit from top */
.bubble-left {
  background: radial-gradient(ellipse 90% 60% at 50% 10%,
    var(--bubble-left-top) 0%,
    var(--bubble-left-bot) 100%);
  transition: background 0.4s;
}

/* Right bubble — light blue, lit from top */
.bubble-right {
  background: radial-gradient(ellipse 90% 60% at 50% 10%,
    var(--bubble-right-top) 0%,
    var(--bubble-right-bot) 100%);
  transition: background 0.4s;
}

/* Glass sheen overlay */
.monitor-bubble::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 8px;
  width: 55%;
  height: 36%;
  background: linear-gradient(135deg, rgba(255,255,255,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Monitor label below square */
.monitor-label {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  text-transform: uppercase;
  transition: color 0.4s;
}

.monitor-label.lit {
  color: var(--accent);
  text-shadow: 0 0 10px var(--accent-glow);
}

/* ---- MOCKUP CONTENT inside bubbles ---- */
.mockup-before, .mockup-after {
  width: 100%;
  height: 100%;
  padding: 10px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mockup-nav-bar {
  height: 10px;
  border-radius: 2px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}

.mockup-nav-bar.empty {
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.1);
}

.mockup-nav-bar.filled { background: rgba(26,84,196,0.7); }
body.neon .mockup-nav-bar.filled { background: rgba(77,77,255,0.7); }

.nav-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

.nav-links-mock {
  margin-left: auto;
  display: flex;
  gap: 3px;
}

.nav-links-mock span {
  display: block;
  width: 12px;
  height: 2px;
  background: rgba(255,255,255,0.6);
  border-radius: 1px;
}

.mockup-hero-blank {
  flex: 1;
  background: rgba(0,0,0,0.06);
  border: 1px dashed rgba(0,0,0,0.15);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursor-blink {
  color: rgba(0,0,0,0.25);
  font-size: var(--text-sm);
  font-family: monospace;
  animation: blink 1.2s step-end infinite;
}

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

.mockup-hero-filled {
  flex: 1;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px 6px;
  justify-content: center;
}

.mockup-headline-line {
  height: 5px;
  background: rgba(0,0,0,0.35);
  border-radius: 2px;
  width: 80%;
}

.mockup-headline-line.short { width: 55%; opacity: 0.6; }

.mockup-cta-btn {
  width: 40px;
  height: 8px;
  background: rgba(232,39,42,0.75);
  border-radius: 2px;
  margin-top: 2px;
}

.mockup-blocks-row { display: flex; gap: 4px; }

.mockup-block {
  flex: 1;
  height: 20px;
  border-radius: 2px;
}

.mockup-block.empty {
  background: rgba(0,0,0,0.07);
  border: 1px dashed rgba(0,0,0,0.12);
}

.mockup-block.filled.c1 { background: rgba(232,39,42,0.65); }
.mockup-block.filled.c2 { background: rgba(245,196,0,0.65); }
.mockup-block.filled.c3 { background: rgba(26,84,196,0.65); }

/* CENTER BADGE */
.center-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  z-index: 2;
  position: relative;
}

.badge-outer {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--badge-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.08),
    0 0 40px var(--accent-glow),
    0 8px 32px rgba(0,0,0,0.5);
  animation: spin-glow 4s ease-in-out infinite alternate;
  transition: background 0.4s;
}

@keyframes spin-glow {
  from { box-shadow: 0 0 0 6px rgba(255,255,255,0.08), 0 0 30px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.5); }
  to   { box-shadow: 0 0 0 6px rgba(255,255,255,0.12), 0 0 60px var(--accent-glow), 0 8px 32px rgba(0,0,0,0.5); }
}

.badge-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--badge-bg);
  border: 2px solid rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1px;
  padding: 12px;
  transition: background 0.4s;
}

.badge-top {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--badge-text);
  text-transform: uppercase;
}

.badge-domain {
  font-family: 'Boogaloo', cursive;
  font-size: 2.4rem;
  color: var(--badge-text);
  line-height: 1;
  margin: 2px 0;
}

.badge-mid {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  color: var(--badge-text);
  opacity: 0.85;
}

.badge-colorful {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--badge-text);
  letter-spacing: 0.05em;
}

.badge-bottom {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-xs);
  color: var(--badge-text);
  opacity: 0.85;
}

.badge-lights { display: flex; gap: 6px; }

/* Blinking lights */
.bl {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.bl.c1 { background: var(--c1); animation: blink-light 1.1s ease-in-out infinite; }
.bl.c2 { background: var(--c2); animation: blink-light 1.1s 0.2s ease-in-out infinite; }
.bl.c3 { background: var(--c3); animation: blink-light 1.1s 0.4s ease-in-out infinite; }
.bl.c4 { background: var(--c4); animation: blink-light 1.1s 0.6s ease-in-out infinite; }
.bl.c5 { background: var(--c5); animation: blink-light 1.1s 0.8s ease-in-out infinite; }

@keyframes blink-light {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.8); }
}

/* Hero sub text */
.hero-sub {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--text-dim);
  margin-bottom: 28px;
  animation: fadeUp 0.7s 0.2s ease both;
}

/* CTA Button */
.hero-cta {
  display: inline-block;
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-ui);
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 16px 40px;
  background: var(--btn-bg);
  color: var(--btn-text);
  border-radius: 2px;
  transition: background 0.25s, color 0.25s, transform 0.15s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  animation: fadeUp 0.7s 0.3s ease both;
}

.hero-cta:hover {
  background: var(--btn-hover);
  color: var(--btn-hover-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 20px var(--accent-glow);
}

/* COUNTDOWN STRIP */
.countdown-strip { margin-top: 56px; }

.color-squares {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.cs {
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  animation: pulse-square 2s ease-in-out infinite;
}

.cs.c1 { background: var(--c1); animation-delay: 0s; }
.cs.c2 { background: var(--c2); animation-delay: 0.15s; }
.cs.c3 { background: var(--c3); animation-delay: 0.3s; }
.cs.c4 { background: var(--c4); animation-delay: 0.45s; }
.cs.c5 { background: var(--c5); animation-delay: 0.6s; }

@keyframes pulse-square {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.7); }
}

/* ------------------------------------------------------------
   PROCESS STRIP
   ------------------------------------------------------------ */
.process-strip {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.step-num {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.step-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-glow);
}

.step-dot.c1 { background: var(--c1); }
.step-dot.c2 { background: var(--c2); }
.step-dot.c3 { background: var(--c3); }
.step-dot.c4 { background: var(--c4); }
.step-dot.c5 { background: var(--c5); }

.step-label {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text);
  line-height: 1.4;
}

.process-arrow {
  color: var(--accent);
  font-size: var(--text-xs);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ------------------------------------------------------------
   VALUE SECTION
   ------------------------------------------------------------ */
.value-section {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.2s;
}

.value-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.value-icon.c1 { color: var(--c1); }
.value-icon.c2 { color: var(--c2); }
.value-icon.c3 { color: var(--c3); }

.value-card-title {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 16px;
}

.value-card p {
  font-size: var(--text-base);
  color: var(--text-dim);
  line-height: 1.7;
}

/* ------------------------------------------------------------
   CTA BANNER
   ------------------------------------------------------------ */
.cta-banner {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 40px;
  text-align: center;
}

.cta-banner-lights {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.cta-banner-lights:last-child { margin-bottom: 0; margin-top: 8px; }

.cta-banner-inner {
  padding: 32px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-banner-text {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text);
  letter-spacing: 0.05em;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 40px 40px;
  text-align: center;
}

.footer-logo {
  font-family: 'Boogaloo', cursive;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-tagline {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--text-dim);
  margin-bottom: 32px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-nav a {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: var(--text-sm);
  color: var(--text-dim);
  opacity: 0.5;
}

/* ------------------------------------------------------------
   PAGE HERO (inner pages)
   ------------------------------------------------------------ */
.page-hero {
  padding: 80px 40px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, var(--accent-glow), transparent 70%);
  pointer-events: none;
}

.page-hero-tag {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
}

.page-hero-title {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.page-hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-md);
  color: var(--text-dim);
  max-width: 560px;
  margin: 20px auto 0;
  line-height: 1.7;
}

/* ------------------------------------------------------------
   CONTENT SECTIONS (inner pages)
   ------------------------------------------------------------ */
.content-section {
  padding: 80px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.content-section + .content-section {
  border-top: 1px solid var(--border);
}

.content-section h2 {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--text);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}

.content-section p {
  font-size: var(--text-base);
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 720px;
}

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

/* Services list */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  padding: 28px 24px;
  border-radius: 0 4px 4px 0;
  transition: border-color 0.3s, transform 0.2s;
}

.service-item:hover {
  transform: translateX(4px);
  border-left-color: var(--c1);
}

.service-item:nth-child(2) { border-left-color: var(--c2); }
.service-item:nth-child(3) { border-left-color: var(--c3); }
.service-item:nth-child(4) { border-left-color: var(--c4); }
.service-item:nth-child(5) { border-left-color: var(--c5); }
.service-item:nth-child(6) { border-left-color: var(--c1); }
.service-item:nth-child(7) { border-left-color: var(--c2); }
.service-item:nth-child(8) { border-left-color: var(--c3); }

.service-item-title {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 8px;
}

.service-item p {
  font-size: var(--text-base);
  color: var(--text-dim);
  margin: 0;
}

/* Contact page */
.contact-main {
  padding: 80px 40px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.phone-display {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.phone-label {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.phone-number {
  font-family: 'Boogaloo', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--text);
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.phone-number:hover { color: var(--accent); }

.phone-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: var(--text-sm);
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.contact-details {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-detail-row {
  font-family: 'Oxanium', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-dim);
}

.contact-detail-row span {
  color: var(--accent);
  margin-right: 8px;
}

/* ------------------------------------------------------------
   ANIMATIONS
   ------------------------------------------------------------ */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 768px) {
  .hero-machine { flex-direction: column; gap: 28px; }
  .hero-wordmark { font-size: clamp(3rem, 16vw, 5rem); }
  .monitor-wrap { margin: 0; }
  .monitor-square { width: 180px; height: 148px; }
  .monitor-bubble { width: 140px; height: 114px; }
  .center-badge { order: -1; }
  .badge-outer { width: 150px; height: 150px; }
  .badge-inner { width: 124px; height: 124px; }
  .badge-domain { font-size: 1.9rem; }
  .value-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-strip { gap: 12px; }
  .process-arrow { transform: rotate(90deg); }
  .site-nav { gap: 16px; }
  .header-inner { padding: 0; }
  .mode-toggle { top: 14px; right: 16px; }
}
