/* ============================================================
   STOREDAD — Static Site Styles
   Brand: #FF5A1F (vivid orange) | Light theme | Lexend font
   ============================================================ */

:root {
  --brand: #FF5A1F;
  --brand-600: #E94A0F;
  --brand-50: #FFF1EA;
  --brand-100: #FFE3D5;
  --ink: #0E1116;
  --ink-2: #1B1F26;
  --muted: #5B6472;
  --muted-2: #8A93A1;
  --line: #ECECEC;
  --line-2: #F4F4F4;
  --bg: #FFFFFF;
  --bg-soft: #FAFAF7;
  --bg-cream: #FBF6EE;
  --shadow-sm: 0 1px 2px rgba(15,17,22,.04);
  --shadow-md: 0 8px 28px rgba(15,17,22,.06);
  --shadow-lg: 0 24px 60px rgba(15,17,22,.10);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --container: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Lexend', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* Hide React mount point — site is static */
#root { display: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR (rounded, floating with margin from top) ===== */
.nav-wrap {
  position: sticky;
  top: 16px;
  z-index: 50;
  padding: 0 16px;
  margin-top: 16px;
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border: 1px solid rgba(15,17,22,.08);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.nav-logo {
  display: flex;
  align-items: center;
  color: var(--ink);
}
.logo-img {
  height: 32px;
  width: auto;
  display: block;
}
.nav-logo .mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 4px 12px rgba(255,90,31,.35);
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 14.5px;
  color: #2a2f37;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.nav-links a:hover { background: rgba(15,17,22,.05); color: var(--ink); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink);
  color: #fff !important;
  padding: 11px 20px !important;
  border-radius: 999px !important;
  font-weight: 600 !important;
  font-size: 14.5px;
  transition: transform .15s ease, background .2s ease;
}
.nav-cta:hover { background: var(--brand) !important; transform: translateY(-1px); }

.nav-burger {
  display: none;
  background: transparent; border: 0; padding: 8px; border-radius: 999px;
}
.nav-burger:hover { background: rgba(0,0,0,.05); }

@media (max-width: 880px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 16px; right: 16px;
    flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px; border-radius: 22px;
    border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-cta { justify-content: center; }
  .nav-burger { display: inline-flex; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15.5px;
  border: 1px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255,90,31,.30);
}
.btn-primary:hover { background: var(--brand-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,90,31,.38); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: rgba(15,17,22,.14);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { background: var(--brand); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  text-align: center;
  padding: 64px 0 40px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 600px at 50% -10%, #FFE9DD 0%, transparent 60%),
    radial-gradient(700px 420px at 90% 30%, #FFF4ED 0%, transparent 70%),
    linear-gradient(180deg, #FFFAF6 0%, #FFFFFF 100%);
}
.hero-grid {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(to right, rgba(15,17,22,.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15,17,22,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000 40%, transparent 80%);
}
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px;
  background: #fff;
  border: 1px solid rgba(255,90,31,.25);
  color: var(--brand-600);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,90,31,.18);
  animation: pulse 1.6s ease infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(255,90,31,.18); }
  50%     { box-shadow: 0 0 0 8px rgba(255,90,31,.05); }
}
.hero h1 {
  font-size: clamp(36px, 6.2vw, 72px);
  line-height: 1.02;
  font-weight: 700;
  letter-spacing: -0.035em;
  margin: 0 auto 22px;
  max-width: 16ch;
}
.hero h1 .accent { color: var(--brand); }
.hero h1 .strike {
  position: relative; display: inline-block;
}
.hero h1 .strike::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; top: 56%; height: 8px;
  background: var(--brand); border-radius: 6px;
  transform: rotate(-2deg);
  opacity: .9;
}
.hero p.sub {
  max-width: 720px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.6;
}
.hero-ctas {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 14px;
}
.hero-note {
  color: var(--muted-2);
  font-size: 13.5px;
  margin-top: 8px;
}

.hero-visual {
  margin: 56px auto 0;
  max-width: 1080px;
  position: relative;
  padding: 0 16px;
}
.hero-visual .frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(15,17,22,.08);
  box-shadow: 0 60px 120px -40px rgba(15,17,22,.40), 0 20px 50px -20px rgba(15,17,22,.18);
  background: #0B0E13;
  transform: perspective(1800px) rotateX(8deg);
  transform-origin: 50% 100%;
}
.hero-visual .frame img { width: 100%; display: block; }
.hero-visual::before {
  content: "";
  position: absolute; left: 10%; right: 10%; bottom: -40px; height: 80px;
  background: radial-gradient(ellipse at center, rgba(255,90,31,.30), transparent 70%);
  filter: blur(10px); z-index: -1;
}

.trusted {
  margin-top: 96px;
  text-align: center;
}
.trusted p {
  font-size: 12.5px;
  letter-spacing: .14em;
  color: var(--muted-2);
  text-transform: uppercase;
  margin: 0 0 18px;
}
.trusted-row {
  display: flex; gap: 48px; flex-wrap: wrap; justify-content: center; align-items: center;
  opacity: .55;
  filter: grayscale(1);
}
.trusted-row span {
  font-weight: 700; font-size: 18px; letter-spacing: -0.01em;
}

/* ===== Section base ===== */
section { padding: 96px 0; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--brand-50);
  color: var(--brand-600);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.section-head h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.07;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 18px;
}
.section-head p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
  margin: 0;
}

/* ===== FEATURES ===== */
.features { background: var(--bg-soft); }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.feat {
  grid-column: span 4;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.feat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255,90,31,.35); }
.feat-icon {
  width: 48px; height: 48px;
  background: var(--brand-50);
  color: var(--brand-600);
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .2s ease, color .2s ease;
}
.feat-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.25px;
}
.feat.dark .feat-icon svg {
  color: #FFB793;
}
.feat h3 {
  font-size: 19px; font-weight: 600; letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.feat p { color: var(--muted); font-size: 14.5px; margin: 0 0 12px; line-height: 1.6; }
.feat ul { color: var(--muted); font-size: 14px; padding-left: 18px; margin: 8px 0 0; }
.feat ul li { margin-bottom: 4px; }
.feat .badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  background: #FFF6E5;
  color: #946000;
}
.feat.wide { grid-column: span 8; }
.feat.dark {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.feat.dark p, .feat.dark ul { color: #B7BDC7; }
.feat.dark .feat-icon { background: rgba(255,90,31,.18); color: #FFB793; }

@media (max-width: 980px) {
  .feat, .feat.wide { grid-column: span 6; }
}
@media (max-width: 640px) {
  .feat, .feat.wide { grid-column: span 12; }
}

/* ===== CALCULATOR ===== */
.calc-wrap {
  background: linear-gradient(135deg, #FFF7F0 0%, #FFEFE3 100%);
}
.calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.calc-inputs { padding: 40px; }
.calc-inputs h3 { margin: 0 0 6px; font-size: 22px; letter-spacing: -0.015em; }
.calc-inputs p { color: var(--muted); margin: 0 0 28px; font-size: 14.5px; }

.slider-row { margin-bottom: 26px; }
.slider-row .slabel {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.slider-row label {
  font-size: 14px; color: var(--muted); font-weight: 500;
}
.slider-row .sval {
  font-size: 18px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em;
}
.slider-row .sval span { color: var(--brand); }

input[type=range].slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  outline: none;
  background-image: linear-gradient(var(--brand), var(--brand));
  background-repeat: no-repeat;
}
input[type=range].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  box-shadow: 0 4px 10px rgba(255,90,31,.35);
  cursor: pointer;
  transition: transform .15s ease;
}
input[type=range].slider::-webkit-slider-thumb:hover { transform: scale(1.12); }
input[type=range].slider::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  cursor: pointer;
}

.calc-output {
  background: var(--ink);
  color: #fff;
  padding: 40px;
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
  overflow: hidden;
}
.calc-output::before {
  content: ""; position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,31,.40) 0%, transparent 70%);
}
.calc-output h4 {
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase;
  color: #9CA3AF; margin: 0 0 16px;
}
.calc-row {
  display: grid; grid-template-columns: 1fr auto auto; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.08);
  align-items: baseline; position: relative;
}
.calc-row:last-of-type { border-bottom: 0; }
.calc-row .ck { color: #9CA3AF; font-size: 14px; }
.calc-row .v1 { color: #fff; font-weight: 600; font-size: 16px; text-decoration: line-through; text-decoration-color: rgba(255,255,255,.4); }
.calc-row .v2 { color: var(--brand); font-weight: 700; font-size: 18px; }
.calc-savings {
  margin-top: 28px;
  padding: 22px;
  background: rgba(255,90,31,.12);
  border: 1px solid rgba(255,90,31,.30);
  border-radius: 16px;
  position: relative;
}
.calc-savings .lbl { font-size: 13px; color: #FFCDB7; letter-spacing: .04em; }
.calc-savings .big {
  font-size: 38px; font-weight: 700; letter-spacing: -0.02em; color: #fff;
  margin-top: 6px;
}
.calc-savings .yr { font-size: 14px; color: #FFCDB7; margin-top: 6px; }
.calc-cta { margin-top: 24px; }

@media (max-width: 880px) {
  .calc { grid-template-columns: 1fr; }
  .calc-inputs, .calc-output { padding: 28px; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-cream); }
.tcols { columns: 3; column-gap: 18px; }
.tcard {
  break-inside: avoid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 18px;
  display: inline-block;
  width: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}
.tcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.tcard p {
  font-size: 15.5px; line-height: 1.6; color: var(--ink-2); margin: 0 0 16px;
}
.tcard .who {
  display: flex; align-items: center; gap: 12px;
  font-size: 13.5px; color: var(--muted);
}
.tcard .avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand) 0%, #FFB793 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 14px;
}
.tcard .who strong { color: var(--ink); font-weight: 600; }
@media (max-width: 980px) { .tcols { columns: 2; } }
@media (max-width: 640px) { .tcols { columns: 1; } }

/* ===== PRICING ===== */
.toggle-wrap { display: flex; justify-content: center; margin-bottom: 40px; }
.toggle {
  background: var(--line-2);
  padding: 5px;
  border-radius: 999px;
  display: inline-flex;
  position: relative;
}
.toggle button {
  border: 0; background: transparent;
  padding: 10px 22px;
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  border-radius: 999px;
  position: relative; z-index: 1;
  transition: color .2s ease;
}
.toggle button.active { color: var(--ink); }
.toggle .pill {
  position: absolute; top: 5px; bottom: 5px;
  background: #fff; border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: left .25s ease, width .25s ease;
}
.toggle .save {
  display: inline-block; margin-left: 6px;
  background: var(--brand-50); color: var(--brand-600);
  padding: 2px 8px; border-radius: 999px; font-size: 11px;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pcard.popular {
  border-color: var(--brand);
  box-shadow: 0 30px 70px -20px rgba(255,90,31,.25);
  background: linear-gradient(180deg, #FFF7F2 0%, #fff 60%);
}
.pcard.popular::after {
  content: "🔥 Most Popular";
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  padding: 6px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 600;
}
.pcard h3 { font-size: 20px; margin: 0 0 6px; letter-spacing: -0.01em; }
.pcard .ptag { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.pcard .price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 6px;
}
.pcard .price .amt { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; }
.pcard .price .per { color: var(--muted); font-size: 14px; }
.pcard .billed { font-size: 12.5px; color: var(--muted-2); margin: 0 0 24px; }
.pcard ul { list-style: none; margin: 0 0 28px; padding: 0; }
.pcard ul li {
  font-size: 14.5px; color: var(--ink-2);
  padding: 8px 0 8px 26px; position: relative;
  border-bottom: 1px dashed var(--line);
}
.pcard ul li:last-child { border-bottom: 0; }
.pcard ul li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--brand-50); color: var(--brand-600);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
}
@media (max-width: 980px) { .price-grid { grid-template-columns: 1fr; } }

.price-foot {
  text-align: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 14px;
}
.price-foot span { color: var(--brand-600); font-weight: 600; }

/* ===== FAQ ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 8px 22px 0;
  font-weight: 600; font-size: 17px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 22px; font-weight: 400; color: var(--brand);
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  color: var(--muted); margin: 0 0 22px; font-size: 15px; line-height: 1.65; max-width: 95%;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background:
    radial-gradient(700px 320px at 80% 0%, rgba(255,90,31,.18), transparent 70%),
    radial-gradient(500px 300px at 10% 100%, rgba(255,90,31,.10), transparent 70%),
    linear-gradient(180deg, #0E1116 0%, #161A22 100%);
  color: #fff;
  text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { color: #B7BDC7; }
.final-cta .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }
.final-cta .btn-ghost:hover { border-color: #fff; }

/* ===== CONTACT ===== */
.contact-wrap { background: var(--bg-soft); }
.contact-form {
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 18px; }
.field label {
  display: block; margin-bottom: 8px;
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-family: inherit; font-size: 15px;
  background: #fff;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(255,90,31,.15);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .field-grid { grid-template-columns: 1fr; } }
.contact-note { text-align: center; font-size: 13px; color: var(--muted-2); margin-top: 14px; }

/* ===== FOOTER ===== */
footer {
  background: #0B0E13;
  color: #B7BDC7;
  padding: 70px 0 30px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
.foot-brand .logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.foot-brand .logo .logo-img {
  height: 38px;
}
.foot-brand p { font-size: 14px; color: #8A93A1; max-width: 260px; line-height: 1.6; }
.foot-col h5 {
  color: #fff; font-size: 13.5px; font-weight: 600;
  margin: 0 0 14px; letter-spacing: .02em;
}
.foot-col ul { list-style: none; padding: 0; margin: 0; }
.foot-col li { margin-bottom: 8px; }
.foot-col a {
  color: #8A93A1; font-size: 14px;
  transition: color .15s ease;
}
.foot-col a:hover { color: var(--brand); }
.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #6B7280;
}
.socials { display: flex; gap: 14px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255,255,255,.06);
  display: inline-flex; align-items: center; justify-content: center;
  color: #B7BDC7;
  transition: background .2s ease, color .2s ease;
}
.socials a:hover { background: var(--brand); color: #fff; }

/* ===== Page-specific (privacy, terms, blog) ===== */
.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #FFFAF6 0%, #fff 100%);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 14px;
}
.page-hero p { color: var(--muted); margin: 0 auto; max-width: 640px; }
.page-hero .meta { color: var(--muted-2); font-size: 13px; margin-top: 12px; }

.prose {
  max-width: 760px; margin: 0 auto; padding: 60px 24px 100px;
  font-size: 16px; line-height: 1.75; color: var(--ink-2);
}
.prose h2 {
  font-size: 26px; margin: 48px 0 14px;
  letter-spacing: -0.02em; color: var(--ink);
}
.prose h3 { font-size: 19px; margin: 28px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--ink-2); }
.prose ul { padding-left: 20px; margin: 0 0 18px; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--brand-600); text-decoration: underline; text-underline-offset: 3px; }
.prose blockquote {
  border-left: 3px solid var(--brand);
  margin: 22px 0; padding: 4px 0 4px 20px;
  color: var(--ink-2); font-style: italic;
}

/* Blog index */
.blog-filter {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 40px;
}
.blog-filter button {
  padding: 8px 16px; border-radius: 999px;
  background: #fff; border: 1px solid var(--line);
  font-size: 13.5px; color: var(--ink-2); font-weight: 500;
  transition: all .2s ease;
}
.blog-filter button.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.blog-filter button:hover { border-color: var(--ink); }

.blog-featured {
  background: linear-gradient(135deg, #0E1116 0%, #1B1F26 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: 56px;
  margin-bottom: 56px;
  position: relative;
  overflow: hidden;
}
.blog-featured::before {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(255,90,31,.30), transparent 60%);
  filter: blur(20px);
}
.blog-featured .tag {
  display: inline-block; background: rgba(255,90,31,.18); color: #FFB793;
  padding: 5px 12px; border-radius: 999px; font-size: 12px;
  margin-bottom: 16px; font-weight: 600;
}
.blog-featured h2 {
  color: #fff; font-size: clamp(26px, 3.5vw, 38px);
  letter-spacing: -0.02em; max-width: 24ch; margin: 0 0 16px;
}
.blog-featured p { color: #B7BDC7; max-width: 60ch; margin-bottom: 24px; }
.blog-featured a.read {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--brand); font-weight: 600; font-size: 15px;
}
.blog-featured a.read:hover { color: #FFB793; }

.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 980px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .blog-grid { grid-template-columns: 1fr; } }
.bcard {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.bcard:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255,90,31,.30); }
.bcard .cat {
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--brand-600); text-transform: uppercase; margin-bottom: 12px;
}
.bcard h3 {
  font-size: 18px; margin: 0 0 12px; letter-spacing: -0.015em;
  line-height: 1.3;
}
.bcard p { color: var(--muted); font-size: 14px; margin: 0 0 18px; flex: 1; }
.bcard .meta { font-size: 12.5px; color: var(--muted-2); }

.newsletter {
  margin-top: 80px;
  background: var(--bg-cream);
  border-radius: var(--radius-xl);
  padding: 56px;
  text-align: center;
}
.newsletter h3 { font-size: 28px; letter-spacing: -0.02em; margin: 0 0 8px; }
.newsletter p { color: var(--muted); margin: 0 0 24px; }
.newsletter .nbox {
  display: inline-flex; gap: 10px; max-width: 460px; width: 100%;
  margin: 0 auto;
}
.newsletter input {
  flex: 1; padding: 13px 18px; border-radius: 999px;
  border: 1px solid var(--line); font-family: inherit; font-size: 15px;
}
.newsletter input:focus { outline: none; border-color: var(--brand); }
@media (max-width: 540px) {
  .newsletter .nbox { flex-direction: column; }
  .newsletter .nbox button { width: 100%; }
}

/* ===== Tiny utilities ===== */
.center { text-align: center; }
.mt-24 { margin-top: 24px; }
.mt-40 { margin-top: 40px; }

/* ---- Form States & Feature Forms ---- */
.feat-form {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.feat-form input {
  flex: 1;
  background: #f8f9fa;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feat-form input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255,90,31,0.1);
}

/* Adapt for dark feature cards */
.feat.dark .feat-form input {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
}
.feat.dark .feat-form input::placeholder {
  color: rgba(255,255,255,0.4);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.form-loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}
.form-loading button {
  position: relative;
  color: transparent !important;
}
.form-loading button::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  margin: -9px 0 0 -9px;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success-msg {
  color: #10B981;
  font-size: 0.9rem;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
