/* ── CSS VARIABLES ────────────────────────────────────────────────────────── */

:root {
  --blue: #4B9CD3;
  --blue-dark: #2d7ab8;
  --blue-light: #dceef9;
  --orange: #E8531D;
  --orange-light: #fde8df;
  --surface: #FFFFFF;
  --surface-alt: #F5F7FA;
  --structural: #C0C8D2;
  --text-primary: #111827;
  --text-muted: #6B7280;
  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-code: 'JetBrains Mono', monospace;
}

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--surface);
  overflow-x: hidden;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────────────────────── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

p {
  line-height: 1.6;
}

code, pre {
  font-family: var(--font-code);
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────────────────────── */

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* ── SITE HEADER ──────────────────────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--orange);
}

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

.site-header__logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.75rem;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-header__logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}

.site-nav__link:hover {
  color: var(--text-primary);
  background: var(--surface-alt);
}

.site-nav__link--active {
  color: var(--text-primary);
  background: var(--surface-alt);
}

.site-nav__link--cta {
  background: var(--orange);
  color: #fff;
  font-weight: 600;
}

.site-nav__link--cta:hover {
  background: #d04418;
  color: #fff;
}

/* ── SITE FOOTER ──────────────────────────────────────────────────────────── */

.site-footer {
  background: #0b1120;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.site-footer__brand-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.04em;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 12px;
}

.site-footer__brand-logo span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--orange);
  border-radius: 6px;
  font-size: 0.9rem;
}

.site-footer__tagline {
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.site-footer__command {
  font-family: var(--font-code);
  font-size: 0.78rem;
  color: var(--orange);
  background: rgba(232, 83, 29, 0.1);
  border: 1px solid rgba(232, 83, 29, 0.2);
  border-radius: 6px;
  padding: 6px 12px;
  display: inline-block;
}

.site-footer__col-title {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.site-footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__nav a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s;
  font-size: 0.9rem;
}

.site-footer__nav a:hover {
  color: #fff;
}

.site-footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.site-footer__bottom-note {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-footer__bottom-note .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

/* ── HERO ─────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: 30%;
  width: 700px;
  height: 700px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 48px 120px 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-code);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange);
  background: rgba(232, 83, 29, 0.15);
  border: 1px solid rgba(232, 83, 29, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 28px;
}

.hero__title-line--orange { color: var(--orange); }
.hero__title-line--blue { color: var(--blue); }

.hero__body {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 440px;
  margin-bottom: 44px;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.hero__cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 24px rgba(232, 83, 29, 0.4);
}

.hero__cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 83, 29, 0.5);
}

.hero__cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-family: var(--font-code);
}

.hero__cta-secondary code {
  font-family: var(--font-code);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 2px 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
}

.hero__mascot-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 60px 0;
}

.hero__mascot-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 360px;
  height: 380px;
}

.hero__mascot-ring {
  position: absolute;
  border-radius: 50%;
}

.hero__mascot-ring--outer {
  width: 460px;
  height: 460px;
  border: 2px solid rgba(75, 156, 211, 0.2);
}

.hero__mascot-ring--mid {
  width: 360px;
  height: 360px;
  border: 1.5px dashed rgba(232, 83, 29, 0.25);
  animation: spin 40s linear infinite;
}

.hero__mascot-ring--inner {
  width: 260px;
  height: 260px;
  background: rgba(75, 156, 211, 0.08);
  border: 1px solid rgba(75, 156, 211, 0.15);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero__mascot-svg {
  position: relative;
  z-index: 2;
  width: 220px;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(75, 156, 211, 0.3)) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.hero__mascot-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  z-index: 1;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 100px;
  box-shadow: 0 4px 16px rgba(232, 83, 29, 0.4);
  white-space: nowrap;
  transform: rotate(-6deg);
}

.hero__mascot-label {
  position: absolute;
  top: 60px;
  left: -20px;
  z-index: 1;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-code);
  font-size: 0.72rem;
  padding: 6px 12px;
  border-radius: 6px;
  transform: rotate(4deg);
}

/* ── HOW IT WORKS ─────────────────────────────────────────────────────────── */

.how-it-works {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--orange) 0px,
    var(--orange) 40px,
    var(--blue) 40px,
    var(--blue) 80px,
    transparent 80px,
    transparent 120px
  );
}

.how-it-works__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

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

.section-header--centered {
  text-align: center;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3.5vw, 3rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}

.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-title strong {
  font-style: normal;
  color: var(--orange);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 520px;
}

.section-header--centered .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--blue), transparent);
  transform: translateX(-50%);
}

.step {
  padding: 40px;
  position: relative;
}

.step:nth-child(odd) {
  padding-right: 64px;
  text-align: right;
}

.step:nth-child(even) {
  padding-left: 64px;
}

.step::after {
  content: '';
  position: absolute;
  top: 48px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface-alt);
  border: 3px solid var(--orange);
  z-index: 2;
}

.step:nth-child(odd)::after { right: -7px; }
.step:nth-child(even)::after { left: -7px; }

.step--blue::after { border-color: var(--blue); }

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.step--orange .step__number {
  background: var(--orange);
  color: #fff;
}

.step--blue .step__number {
  background: var(--blue);
  color: #fff;
}

.step:nth-child(odd) .step__number {
  margin-left: auto;
}

.step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.step__body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step__command {
  display: inline-block;
  font-family: var(--font-code);
  font-size: 0.82rem;
  background: var(--text-primary);
  color: var(--orange);
  border-radius: 6px;
  padding: 4px 10px;
  margin-top: 10px;
}

.step:nth-child(odd) .step__command { float: right; }

/* ── FEATURES ─────────────────────────────────────────────────────────────── */

.features {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: 'B2';
  position: absolute;
  top: -40px;
  right: -30px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 28rem;
  color: var(--blue);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.features__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.feature-card {
  background: var(--surface);
  border: 1.5px solid var(--structural);
  border-radius: 16px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
}

.feature-card--orange::before { background: var(--orange); }
.feature-card--blue::before { background: var(--blue); }
.feature-card--split::before {
  background: linear-gradient(90deg, var(--blue) 50%, var(--orange) 50%);
}

.feature-card__watermark {
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 7rem;
  line-height: 1;
  opacity: 0.05;
  letter-spacing: -0.05em;
  pointer-events: none;
  user-select: none;
}

.feature-card--orange .feature-card__watermark { color: var(--orange); }
.feature-card--blue .feature-card__watermark { color: var(--blue); }
.feature-card--split .feature-card__watermark { color: var(--text-primary); }

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card--orange .feature-card__icon { background: var(--orange-light); color: var(--orange); }
.feature-card--blue .feature-card__icon { background: var(--blue-light); color: var(--blue); }
.feature-card--split .feature-card__icon { background: var(--surface-alt); color: var(--text-primary); }

.feature-card__icon svg { width: 22px; height: 22px; stroke-width: 2; }

.feature-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.feature-card__body {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.feature-card--wide {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: #fff;
  padding: 48px;
}

.feature-card--wide::before {
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.feature-card--wide .feature-card__title { color: #fff; }
.feature-card--wide .feature-card__body { color: rgba(255, 255, 255, 0.65); }
.feature-card--wide .feature-card__icon {
  background: rgba(255, 255, 255, 0.1);
  color: var(--orange);
  width: 56px;
  height: 56px;
}

.feature-card--wide .feature-card__watermark { opacity: 0.04; color: #fff; font-size: 10rem; }

.feature-card__code-demo {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 20px 24px;
  font-family: var(--font-code);
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

.feature-card__code-demo .cmd-orange { color: var(--orange); }
.feature-card__code-demo .cmd-blue { color: #7ec8f5; }
.feature-card__code-demo .cmd-muted { color: rgba(255, 255, 255, 0.35); }

/* ── SHOWCASE ─────────────────────────────────────────────────────────────── */

.showcase {
  background: var(--surface-alt);
  position: relative;
  overflow: hidden;
}

.showcase::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 12px,
    rgba(75, 156, 211, 0.06) 12px,
    rgba(75, 156, 211, 0.06) 13px
  );
  pointer-events: none;
}

.showcase__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  position: relative;
  z-index: 1;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.showcase-card:nth-child(2) { margin-top: 40px; }
.showcase-card:nth-child(3) { margin-top: 80px; }

.showcase-card {
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--structural);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.showcase-card__screenshot {
  width: 100%;
  aspect-ratio: 16/10;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--structural);
  border-bottom: 1.5px solid var(--structural);
  position: relative;
  overflow: hidden;
}

.showcase-card__screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__flag {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: var(--font-code);
  font-size: 0.68rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--text-primary);
  color: #fff;
}

.showcase-card__meta {
  padding: 24px 24px 20px;
}

.showcase-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.showcase-card__description {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.showcase-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-code);
  font-size: 0.78rem;
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.showcase-card__link:hover { text-decoration: underline; }
.showcase-card__link svg { width: 12px; height: 12px; }

/* ── CONTENT BLOCKS ───────────────────────────────────────────────────────── */

.content-block {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-block--alt {
  background: var(--surface-alt);
  max-width: none;
  padding: 0;
}

.content-block--alt .content-block__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
}

.content-block__heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.content-block__body {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 680px;
}

.content-block__body p + p {
  margin-top: 1em;
}

.content-block__body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-top: 2.5em;
  margin-bottom: 0.5em;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
}

.content-block__body h3:first-child {
  margin-top: 0;
}

.content-block__body ul,
.content-block__body ol {
  padding-left: 1.5em;
  margin-top: 0.75em;
}

.content-block__body li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.content-block__body code {
  background: rgba(75, 156, 211, 0.12);
  color: var(--blue);
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 0.875em;
}

.content-block__body pre {
  background: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 24px 28px;
  margin: 20px 0;
  overflow-x: auto;
  font-size: 0.85rem;
  line-height: 1.65;
}

.content-block__body pre code {
  background: none;
  color: rgba(255, 255, 255, 0.82);
  padding: 0;
  font-size: inherit;
  border-radius: 0;
}

/* ── PAGE HERO (interior pages) ────────────────────────────────────────────── */

.page-hero {
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 480px;
  height: 480px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.10;
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -140px;
  left: 25%;
  width: 560px;
  height: 560px;
  background: var(--blue);
  border-radius: 50%;
  opacity: 0.07;
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 80px 80px;
}

.page-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-code);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange);
  background: rgba(232, 83, 29, 0.15);
  border: 1px solid rgba(232, 83, 29, 0.3);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.page-hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 720px;
}

.page-hero__title em {
  font-style: normal;
  color: var(--blue);
}

.page-hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.60);
  line-height: 1.6;
  max-width: 560px;
}

/* ── CTA SECTIONS ─────────────────────────────────────────────────────────── */

.submit-prompt {
  background: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.submit-prompt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--orange));
}

.submit-prompt::after {
  content: '';
  position: absolute;
  right: -180px;
  top: -80px;
  width: 500px;
  height: 500px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}

.submit-prompt__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.submit-prompt__eyebrow {
  font-family: var(--font-code);
  font-size: 0.78rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.submit-prompt__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2rem, 3vw, 2.75rem);
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}

.submit-prompt__title span { color: var(--orange); }

.submit-prompt__body {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 32px;
}

.submit-prompt__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(232, 83, 29, 0.4);
}

.submit-prompt__cta:hover {
  background: #d04418;
  transform: translateY(-2px);
}

.submit-prompt__mascot {
  flex-shrink: 0;
  opacity: 0.9;
  filter: drop-shadow(0 8px 32px rgba(75, 156, 211, 0.3));
}

.submit-prompt__mascot img {
  width: 140px;
  height: auto;
  display: block;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232, 83, 29, 0.35);
}

.btn--primary:hover {
  background: #d04418;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232, 83, 29, 0.45);
}

.btn--secondary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(75, 156, 211, 0.3);
}

.btn--secondary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--structural);
}

.btn--ghost:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* ── MASCOT ───────────────────────────────────────────────────────────────── */

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

.mascot-droid {
  display: block;
}

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */

.site-header__menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 0 20px;
  }

  .site-nav {
    display: none;
  }

  .site-nav--open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    padding: 16px;
    border-bottom: 2px solid var(--orange);
    gap: 4px;
  }

  .site-nav--open .site-nav__link {
    width: 100%;
    text-align: center;
    padding: 12px 16px;
  }

  .site-header__menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-primary);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 80px;
  }

  .hero__content {
    padding: 60px 24px 40px;
  }

  .hero__mascot-panel {
    display: none;
  }

  .how-it-works__inner,
  .features__inner,
  .showcase__inner,
  .submit-prompt__inner {
    padding: 64px 24px;
  }

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

  .steps-grid::before {
    display: none;
  }

  .step {
    padding: 24px 0;
    text-align: left;
  }

  .step:nth-child(odd) {
    padding-right: 0;
    text-align: left;
  }

  .step:nth-child(even) {
    padding-left: 0;
  }

  .step::after { display: none; }

  .step:nth-child(odd) .step__number {
    margin-left: 0;
  }

  .step:nth-child(odd) .step__command {
    float: none;
  }

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

  .feature-card--wide {
    grid-column: span 1;
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .showcase-card:nth-child(2),
  .showcase-card:nth-child(3) {
    margin-top: 0;
  }

  .submit-prompt__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .submit-prompt__mascot {
    display: none;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
    padding: 40px 24px 32px;
  }

  .site-footer__bottom {
    padding: 16px 24px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .content-block {
    padding: 64px 24px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .page-hero__inner {
    padding: 120px 24px 60px;
  }
}
