/* ============================================================
   beta01 — Wippit SMB Beta Landing
   Brand: Wippit (Chili Red on Raisin Black)
   Typography: Elaine Sans (display) + DM Sans (body)
   ============================================================ */

/* ---- Fonts ------------------------------------------------- */
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-Black.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Elaine Sans';
  src: url('../webfonts/elaine-sans/ElaineSans-BlackItalic.ttf') format('truetype');
  font-weight: 900; font-style: italic; font-display: swap;
}

/* ---- Tokens ----------------------------------------------- */
:root {
  --red:    #DD2C10;
  --red-hi: #f33b1d;
  --black:  #1C1C21;
  --black-2:#161619;
  --line:   #2a2a30;
  --silver: #C9C7C8;
  --white:  #FFFFFF;

  --container:        1200px;
  --container-narrow: 820px;
  --section-pad:      120px;

  --font-display: 'Elaine Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ---- Reset ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--white); text-decoration: none; }

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

/* ---- Utilities -------------------------------------------- */
.container        { max-width: var(--container);        margin: 0 auto; padding: 0 28px; }
.container.narrow { max-width: var(--container-narrow); }
.accent           { color: var(--red); }
em                { font-style: italic; color: var(--silver); }

/* ---- Topbar ----------------------------------------------- */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: rgba(28, 28, 33, 0.78);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.topbar .brand,
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.brand-mark { height: 30px; width: auto; display: block; }
.brand-word {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: 1.45rem; color: var(--white);
  letter-spacing: -0.01em; line-height: 1;
}
.footer-brand .brand-mark { height: 22px; opacity: 0.85; }
.footer-brand .brand-word { font-size: 1.1rem; opacity: 0.85; }
.topbar-cta {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  border: 1px solid var(--white); padding: 8px 18px; border-radius: 100px;
  transition: background 0.15s, color 0.15s;
}
.topbar-cta:hover { background: var(--white); color: var(--black); }
.topbar-right { display: inline-flex; align-items: center; gap: 24px; }
.topbar-nav { display: inline-flex; align-items: center; gap: 22px; }
.topbar-nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  color: var(--white); opacity: 0.82; text-decoration: none;
  transition: opacity 0.15s;
}
.topbar-nav a:hover { opacity: 1; }
.topbar-nav a:focus-visible { outline: 2px solid var(--white); outline-offset: 4px; }

/* ---- Buttons ---------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: var(--font-body); font-weight: 700;
  padding: 14px 28px; border-radius: 100px;
  font-size: 16px;
  transition: transform 0.1s ease-out, background 0.15s, border-color 0.15s, color 0.15s;
}
.btn-primary  { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-hi); transform: translateY(-1px); }
.btn-primary.big   { font-size: 18px; padding: 18px 38px; margin-top: 36px; }

.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid var(--silver);
}
.btn-secondary:hover { background: var(--white); color: var(--black); border-color: var(--white); }

.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.topbar-cta:focus-visible {
  outline: 2px solid var(--white); outline-offset: 4px;
}

/* ---- Get-started steps (dev onboarding, used by /start) --------- */
pre.cmd {
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  margin: 0 0 18px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.95rem; line-height: 1.55;
  color: var(--white);
  overflow-x: auto; white-space: pre;
}
pre.cmd .c { color: var(--silver); }
code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  border-radius: 6px; padding: 1px 6px;
  color: var(--white);
}
.steps { padding: 80px 0; }
.step-block + .step-block { margin-top: 64px; }
.step-num {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  letter-spacing: -0.01em; line-height: 1.1;
  color: var(--white); margin: 0 0 26px;
}
.step-num .n {
  flex: none;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--red); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-style: normal;
}
.os-tabs { display: flex; gap: 10px; margin: 0 0 14px; }
.os-tab {
  font-family: var(--font-body); font-weight: 500; font-size: 0.95rem;
  color: var(--silver); background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 8px 18px; cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.os-tab[aria-selected="true"] { border-color: var(--red); color: var(--white); }
.os-tab:hover { color: var(--white); }
.hide { display: none !important; }
.ask-card {
  background: var(--black); border: 1px solid var(--line);
  border-radius: 16px; padding: 30px 34px; margin: 0 0 22px;
}
.ask-card .say { font-size: 1.05rem; color: var(--silver); margin: 0 0 12px; }
.ask-card .quote {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: 1.6rem; color: var(--red); margin: 0; line-height: 1.1;
}
.owner-note {
  background: var(--black-2); border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 12px; padding: 22px 26px;
  color: var(--silver); font-size: 1rem; line-height: 1.6;
}
.owner-note strong { color: var(--white); }
.owner-note a { color: var(--red); }
.step-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 4px; }

/* ---- Start page intro ------------------------------------------ */
.page-head { padding: 130px 0 6px; }
.eyebrow {
  font-family: var(--font-body); font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--red); margin: 0 0 14px;
}
.page-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1.02;
  letter-spacing: -0.02em; color: var(--white); margin: 0 0 18px;
}
.page-lead { font-size: 1.1rem; line-height: 1.6; color: var(--silver); max-width: 640px; margin: 0; }
.page-lead a { color: var(--red); }

/* ---- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 160px 28px 100px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(28,28,33,0.55) 0%, rgba(28,28,33,0.85) 65%, var(--black) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 960px; }

.hero h1.display {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(2.6rem, 7.2vw, 6rem);
  line-height: 0.98; letter-spacing: -0.02em;
  margin: 0 0 32px;
}
.hero h1.display .line { display: block; }

.hero .lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--silver);
  margin: 0 auto 40px;
  line-height: 1.55; max-width: 700px;
}
.hero-note {
  margin-top: 24px;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.18em;
  color: var(--silver);
}

/* ---- Section frame ---------------------------------------- */
section { padding: var(--section-pad) 0; position: relative; }

.section-kicker {
  font-family: var(--font-display);
  font-weight: 900; font-style: italic;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.01em;
  color: var(--white);
  text-transform: none;
  text-align: center;
  margin: 0 0 18px;
}
.section-tagline {
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--silver);
  margin: 0 auto 56px;
  max-width: 640px;
  line-height: 1.5;
}

h2, h3, h4 {
  font-family: var(--font-display); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.05;
  margin: 0 0 24px;
}
h2 { font-size: clamp(2rem, 4.2vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-weight: 700; font-size: 1.25rem; margin: 0 0 10px; }

p { margin: 0 0 20px; color: rgba(255,255,255,0.92); }

/* ---- Split layout ----------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.split-image img {
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
  width: 100%; height: auto;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 48px; }
  .split-image { order: -1; }
}

/* ---- Showcase --------------------------------------------- */
.showcase { text-align: center; background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.showcase .showcase-h {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.showcase .showcase-lead {
  color: var(--silver); font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 560px; margin: 0 auto 52px; line-height: 1.5;
}
.showcase-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 920px; margin: 0 auto; }
.showcase-grid figure { margin: 0; }
.showcase-grid img {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; display: block;
  border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,0.45);
}
.showcase-grid figcaption {
  margin-top: 14px; font-size: 14px; letter-spacing: 0.04em; color: var(--silver);
}
@media (max-width: 860px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- AI split caption ------------------------------------- */
.split-cap { margin-top: 14px; font-size: 13px; color: var(--silver); text-align: center; }

/* ---- Pricing ---------------------------------------------- */
.pricing { text-align: center; }
.pricing .pricing-h {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.pricing .pricing-lead {
  color: var(--silver); font-size: clamp(1rem, 1.5vw, 1.2rem);
  max-width: 600px; margin: 0 auto 18px; line-height: 1.5;
}
.pricing-note {
  display: inline-block; margin: 0 auto 48px; padding: 8px 16px;
  border-radius: 999px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px; color: rgba(255,255,255,0.82);
}
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; text-align: left; }
.price-card {
  position: relative; background: var(--black-2, #232320);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 16px;
  padding: 34px 28px 30px; display: flex; flex-direction: column;
}
.price-card--featured { border-color: var(--red); box-shadow: 0 16px 50px rgba(221,44,16,0.20); }
.price-badge {
  position: absolute; top: -12px; left: 28px; background: var(--red); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.price-name { font-size: 13px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--silver); margin-bottom: 12px; }
.price-amount { font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 3rem; line-height: 1; color: var(--white); }
.price-amount span { font-family: 'DM Sans', sans-serif; font-style: normal; font-size: 1rem; font-weight: 400; color: var(--silver); }
.price-billing { font-size: 12px; color: var(--silver); margin-top: 8px; }
.price-billing strong { color: rgba(255,255,255,0.9); font-weight: 600; }
.price-sub { color: var(--silver); font-size: 13px; margin: 10px 0 16px; }
.price-for { font-size: 13px; line-height: 1.5; color: var(--silver); font-style: italic; margin: 0 0 20px; }
.price-feat { list-style: none; padding: 0; margin: 0 0 18px; flex: 1 1 auto; }
.price-scale { margin: 0 0 22px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.82); }
.price-feat li { position: relative; padding-left: 26px; margin-bottom: 14px; color: rgba(255,255,255,0.9); font-size: 15px; line-height: 1.45; }
.price-feat li::before { content: "\2713"; position: absolute; left: 0; color: var(--red); font-weight: 700; }
.price-card .btn-primary { display: block; width: 100%; box-sizing: border-box; text-align: center; }
.pricing-foot { margin-top: 42px; color: var(--silver); font-size: 15px; }
.pricing-foot a { color: var(--white); text-decoration: underline; text-decoration-color: var(--red); text-decoration-thickness: 2px; text-underline-offset: 3px; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---- Story ------------------------------------------------ */
.story { background: linear-gradient(180deg, var(--black) 0%, var(--black-2) 100%); }
.story .punch {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.25rem; color: var(--white);
  border-left: 3px solid var(--red); padding-left: 18px;
  margin-top: 28px;
}

/* ---- Meet ------------------------------------------------- */
.meet { text-align: center; }
.meet .meet-h {
  font-style: italic; font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  margin-bottom: 40px;
}
.meet .meet-lead {
  font-size: 1.2rem; line-height: 1.55;
  max-width: 720px; margin: 0 auto 22px;
  color: rgba(255,255,255,0.92);
}
.meet .meet-lead em { color: var(--white); font-style: italic; }

/* ---- Wipps gallery ---------------------------------------- */
.wipps {
  background: var(--black-2);
  padding-top: 100px;
  padding-bottom: 140px;
}
.wipps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.wipp-card {
  background: var(--black); border: 1px solid var(--line);
  padding: 36px 32px; border-radius: 16px;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.wipp-card:hover {
  border-color: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(221, 44, 16, 0.12);
}
.wipp-card img { width: 56px; height: 56px; margin-bottom: 22px; }
.wipp-card h4 { color: var(--white); margin: 0 0 10px; }
.wipp-card p {
  font-size: 0.96rem; color: var(--silver); margin: 0; line-height: 1.55;
}
@media (max-width: 900px) {
  .wipps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wipps-grid { grid-template-columns: 1fr; }
}

/* ---- AI under the hood ------------------------------------ */
.ai .ai-line {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.5rem; line-height: 1.35;
  border-left: 3px solid var(--red); padding-left: 22px;
  margin: 24px 0 36px;
  color: var(--white);
}
.ai .ai-line em { color: var(--silver); font-style: italic; }

/* ---- Flywheel --------------------------------------------- */
.flywheel {
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  text-align: center;
}
.flywheel-steps {
  list-style: none; padding: 0; margin: 40px auto 28px; max-width: 620px;
  counter-reset: fly;
}
.flywheel-steps li {
  counter-increment: fly;
  position: relative;
  padding: 22px 28px 22px 86px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 18px;
  text-align: left;
  color: rgba(255,255,255,0.92);
}
.flywheel-steps li strong { color: var(--white); font-weight: 700; }
.flywheel-steps li::before {
  content: counter(fly);
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px;
  background: var(--red); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 900; font-size: 1.1rem;
}
.flywheel-steps li:not(:last-child)::after {
  content: '↓';
  position: absolute; left: 50%; bottom: -16px; transform: translateX(-50%);
  color: var(--red); font-size: 16px; font-weight: 700;
  background: var(--black);
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  z-index: 1;
}
.flywheel-steps li .stat {
  display: block;
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--silver);
  font-style: italic;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.flywheel-steps li .stat .stat-cite {
  display: inline-block;
  margin-left: 4px;
  font-style: normal;
  font-size: 0.88em;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--silver);
  text-decoration: none;
  border-bottom: 1px dotted rgba(201, 199, 200, 0.5);
  transition: color 0.15s, border-color 0.15s;
}
.flywheel-steps li .stat .stat-cite:hover {
  color: var(--white);
  border-color: var(--white);
}
.flywheel-note {
  text-align: center; font-style: italic; color: var(--silver);
  margin-top: 36px;
  margin-bottom: 10px;
}
.flywheel-reframe {
  text-align: center;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--white);
  max-width: 760px;
  margin: 36px auto 22px;
  line-height: 1.55;
}
.flywheel-reframe strong {
  color: var(--white);
  font-weight: 700;
  display: inline-block;
}
.flywheel-sources {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(201, 199, 200, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}
.flywheel-sources a {
  color: inherit;
  border-bottom: 1px dotted rgba(201, 199, 200, 0.35);
  transition: color 0.15s, border-color 0.15s;
}
.flywheel-sources a:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ---- Beta ------------------------------------------------- */
.beta { background: var(--black-2); }
.beta-heading {
  text-align: center;
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
  margin-bottom: 60px;
}
.beta-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.beta-card {
  background: var(--black); border: 1px solid var(--line);
  padding: 44px 40px; border-radius: 16px;
  display: flex; flex-direction: column;
}
.beta-card-kicker {
  text-transform: uppercase; letter-spacing: 0.2em; font-size: 11px;
  color: var(--red); margin-bottom: 14px;
  font-family: var(--font-body); font-weight: 700;
}
.beta-card h3 { font-size: 1.5rem; margin-bottom: 24px; }
.beta-card ul {
  list-style: none; padding: 0; margin: 0 0 36px; flex-grow: 1;
}
.beta-card li {
  padding: 10px 0 10px 30px; position: relative;
  color: var(--silver); font-size: 0.98rem; line-height: 1.55;
}
.beta-card li::before {
  content: '→'; position: absolute; left: 0; top: 10px;
  color: var(--red); font-weight: 700;
}
.beta-card .btn-primary,
.beta-card .btn-secondary { align-self: flex-start; }

@media (max-width: 860px) {
  .beta-cards { grid-template-columns: 1fr; }
}

/* ---- Closing ---------------------------------------------- */
.closing { text-align: center; padding: var(--section-pad) 0 140px; }
.closing-line {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  margin: 0;
}

/* ---- Footer ----------------------------------------------- */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: var(--black);
}
.footer .container {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
/* footer-brand styles inherited from .brand component above */
.footer-meta {
  display: flex; gap: 24px; align-items: center;
  color: var(--silver); font-size: 0.9rem;
}
.footer-meta a { color: var(--silver); transition: color 0.15s; }
.footer-meta a:hover { color: var(--white); }

/* ---- Small screens ---------------------------------------- */
@media (max-width: 600px) {
  :root { --section-pad: 80px; }
  body { font-size: 17px; }
  .topbar { padding: 14px 18px; }
  .topbar .brand img { height: 22px; }
  .topbar-cta { padding: 6px 14px; font-size: 0.88rem; }
  .topbar-nav { display: none; }
  .topbar-right { gap: 0; }
  .page-head { padding: 110px 0 0; }
  .hero { padding: 120px 20px 70px; }
  .container { padding: 0 20px; }
  .wipp-card { padding: 28px 24px; }
  .beta-card { padding: 32px 26px; }
  .footer .container { flex-direction: column; align-items: flex-start; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ---- Reduced motion --------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ---- Hero ERP builder ------------------------------------- */
.hero-inner--wide { max-width: 940px; width: 100%; }

.erpb {
  margin: 8px auto 30px;
  background: var(--black-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  text-align: left;
}
.erpb-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-bottom: 22px;
}
.erpb-tab {
  font-family: var(--font-body); font-weight: 500; font-size: 0.92rem;
  color: var(--silver); background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  padding: 7px 16px; cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.erpb-tab:hover { border-color: var(--silver); color: var(--white); }
.erpb-tab[aria-selected="true"] {
  background: var(--red); border-color: var(--red); color: var(--white);
}
.erpb-tab:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.erpb-tab--any { border-style: dashed; border-color: rgba(221,44,16,0.6); color: var(--white); }
.erpb-tab--any[aria-selected="true"] { border-style: solid; }

.erpb-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 12px; margin-bottom: 2px;
}
.erpb-title {
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.35rem; color: var(--white);
}
.erpb-status { font-size: 0.85rem; color: var(--silver); white-space: nowrap; }
.erpb-status.is-ready { color: var(--red); }
.erpb-sub { font-size: 0.85rem; color: var(--silver); margin: 4px 0 0; line-height: 1.45; }

.erpb-cap {
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em;
  color: rgba(201,199,200,0.6); margin: 14px 0 8px;
}
.erpb-cap--mt { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--line); }

.erpb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
  gap: 8px;
}
.erpb-chip, .erpb-ch {
  opacity: 0; transform: translateY(7px);
  transition: opacity 0.26s ease, transform 0.26s ease;
  border-radius: 10px; padding: 10px 8px; text-align: center;
  font-size: 0.9rem; line-height: 1.2;
}
.erpb-chip {
  font-family: var(--font-body); font-weight: 500; color: var(--white);
  background: rgba(221,44,16,0.10);
  border: 1px solid rgba(221,44,16,0.40);
}
.erpb-ch {
  color: var(--silver);
  background: var(--black); border: 1px solid var(--line);
}
.erpb-ch.is-app { border-style: dashed; border-color: var(--silver); color: var(--white); }
.erpb-chip--more {
  background: transparent;
  border: 1px dashed rgba(221,44,16,0.6);
  color: var(--white);
}
.erpb-chip.is-on, .erpb-ch.is-on { opacity: 1; transform: none; }

.erpb-foot {
  font-size: 0.78rem; color: rgba(201,199,200,0.7);
  margin: 12px 0 0; font-style: italic;
}

.erpb-step {
  display: flex; align-items: center; gap: 15px;
  font-family: var(--font-display); font-weight: 700; font-style: italic;
  font-size: 1.45rem; color: var(--white); margin: 0 0 18px; line-height: 1.2;
}
.erpb-step--mt { margin-top: 28px; padding-top: 26px; border-top: 1px solid var(--line); }
.erpb-step-n {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: var(--white);
  font-family: var(--font-display); font-weight: 900; font-style: normal;
  font-size: 1.35rem;
}

@media (max-width: 600px) {
  .erpb { padding: 16px; }
  .erpb-head { flex-direction: column; align-items: flex-start; gap: 2px; }
  .erpb-title { font-size: 1.15rem; }
  .erpb-step { font-size: 1.15rem; gap: 12px; }
  .erpb-step-n { width: 36px; height: 36px; font-size: 1.1rem; }
}
