/* ==========================================================================
   Tokens
   ========================================================================== */

:root {
  /* surfaces */
  --bg: #08080B;
  --bg-elevated: #0E0E14;
  --bg-card: rgba(255,255,255,0.03);
  --bg-card-hover: rgba(255,255,255,0.055);
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-strong: rgba(255,255,255,0.07);

  /* borders */
  --border: rgba(255,255,255,0.08);
  --border-bright: rgba(255,255,255,0.16);
  --border-glow: rgba(233,79,55,0.45);

  /* text */
  --text-bright: #FFFFFF;
  --text: #F2F2F4;
  --text-muted: rgba(255,255,255,0.62);
  --text-dim: rgba(255,255,255,0.42);
  --text-faint: rgba(255,255,255,0.28);

  /* brand */
  --coral: #E94F37;
  --coral-bright: #FF6B4D;
  --coral-soft: #FF8A57;
  --coral-glow: rgba(233,79,55,0.45);
  --coral-faint: rgba(233,79,55,0.12);
  --purple: #7C5CFF;
  --purple-bright: #9377FF;
  --purple-glow: rgba(124,92,255,0.35);

  /* gradients */
  --grad-primary: linear-gradient(135deg, #E94F37 0%, #FF8A57 100%);
  --grad-mix: linear-gradient(135deg, #E94F37 0%, #B047C9 50%, #7C5CFF 100%);
  --grad-text: linear-gradient(135deg, #FF8A57 0%, #E94F37 60%, #B047C9 100%);

  /* shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.25);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35), 0 24px 60px rgba(0,0,0,0.25);
  --shadow-glow-coral: 0 0 0 1px rgba(233,79,55,0.4), 0 8px 32px rgba(233,79,55,0.35);
  --shadow-glow-soft: 0 0 0 1px rgba(255,255,255,0.08), 0 8px 32px rgba(0,0,0,0.3);

  /* radii */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* fonts */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* ==========================================================================
   Reset and base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
}

/* Subtle global grain texture */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(circle at 20% 10%, rgba(124,92,255,0.04) 0%, transparent 40%),
                    radial-gradient(circle at 80% 90%, rgba(233,79,55,0.04) 0%, transparent 40%);
}

img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: var(--text); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover { color: var(--coral-bright); }

main { position: relative; z-index: 1; }

/* ==========================================================================
   Typography
   ========================================================================== */

.display {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.05;
  color: var(--text-bright);
  margin: 0 0 24px;
  text-wrap: balance;
}

h1.display, .display--xl { font-size: clamp(40px, 6.5vw, 76px); font-weight: 800; letter-spacing: -0.035em; }
h2.display { font-size: clamp(32px, 4.6vw, 56px); }

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}

.h3 {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--text-bright);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 22px;
  font-family: var(--font-mono);
}
.eyebrow__dot {
  width: 6px; height: 6px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--coral-glow);
}

.mono { font-family: var(--font-mono); font-size: 0.9em; }
.dim { color: var(--text-dim); }
.text-coral { color: var(--coral); }
.text-bright { color: var(--text-bright); font-weight: 600; }

.prose p {
  font-size: 17.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.1em;
  text-wrap: pretty;
}
.prose strong { color: var(--text-bright); font-weight: 600; }

.mt-large { margin-top: 56px; }
.mt-medium { margin-top: 28px; }

/* ==========================================================================
   Icons
   ========================================================================== */

.ico {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.ico--xs { width: 14px; height: 14px; }
.ico--sm { width: 16px; height: 16px; }
.ico--md { width: 22px; height: 22px; }

/* ==========================================================================
   Layout
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
}
.container--narrow { max-width: 800px; }

.section { padding: 120px 0; position: relative; }
.section-head { max-width: 760px; margin-bottom: 64px; }
.section-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--text-muted);
  margin: 0;
  text-wrap: pretty;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .25s ease;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.btn:hover { transform: translateY(-1px); opacity: 1; color: inherit; }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad-primary);
  color: #FFF;
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset, 0 8px 24px rgba(233,79,55,0.35);
}
.btn--primary:hover {
  color: #FFF;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.1) inset, 0 12px 32px rgba(233,79,55,0.55), 0 0 60px rgba(233,79,55,0.25);
}

.btn--glass {
  background: var(--bg-glass);
  color: var(--text-bright);
  border-color: var(--border-bright);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--glass:hover {
  background: var(--bg-glass-strong);
  color: var(--text-bright);
  border-color: rgba(255,255,255,0.28);
}

.btn--block { display: flex; width: 100%; }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--xl { padding: 18px 32px; font-size: 17px; }

/* ==========================================================================
   Pulse dot
   ========================================================================== */

.pulse-dot {
  width: 8px; height: 8px;
  background: var(--coral);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 var(--coral-glow), 0 0 12px var(--coral-glow);
  animation: pulse 2.4s infinite;
}
.pulse-dot--sm { width: 6px; height: 6px; }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(233,79,55,0.55), 0 0 12px rgba(233,79,55,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(233,79,55,0), 0 0 12px rgba(233,79,55,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(233,79,55,0), 0 0 12px rgba(233,79,55,0.4); }
}

/* ==========================================================================
   Sticky bar
   ========================================================================== */

.sticky-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,11,0.78);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.sticky-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.sticky-bar__left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
  overflow: hidden;
}
.sticky-bar__text {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-bar__text strong { color: var(--text-bright); font-weight: 600; }
.sticky-bar__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-primary);
  color: #FFF;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 4px 16px rgba(233,79,55,0.35);
  transition: box-shadow .2s ease, transform .15s ease;
}
.sticky-bar__cta:hover { color: #FFF; opacity: 1; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(233,79,55,0.55); }

@media (max-width: 640px) {
  .sticky-bar__inner { padding: 10px 16px; gap: 10px; }
  .sticky-bar__text { font-size: 12.5px; white-space: normal; text-overflow: clip; }
  .sticky-bar__sep { display: none; }
  .sticky-bar__text .dim { display: block; font-size: 11.5px; }
  .sticky-bar__cta { padding: 7px 12px; font-size: 12px; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: 120px 0 140px;
  overflow: hidden;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.9) 0%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  pointer-events: none;
  will-change: transform;
}
.hero__orb--a {
  width: 600px; height: 600px;
  background: var(--coral);
  top: -200px; right: -100px;
  opacity: 0.35;
  animation: float-a 18s ease-in-out infinite alternate;
}
.hero__orb--b {
  width: 500px; height: 500px;
  background: var(--purple);
  bottom: -150px; left: -100px;
  opacity: 0.3;
  animation: float-b 22s ease-in-out infinite alternate;
}
.hero__orb--c {
  width: 360px; height: 360px;
  background: var(--coral-soft);
  top: 30%; left: 40%;
  opacity: 0.18;
  animation: float-c 26s ease-in-out infinite alternate;
}
@keyframes float-a { from { transform: translate(0,0); } to { transform: translate(-80px, 60px); } }
@keyframes float-b { from { transform: translate(0,0); } to { transform: translate(100px, -50px); } }
@keyframes float-c { from { transform: translate(0,0) scale(1); } to { transform: translate(-50px, -80px) scale(1.15); } }

.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

.hero__inner {
  max-width: 920px;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border-bright);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 28px;
  font-family: var(--font-mono);
  letter-spacing: 0.01em;
}

.hero__sub {
  font-size: 21px;
  line-height: 1.55;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 0 40px;
  text-wrap: pretty;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.trust-strip {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
}
.trust-strip li {
  font-size: 14px;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-strip li .ico { color: var(--coral); }

@media (max-width: 640px) {
  .hero { padding: 64px 0 88px; }
  .hero__sub { font-size: 17px; margin-bottom: 32px; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
  .hero__ctas .btn { width: 100%; }
  .hero__orb--a { width: 380px; height: 380px; }
  .hero__orb--b { width: 320px; height: 320px; }
  .hero__orb--c { width: 240px; height: 240px; }
}

/* ==========================================================================
   Problem section
   ========================================================================== */

.section--problem {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 50%, var(--bg) 100%);
}

.impact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.impact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text-muted);
}
.impact-list li:last-child { border-bottom: none; }
.impact-list li .ico { margin-top: 3px; color: var(--coral); flex-shrink: 0; }

/* ==========================================================================
   Cards (benefits grid)
   ========================================================================== */

.grid { display: grid; gap: 18px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid--3 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, background .2s ease, border-color .2s ease;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, transparent 0%, transparent 60%, rgba(233,79,55,0.4) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}
.card:hover {
  transform: translateY(-2px);
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
}
.card:hover::before { opacity: 1; }

.card p {
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.6;
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--coral-faint);
  border: 1px solid rgba(233,79,55,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-bright);
  margin-bottom: 22px;
  box-shadow: inset 0 0 12px rgba(233,79,55,0.15);
}
.card__icon svg { width: 22px; height: 22px; }

/* ==========================================================================
   Mechanism
   ========================================================================== */

.section--mechanism {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.mechanism-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mech-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.mech-item:last-child { border-bottom: 1px solid var(--border); }
.mech-item__n {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 500;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
  min-width: 64px;
  letter-spacing: -0.02em;
}
.mech-item__body p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.7;
  max-width: 760px;
}

@media (max-width: 640px) {
  .mech-item { grid-template-columns: 1fr; gap: 10px; padding: 28px 0; }
  .mech-item__n { font-size: 30px; }
}

/* ==========================================================================
   Comparison table
   ========================================================================== */

.comparison-table {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.comparison-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr 1.1fr;
  border-bottom: 1px solid var(--border);
}
.comparison-row:last-child { border-bottom: none; }
.comparison-row--head {
  background: rgba(255,255,255,0.025);
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}
.comparison-row--head .cmp-label { color: var(--text-dim); }
.comparison-row--highlight {
  position: relative;
  background: linear-gradient(135deg, rgba(233,79,55,0.07), rgba(124,92,255,0.07));
  border-top: 1px solid var(--coral-glow);
  border-bottom: 1px solid var(--coral-glow);
  box-shadow: 0 0 24px rgba(233,79,55,0.18) inset;
}
.cmp-label, .cmp-cell {
  padding: 18px 18px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.cmp-label {
  font-weight: 600;
  color: var(--text);
  border-right: 1px solid var(--border);
}
.comparison-row--highlight .cmp-label,
.comparison-row--highlight .cmp-cell { color: var(--text-bright); }
.winner-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--grad-primary);
  color: #FFF;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: 0 4px 12px rgba(233,79,55,0.4);
}

@media (max-width: 960px) {
  .comparison-table { border: none; background: transparent; }
  .comparison-row {
    grid-template-columns: 1fr;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    margin-bottom: 16px;
    overflow: hidden;
  }
  .comparison-row--head { display: none; }
  .comparison-row--highlight {
    background: linear-gradient(135deg, rgba(233,79,55,0.1), rgba(124,92,255,0.08));
    border-color: var(--coral-glow);
  }
  .cmp-label {
    background: rgba(255,255,255,0.03);
    padding: 14px 18px;
    font-size: 15px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .cmp-cell {
    display: grid;
    grid-template-columns: 110px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
  }
  .cmp-cell:last-child { border-bottom: none; }
  .cmp-cell::before {
    content: attr(data-label);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    font-weight: 500;
  }
}

/* ==========================================================================
   Process
   ========================================================================== */

.section--process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
}

.process-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px 24px;
  position: relative;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
.process-step:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.process-step__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--coral-faint);
  border: 1px solid rgba(233,79,55,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-bright);
  margin-bottom: 18px;
}
.process-step__icon svg { width: 20px; height: 20px; }
.process-step__n {
  position: absolute;
  top: 24px;
  right: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-faint);
  letter-spacing: 0.05em;
}
.process-step p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   Industry examples
   ========================================================================== */

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.examples-grid > article:first-child { grid-column: 1 / -1; }
@media (max-width: 820px) {
  .examples-grid { grid-template-columns: 1fr; }
  .examples-grid > article:first-child { grid-column: auto; }
}

.example {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
.example:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.example header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
}
.example__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral-faint);
  border: 1px solid rgba(233,79,55,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-bright);
  flex-shrink: 0;
}
.example__icon svg { width: 24px; height: 24px; }

.example__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: 6px;
}
.example__meta strong { color: var(--coral-bright); font-weight: 600; }

.example__pages {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.example__pages span {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
}

.examples-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
  margin-top: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral-faint);
  border: 1px solid rgba(233,79,55,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' stroke='%23FF6B4D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
}

/* ==========================================================================
   Included grid
   ========================================================================== */

.section--included {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  position: relative;
}
.section--included::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M 40 0 L 0 0 0 40' fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E");
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 80%);
}

.included-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 36px;
  position: relative;
}
@media (max-width: 640px) { .included-grid { grid-template-columns: 1fr; } }

.included-grid li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.included-grid li .ico { margin-top: 3px; flex-shrink: 0; }

/* ==========================================================================
   Pricing
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 820px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pricing-card--featured {
  border-color: rgba(233,79,55,0.35);
  background: linear-gradient(180deg, rgba(233,79,55,0.06) 0%, rgba(124,92,255,0.04) 100%);
  box-shadow: 0 0 0 1px rgba(233,79,55,0.18), 0 24px 80px rgba(233,79,55,0.18);
}
.pricing-card__glow {
  position: absolute;
  top: -50%;
  right: -30%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(233,79,55,0.32) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.pricing-card__label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--coral-bright);
  display: block;
  margin-bottom: 20px;
}
.pricing-card--featured .pricing-card__label { color: var(--coral-bright); }

.pricing-card__price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; }
.pricing-card__amount {
  font-family: var(--font-sans);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-bright);
  line-height: 1;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card:not(.pricing-card--featured) .pricing-card__amount {
  background: none;
  -webkit-text-fill-color: var(--text-bright);
  color: var(--text-bright);
}
.pricing-card__per { font-size: 16px; color: var(--text-muted); }

.pricing-card__note {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 24px;
  max-width: 440px;
  position: relative;
}
.pricing-card .check-list { margin-bottom: 32px; position: relative; }
.pricing-card .check-list li { color: var(--text); }

.pricing-footnote {
  text-align: center;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 720px;
  margin: 40px auto 0;
}

/* ==========================================================================
   About
   ========================================================================== */

.section--about {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

/* ==========================================================================
   Risk reversal
   ========================================================================== */

.risk-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 920px) { .risk-grid { grid-template-columns: 1fr; } }

.risk-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px 28px;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
.risk-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}
.risk-card p { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

/* ==========================================================================
   Founder
   ========================================================================== */

.section--founder {
  position: relative;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  overflow: hidden;
}
.section--founder::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(233,79,55,0.13) 0%, transparent 70%);
  filter: blur(60px);
  transform: translateY(-50%);
  pointer-events: none;
}
.section--founder .prose p { color: var(--text); }

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-bright);
  transition: color .15s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--coral-bright); }
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-glass);
  border: 1px solid var(--border-bright);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-bright);
  transition: transform .3s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--coral-faint);
  border-color: var(--coral-glow);
  color: var(--coral-bright);
}
.faq-body {
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 720px;
}

/* ==========================================================================
   Form
   ========================================================================== */

.section--form {
  position: relative;
  background: var(--bg);
  overflow: hidden;
}
.section--form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 600px;
  background: radial-gradient(ellipse at center top, rgba(233,79,55,0.18) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.quote-form {
  background: var(--bg-card);
  border: 1px solid var(--border-bright);
  border-radius: var(--r-xl);
  padding: 44px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), 0 32px 80px rgba(0,0,0,0.4);
  position: relative;
}
@media (max-width: 640px) { .quote-form { padding: 28px 22px; } }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; gap: 0; } }

.form-field {
  margin-bottom: 20px;
  border: none;
  padding: 0;
}
.form-field label, .form-field legend {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-bright);
  margin-bottom: 8px;
}
.form-field legend { padding: 0; }
.form-optional { font-weight: 400; color: var(--text-faint); }

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="url"],
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--text-bright);
  background: rgba(255,255,255,0.02);
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-faint); }
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--coral);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 0 0 4px rgba(233,79,55,0.15);
}
.form-field textarea { resize: vertical; min-height: 96px; }

.radio {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid var(--border-bright);
  border-radius: var(--r-sm);
  margin-bottom: 8px;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
  font-size: 15px;
  color: var(--text);
  background: rgba(255,255,255,0.015);
}
.radio:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.03); }
.radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--coral);
  margin: 0;
  flex-shrink: 0;
}
.radio:has(input:checked) {
  border-color: var(--coral);
  background: rgba(233,79,55,0.08);
  color: var(--text-bright);
}

.form-disclaimer {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--bg);
  color: var(--text-muted);
  padding: 64px 0 40px;
  border-top: 1px solid var(--border);
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.footer__brand strong {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-bright);
  display: block;
  margin-bottom: 6px;
}
.footer__brand p { margin: 0; font-size: 14.5px; }
.footer__nav { display: flex; gap: 28px; align-items: center; }
.footer__nav a {
  color: var(--text-muted);
  font-size: 14.5px;
  transition: color .15s ease;
}
.footer__nav a:hover { color: var(--text-bright); }
.footer__bottom {
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-faint);
}
.footer__bottom p { margin: 0; }

@media (max-width: 640px) {
  .footer__top { flex-direction: column; align-items: flex-start; }
  .footer__nav { flex-wrap: wrap; gap: 16px 22px; }
}

/* ==========================================================================
   Mobile spacing
   ========================================================================== */

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head .display { margin-bottom: 16px; }
  .section-sub { font-size: 16.5px; }
  h1.display, .display--xl { font-size: 36px; line-height: 1.1; letter-spacing: -0.025em; }
  h2.display { font-size: 28px; line-height: 1.15; }
  .h3 { font-size: 17px; }
  .card, .risk-card, .process-step, .example { padding: 24px 22px; }
  .pricing-card { padding: 30px 24px; }
  .pricing-card__amount { font-size: 56px; }
  .hero__sub { font-size: 17px; }
  .impact-list li { font-size: 15.5px; }
  .check-list li, .included-grid li { font-size: 15px; }
}
@media (max-width: 400px) {
  h1.display, .display--xl { font-size: 32px; }
  h2.display { font-size: 25px; }
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .pulse-dot, .hero__orb { animation: none; }
}

/* ==========================================================================
   Focus
   ========================================================================== */

:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible { outline-offset: 4px; }

/* selection */
::selection { background: var(--coral); color: #FFF; }
