:root {
  color-scheme: light;
  --bg: #f8f2ea;
  --bg-strong: #fffaf4;
  --paper: rgba(255, 251, 245, 0.84);
  --paper-strong: rgba(255, 255, 255, 0.94);
  --ink: #2a211b;
  --muted: #6f6157;
  --accent: #e16b3d;
  --accent-deep: #c85229;
  --accent-soft: #ffe0d1;
  --line: rgba(53, 35, 24, 0.1);
  --shadow: 0 28px 80px rgba(94, 52, 28, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1180px;
  --font-sans: "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-sans);
  background:
    radial-gradient(circle at top left, rgba(255, 173, 116, 0.22), transparent 24%),
    radial-gradient(circle at 85% 10%, rgba(102, 190, 255, 0.18), transparent 20%),
    linear-gradient(180deg, #fff8f2 0%, #f7eee4 40%, #f3e8dc 100%);
}

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

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

.page-shell {
  min-height: 100vh;
}

.topbar,
.section,
.hero {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 4px;
  backdrop-filter: blur(20px) saturate(160%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0) 40%),
    linear-gradient(135deg, #ffe5d7, #ffd19b 48%, #ff8f53 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 10px 22px rgba(182, 88, 42, 0.24);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.topnav {
  display: inline-flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

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

.locale-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
}

.locale-button {
  min-width: 54px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.locale-button.is-active {
  background: white;
  color: var(--ink);
  box-shadow: 0 8px 18px rgba(53, 35, 24, 0.08);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 34px 0 56px;
}

.support-hero,
.section {
  padding: 28px 0 56px;
}

.eyebrow {
  margin: 0;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  max-width: 11ch;
}

.lead {
  margin-top: 22px;
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.24rem);
  line-height: 1.75;
}

.hero-actions,
.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}

.button-primary {
  background: linear-gradient(180deg, var(--accent), var(--accent-deep));
  color: white;
  box-shadow: 0 18px 38px rgba(201, 82, 41, 0.28);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.64);
  border-color: var(--line);
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-points li::before {
  content: "•";
  color: var(--accent-deep);
  margin-right: 10px;
}

.hero-visual,
.showcase-grid,
.workflow-grid,
.feature-grid {
  display: grid;
  gap: 18px;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--paper-strong), var(--paper));
  box-shadow: var(--shadow);
}

.spotlight-card {
  padding: 24px;
}

.warm {
  background: linear-gradient(180deg, #fff3ea, #ffe7d6);
}

.stat-card,
.feature-card,
.step-card,
.faq-card,
.policy-card,
.cta-card {
  padding: 24px;
}

.card-header {
  display: flex;
  gap: 8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(92, 74, 61, 0.24);
}

.mini-label {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.spotlight-card h2,
.section-head h2,
.cta-card h2 {
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mini-copy,
.feature-card p,
.step-card p,
.faq-list dd,
.policy-card p,
.stat-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.queue-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.queue-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(53, 35, 24, 0.08);
}

.queue-item span,
.step-index {
  font-variant-numeric: tabular-nums;
  color: var(--accent-deep);
  font-weight: 800;
}

.queue-item em {
  color: var(--muted);
  font-style: normal;
}

.queue-item.current {
  background: linear-gradient(180deg, #fff7ef, #ffe8d8);
}

.section-head {
  margin-bottom: 22px;
}

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

.workflow-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.showcase-image {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: white;
}

.cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-links a {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  color: var(--accent-deep);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.faq-list dt {
  font-weight: 700;
}

.faq-list dd {
  margin-left: 0;
}

.policy-card h2 {
  margin-top: 24px;
  font-size: 1.26rem;
}

.policy-card h2:first-child {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero,
  .feature-grid,
  .workflow-grid,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

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

  h1 {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .topbar,
  .section,
  .hero {
    width: min(calc(100% - 24px), var(--max));
  }

  .topnav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .spotlight-card,
  .stat-card,
  .feature-card,
  .step-card,
  .faq-card,
  .policy-card,
  .cta-card {
    padding: 20px;
  }
}
