/* ===== TOKENS ===== */
:root {
  --warm-bg: #f3eee4;
  --warm-bg-soft: #fbf8f2;
  --warm-panel: rgba(255, 251, 245, 0.92);
  --warm-border: #d8cdc0;
  --warm-ink: #22312b;
  --warm-muted: #51615b;
  --warm-subtle: #6f7d75;
  --warm-accent: #5d8a7a;
  --warm-accent-soft: #eef4ef;
  --warm-highlight: #e6d4ba;
  --warm-shadow: 0 24px 72px rgba(61, 72, 65, 0.12);
}

/* ===== RESET ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(216, 197, 166, 0.18), transparent 34%),
    radial-gradient(circle at top right, rgba(121, 157, 139, 0.16), transparent 30%),
    linear-gradient(180deg, var(--warm-bg-soft) 0%, var(--warm-bg) 100%);
  color: var(--warm-ink);
  font-family: Georgia, Cambria, "Times New Roman", Times, serif;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

/* ===== SHELL ===== */
.shell {
  width: calc(100% - 24px);
  margin: 0 auto;
  padding: 14px 0 60px;
}

@media (min-width: 780px) {
  .shell {
    width: calc(100% - 40px);
    padding: 20px 0 80px;
  }
}

@media (min-width: 1220px) {
  .shell {
    width: min(1180px, calc(100% - 40px));
    padding: 24px 0 80px;
  }
}

/* ===== TOPBAR ===== */
.topbar {
  position: sticky;
  top: 10px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid var(--warm-border);
  border-radius: 28px;
  background: rgba(251, 248, 242, 0.84);
  backdrop-filter: blur(16px);
}

.topbar.open {
  flex-direction: column;
  align-items: flex-start;
}

.topbar.open .nav {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 10px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--warm-muted);
}

.topbar.open .nav a {
  padding: 10px 14px;
  border: 1px solid var(--warm-border);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.76);
}

.topbar.open .actions {
  display: flex;
  width: 100%;
  order: 4;
}

@media (min-width: 980px) {
  .topbar {
    top: 14px;
    padding: 10px 18px;
    border-radius: 32px;
    gap: 20px;
    justify-content: space-between;
  }

  .topbar.open {
    flex-direction: row;
    align-items: center;
  }

  .topbar.open .nav {
    display: flex;
    width: auto;
  }

  .topbar.open .nav a {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .topbar.open .actions {
    width: auto;
    order: unset;
  }
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--warm-border);
  border-radius: 12px;
  cursor: pointer;
  flex-shrink: 0;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background: var(--warm-ink);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hamburger.open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(0, 7px);
}

.hamburger.open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(0, -7px);
}

@media (min-width: 980px) {
  .hamburger {
    display: none;
  }
}

/* ===== BRAND ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--warm-accent);
  box-shadow: 0 14px 34px rgba(93, 138, 122, 0.22);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-tag {
  margin-top: 2px;
  font-size: 0.58rem;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-accent);
}

@media (min-width: 640px) {
  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 18px;
  }

  .brand-title {
    font-size: 1.15rem;
  }

  .brand-tag {
    letter-spacing: 0.28em;
    font-size: 0.62rem;
  }
}

/* ===== NAV (desktop) ===== */
.nav {
  display: none;
}

.actions {
  display: none;
}

@media (min-width: 980px) {
  .nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 24px;
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--warm-muted);
  }

  .nav a:hover {
    color: var(--warm-ink);
  }

  .actions {
    display: flex;
    gap: 12px;
    align-items: center;
  }
}

/* ===== BUTTONS ===== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  width: 100%;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--warm-accent);
  color: #fff;
  box-shadow: 0 18px 44px rgba(93, 138, 122, 0.2);
}

.button.secondary {
  background: #e8e1d5;
  color: var(--warm-ink);
  border-color: #c9beb0;
}

.button.outline {
  background: rgba(255, 251, 245, 0.92);
  color: var(--warm-ink);
  border-color: #d5cabc;
}

@media (min-width: 640px) {
  .button {
    width: auto;
    min-height: 54px;
    padding: 0 22px;
    font-size: 0.98rem;
    border-radius: 20px;
  }
}

/* ===== BUTTON ROW ===== */
.button-row,
.pill-row,
.check-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-row {
  margin: 22px 0 16px;
  width: 100%;
}

@media (min-width: 640px) {
  .button-row {
    margin: 28px 0 20px;
    width: auto;
    gap: 14px;
  }
}

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid var(--warm-border);
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.88);
  color: var(--warm-accent);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    padding: 10px 14px;
  }
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #7b9d76;
  flex-shrink: 0;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 28px 0 20px;
}

.hero > * {
  min-width: 0;
}

.company-hero {
  /* inherits hero */
}

@media (min-width: 980px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 44px;
    align-items: center;
    padding: 56px 0 32px;
  }

  .company-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  }
}

/* ===== HERO TYPOGRAPHY ===== */
.hero h1,
.cta-panel h2,
.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.4rem, 11vw, 3.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(2rem, 9vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

@media (min-width: 640px) {
  .hero h1,
  .cta-panel h2,
  .legal-hero h1 {
    font-size: clamp(2.8rem, 8vw, 4.5rem);
    line-height: 0.93;
    letter-spacing: -0.045em;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 6vw, 3.8rem);
  }
}

@media (min-width: 980px) {
  .hero h1,
  .cta-panel h2,
  .legal-hero h1 {
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 5vw, 4.5rem);
  }
}

/* ===== BODY TEXT ===== */
.hero p,
.section-heading p,
.lead,
.card p,
.faq-answer,
.metric-card p,
.cta-panel p,
.legal-main p,
.legal-main li,
.legal-side p {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--warm-muted);
}

.hero-copy p {
  font-size: 1rem;
  max-width: 42rem;
}

@media (min-width: 640px) {
  .hero p,
  .section-heading p,
  .lead,
  .card p,
  .faq-answer,
  .metric-card p,
  .cta-panel p,
  .legal-main p,
  .legal-main li,
  .legal-side p {
    font-size: 1rem;
  }

  .hero-copy p {
    font-size: 1.08rem;
  }
}

/* ===== PILLS & CHECKS ===== */
.pill,
.check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(255, 251, 245, 0.72);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--warm-subtle);
  width: 100%;
}

.check {
  padding: 0;
  background: transparent;
  color: var(--warm-muted);
  width: 100%;
}

.check-icon,
.pill-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--warm-accent-soft);
  color: var(--warm-accent);
  font-size: 0.85rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .pill {
    width: auto;
  }
}

/* ===== SECTION ===== */
.section {
  padding-top: 56px;
}

@media (min-width: 780px) {
  .section {
    padding-top: 72px;
  }
}

@media (min-width: 980px) {
  .section {
    padding-top: 88px;
  }
}

/* ===== SECTION HEADING ===== */
.section-heading {
  max-width: 800px;
  margin-bottom: 24px;
}

@media (min-width: 780px) {
  .section-heading {
    margin-bottom: 28px;
  }
}

/* ===== GRIDS ===== */
.grid-3,
.grid-2,
.stack,
.compact-grid,
.card-list,
.step-grid,
.legal-grid,
.support-grid,
.stats-band {
  display: grid;
  gap: 14px;
}

.stack {
  gap: 14px;
}

@media (min-width: 640px) {
  .grid-3,
  .grid-2,
  .compact-grid,
  .card-list,
  .step-grid,
  .legal-grid,
  .support-grid,
  .stats-band {
    gap: 18px;
  }

  .grid-2,
  .legal-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 780px) {
  .grid-3,
  .grid-2,
  .compact-grid,
  .card-list,
  .step-grid,
  .stats-band {
    gap: 20px;
  }

  .compact-grid,
  .step-grid,
  .stats-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .grid-3,
  .card-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== PANELS & CARDS ===== */
.panel,
.card,
.metric-card,
.testimonial,
.faq-card,
.cta-panel,
.legal-main,
.legal-side,
.support-card {
  border: 1px solid var(--warm-border);
  border-radius: 28px;
  background: var(--warm-panel);
  box-shadow: var(--warm-shadow);
}

.card,
.metric-card,
.testimonial,
.faq-card,
.legal-main,
.legal-side,
.support-card {
  padding: 20px;
}

@media (min-width: 640px) {
  .card,
  .metric-card,
  .testimonial,
  .faq-card,
  .legal-main,
  .legal-side,
  .support-card {
    padding: 24px;
  }
}

@media (min-width: 980px) {
  .panel,
  .card,
  .metric-card,
  .testimonial,
  .faq-card,
  .cta-panel,
  .legal-main,
  .legal-side,
  .support-card {
    border-radius: 34px;
  }

  .card,
  .metric-card,
  .testimonial,
  .faq-card,
  .legal-main,
  .legal-side,
  .support-card {
    padding: 28px;
  }
}

.card h3,
.metric-card h3,
.faq-card h3,
.support-card h3 {
  margin: 12px 0 0;
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .card h3,
  .metric-card h3,
  .faq-card h3,
  .support-card h3 {
    font-size: 1.55rem;
    line-height: 1.1;
    margin: 14px 0 0;
  }
}

/* ===== ICON BADGE ===== */
.icon-badge {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--warm-accent-soft);
  color: var(--warm-accent);
  font-size: 1.2rem;
}

@media (min-width: 640px) {
  .icon-badge {
    width: 52px;
    height: 52px;
    border-radius: 20px;
    font-size: 1.35rem;
  }
}

/* ===== FEATURE PANELS ===== */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

.feature .visual {
  display: grid;
  place-items: center;
  padding: 28px 22px;
  border-bottom: 1px solid #e4dbcf;
}

.feature .visual .icon-badge {
  width: 86px;
  height: 86px;
  border-radius: 26px;
  font-size: 2rem;
}

.feature .copy {
  padding: 24px 22px;
}

.feature .copy .mini-label {
  color: var(--warm-accent);
}

@media (min-width: 780px) {
  .feature {
    grid-template-columns: 200px 1fr;
  }

  .feature .visual {
    border-bottom: 0;
    border-right: 1px solid #e4dbcf;
    padding: 36px 20px;
  }

  .feature .visual .icon-badge {
    width: 102px;
    height: 102px;
    border-radius: 30px;
    font-size: 2.35rem;
  }

  .feature .copy {
    padding: 32px;
  }
}

@media (min-width: 980px) {
  .feature {
    grid-template-columns: 240px 1fr;
  }

  .feature .visual .icon-badge {
    width: 116px;
    height: 116px;
    border-radius: 34px;
    font-size: 2.7rem;
  }

  .feature .copy {
    padding: 36px;
  }
}

/* ===== PHONE FRAME ===== */
.phone-frame {
  position: relative;
  padding: 0;
  background: transparent;
  max-width: 480px;
  margin-inline: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(56px);
}

.phone-frame::before {
  top: 16px;
  left: -20px;
  width: 150px;
  height: 150px;
  background: #dce7df;
}

.phone-frame::after {
  right: -18px;
  bottom: 18px;
  width: 180px;
  height: 180px;
  background: var(--warm-highlight);
}

@media (min-width: 640px) {
  .phone-frame {
    padding: 8px;
  }
}

/* ===== IPHONE SHELL ===== */
.iphone-shell {
  position: relative;
  width: min(100%, 340px);
  margin-inline: auto;
  padding: 8px;
  border-radius: 46px;
  background: linear-gradient(135deg, #44484f 0%, #17191d 42%, #050608 100%);
  box-shadow:
    0 28px 90px rgba(25, 27, 30, 0.32),
    0 6px 18px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -3px 8px rgba(0, 0, 0, 0.42);
}

.iphone-screen {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 38px;
  background: #0d0f12;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 12px 20px rgba(0, 0, 0, 0.42),
    inset 0 -8px 16px rgba(0, 0, 0, 0.2);
}

.iphone-wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(123, 157, 118, 0.22), transparent 28%),
    radial-gradient(circle at bottom left, rgba(216, 197, 166, 0.22), transparent 34%),
    linear-gradient(180deg, #f7f1e8 0%, #efe5d7 52%, #e7dece 100%);
}

.iphone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 33px;
  border-radius: 999px;
  background: #020304;
  z-index: 3;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

.iphone-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 18px 12px 28px;
}

.iphone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 0;
  margin-top: 14px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #11161a;
}

.iphone-status-icons {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.battery-pill {
  display: inline-block;
  width: 24px;
  height: 11px;
  border: 1.8px solid #11161a;
  border-radius: 999px;
  position: relative;
}

.battery-pill::after {
  content: "";
  position: absolute;
  top: 1.4px;
  left: 1.6px;
  width: 16px;
  height: 5.8px;
  border-radius: 999px;
  background: #11161a;
}

.phone-inner {
  margin-top: 12px;
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.84);
  padding: 14px;
  backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82), 0 14px 30px rgba(66, 73, 68, 0.08);
}

.iphone-home-indicator {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 138px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42));
  z-index: 3;
}

.iphone-button {
  position: absolute;
  left: -3px;
  width: 4px;
  border-radius: 999px 0 0 999px;
  background: linear-gradient(180deg, #858a92 0%, #383d44 100%);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.24);
}

.iphone-button--mute { top: 118px; height: 28px; }
.iphone-button--volume-up { top: 164px; height: 56px; }
.iphone-button--volume-down { top: 234px; height: 56px; }
.iphone-button--power {
  left: auto;
  right: -3px;
  top: 182px;
  height: 82px;
  border-radius: 0 999px 999px 0;
}

@media (min-width: 640px) {
  .iphone-shell {
    width: min(100%, 390px);
    border-radius: 52px;
    padding: 10px;
  }

  .iphone-screen,
  .iphone-content {
    min-height: 700px;
  }

  .iphone-screen {
    border-radius: 42px;
  }

  .iphone-content {
    padding: 20px 14px 28px;
  }

  .iphone-island {
    width: 120px;
    height: 35px;
  }

  .iphone-status {
    font-size: 0.84rem;
    margin-top: 16px;
  }

  .phone-inner {
    border-radius: 28px;
    padding: 16px;
  }
}

@media (min-width: 980px) {
  .iphone-shell {
    width: min(100%, 420px);
    border-radius: 58px;
  }

  .iphone-screen,
  .iphone-content {
    min-height: 760px;
  }

  .iphone-screen {
    border-radius: 48px;
  }

  .iphone-content {
    padding: 22px 16px 30px;
  }

  .iphone-island {
    top: 12px;
    width: 126px;
    height: 37px;
  }

  .iphone-status {
    font-size: 0.88rem;
    margin-top: 18px;
    padding-inline: 12px;
  }

  .phone-inner {
    border-radius: 32px;
    padding: 18px;
    margin-top: 14px;
  }
}

/* ===== MINI CARD ===== */
.mini-card {
  border: 1px solid #e1d8cc;
  border-radius: 20px;
  background: white;
  padding: 14px;
  margin-top: 12px;
}

.mini-card.tint {
  background: #f7f1e7;
}

.mini-card.soft {
  background: var(--warm-accent-soft);
  border-color: #dbe7df;
}

@media (min-width: 640px) {
  .mini-card {
    border-radius: 24px;
    padding: 18px;
    margin-top: 14px;
  }
}

/* ===== MINI LABEL / TITLE ===== */
.mini-label {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #7b8a82;
}

@media (min-width: 640px) {
  .mini-label {
    font-size: 0.68rem;
    letter-spacing: 0.22em;
  }
}

.mini-title {
  margin: 10px 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

@media (min-width: 640px) {
  .mini-title {
    margin: 12px 0 8px;
    font-size: 1rem;
  }
}

/* ===== TESTIMONIAL ===== */
.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .avatar {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }
}

.role {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--warm-subtle);
}

/* ===== FAQ ===== */
.faq-card .faq-item + .faq-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #ddd2c3;
}

@media (min-width: 640px) {
  .faq-card .faq-item + .faq-item {
    margin-top: 22px;
    padding-top: 22px;
  }
}

/* ===== CTA PANEL ===== */
.cta-panel {
  padding: 28px 22px;
  background:
    radial-gradient(circle at top right, rgba(123, 157, 118, 0.16), transparent 28%),
    radial-gradient(circle at bottom left, rgba(216, 197, 166, 0.24), transparent 32%),
    rgba(255, 251, 245, 0.95);
}

@media (min-width: 640px) {
  .cta-panel {
    padding: 36px 32px;
  }
}

@media (min-width: 980px) {
  .cta-panel {
    padding: 38px;
  }
}

/* ===== COMPANY INTRO ===== */
.company-intro {
  padding: 20px;
}

@media (min-width: 640px) {
  .company-intro {
    padding: 24px;
  }
}

/* ===== STATS BAND ===== */
.stats-band {
  gap: 14px;
}

@media (min-width: 640px) {
  .stats-band {
    gap: 18px;
  }
}

.stat-pill {
  border: 1px solid var(--warm-border);
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.86);
  padding: 18px;
  box-shadow: var(--warm-shadow);
}

@media (min-width: 640px) {
  .stat-pill {
    border-radius: 28px;
    padding: 22px;
  }
}

.stat-pill strong {
  display: block;
  margin-top: 10px;
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

@media (min-width: 640px) {
  .stat-pill strong {
    font-size: 1.5rem;
    margin-top: 12px;
  }
}

.stat-pill span {
  display: block;
  margin-top: 8px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--warm-muted);
  line-height: 1.6;
}

@media (min-width: 640px) {
  .stat-pill span {
    margin-top: 10px;
    font-size: 1rem;
  }
}

/* ===== LEGAL HERO ===== */
.legal-hero {
  padding: 32px 0 12px;
}

.legal-hero h1 {
  margin-top: 20px;
}

.legal-hero p {
  max-width: 760px;
  margin-top: 16px;
}

@media (min-width: 640px) {
  .legal-hero {
    padding: 48px 0 12px;
  }

  .legal-hero h1 {
    margin-top: 22px;
  }

  .legal-hero p {
    margin-top: 18px;
  }
}

@media (min-width: 980px) {
  .legal-hero {
    padding: 54px 0 12px;
  }
}

/* ===== LEGAL GRID ===== */
.legal-grid {
  align-items: start;
}

.legal-main h2 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .legal-main h2 {
    font-size: 1.5rem;
    letter-spacing: -0.03em;
  }
}

.legal-main section + section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid #e1d8cc;
}

@media (min-width: 640px) {
  .legal-main section + section {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.legal-main ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.legal-main li + li {
  margin-top: 8px;
}

.legal-side {
  position: static;
}

@media (min-width: 980px) {
  .legal-side {
    position: sticky;
    top: 110px;
  }
}

/* ===== NOTICE ===== */
.notice {
  border: 1px solid #e4d7c7;
  border-radius: 22px;
  background: #fbf7f0;
  padding: 16px;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--warm-muted);
}

@media (min-width: 640px) {
  .notice {
    border-radius: 24px;
    padding: 18px;
  }
}

.notice strong {
  color: var(--warm-ink);
}

/* ===== STORE BADGE ===== */
.store-badge-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin: 10px 0 16px;
}

.store-badge-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.store-badge {
  display: block;
  width: auto;
  object-fit: contain;
}

.store-badge--apple {
  height: 120px;
  margin-block: -18px;
}

.hero-badge {
  height: 240px;
  margin-block: -36px;
}

@media (min-width: 640px) {
  .hero-badge {
    height: 276px;
    margin-block: -44px;
  }
}

/* ===== FOOTER ===== */
.footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 28px;
  color: var(--warm-subtle);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 0.88rem;
}

.footer-links {
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--warm-ink);
}

@media (min-width: 780px) {
  .footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 36px;
    gap: 18px;
  }

  .footer-links {
    gap: 18px;
  }
}
