:root {
  --ink: #1a1f2c;
  --ink-soft: #5c6370;
  --ink-faint: #8b92a0;
  --line: #e8ebf0;
  --line-strong: #d8dde6;
  --bg: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef2f7;
  --blue: #3d8bd9;
  --mint: #3d9a5c;
  --rose: #d94b6b;
  --tint-mint: #e8f5ec;
  --tint-blue: #e8f2fc;
  --tint-lavender: #f0ebfa;
  --tint-rose: #fce8ee;
  --tint-amber: #faf3e0;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 2px rgba(26, 31, 44, 0.04);
  --shadow: 0 8px 30px rgba(26, 31, 44, 0.06);
  --shadow-lg: 0 20px 50px rgba(26, 31, 44, 0.08);
  --font: "Segoe UI", system-ui, -apple-system, "PingFang SC", "Microsoft YaHei", sans-serif;
  --text-base: 0.9375rem;
  --text-sm: 0.8125rem;
  --text-xs: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--ink);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: min(1080px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.narrow {
  max-width: 560px;
}

.prose {
  max-width: 640px;
}

.muted {
  color: var(--ink-soft);
}

.small {
  font-size: var(--text-sm);
}

.lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 0.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 56px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 650;
  font-size: 0.9375rem;
  color: var(--ink);
  text-decoration: none;
}

.logo img {
  width: 28px;
  height: 28px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  justify-content: center;
  margin-left: 0.5rem;
}

.nav a {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.nav a:hover {
  color: var(--ink);
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  border-bottom-color: var(--mint);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
}

.lang-btn {
  padding: 0.3rem 0.65rem;
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
}

.lang-btn.is-active {
  background: var(--bg);
  color: var(--ink);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--text-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 2px 8px rgba(26, 31, 44, 0.15);
}

.btn-primary:hover {
  color: #fff;
  box-shadow: 0 4px 14px rgba(26, 31, 44, 0.2);
}

.btn-ghost {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--ink);
}

.btn-sm {
  padding: 0.4rem 0.85rem;
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 0.65rem 1.35rem;
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 2.75rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 0%, rgba(79, 168, 98, 0.09), transparent 55%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(61, 139, 217, 0.07), transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--bg) 72%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.2;
  margin: 0.5rem 0 0.85rem;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--tint-mint);
  color: var(--mint);
  font-size: var(--text-xs);
  font-weight: 600;
  border: 1px solid rgba(61, 154, 92, 0.15);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.25rem;
}

.center-actions {
  justify-content: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-wrap {
  position: relative;
}

.phone-wrap::before {
  content: "";
  position: absolute;
  inset: -12% -8%;
  background: radial-gradient(circle, rgba(61, 139, 217, 0.12), transparent 65%);
  border-radius: 50%;
  z-index: 0;
}

.phone-card {
  position: relative;
  z-index: 1;
  width: min(240px, 100%);
  padding: 0.65rem;
  border-radius: 22px;
  background: linear-gradient(145deg, #2a3142, #1a1f2c);
  box-shadow: var(--shadow-lg);
}

.phone-screen {
  background: var(--bg);
  border-radius: 16px;
  padding: 1rem;
  display: grid;
  gap: 0.55rem;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.75rem;
  background: var(--surface);
  border-radius: 10px;
  font-size: var(--text-sm);
  font-weight: 600;
}

.mock-row .label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: var(--text-xs);
}

.mock-row .val {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.mint { background: var(--mint); }
.dot.blue { background: var(--blue); }
.dot.rose { background: var(--rose); }

/* Story — garage startup narrative */
.story-section {
  padding: 3rem 0;
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.story-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.story-aside h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  line-height: 1.25;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.story-aside .story-lead {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  line-height: 1.7;
}

.story-quote {
  margin: 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--mint);
  background: var(--bg);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--text-sm);
  color: var(--ink);
  font-style: italic;
  line-height: 1.65;
  box-shadow: var(--shadow-sm);
}

.story-timeline {
  display: grid;
  gap: 0.85rem;
}

.story-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.story-step:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.story-step-num {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--tint-mint);
  color: var(--mint);
  font-size: var(--text-xs);
  font-weight: 700;
  flex-shrink: 0;
}

.story-step h3 {
  margin: 0 0 0.25rem;
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.story-step p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.6;
}

.story-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.story-value-tag {
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--tint-blue);
  color: var(--blue);
  border: 1px solid rgba(61, 139, 217, 0.12);
}

.story-cta {
  margin-top: 1.25rem;
}

/* Principles row */
.principles {
  padding: 2.5rem 0;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.principle-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
}

.principle-card .icon {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.principle-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 650;
}

.principle-card p {
  margin: 0;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}

/* Sections */
.section {
  padding: 2.75rem 0;
}

.page-hero {
  padding: 2.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
  font-weight: 700;
}

.section-head {
  text-align: center;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-head p {
  font-size: var(--text-sm);
  margin: 0;
}

.stats-grid,
.feature-grid {
  display: grid;
  gap: 0.85rem;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stat-card,
.feature-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg);
  transition: box-shadow 0.15s, transform 0.15s;
}

.stat-card:hover,
.feature-card:hover {
  box-shadow: var(--shadow-sm);
}

.stat-card h2,
.feature-card h2,
.feature-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9375rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.stat-card p,
.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.55;
}

.stat-card .stat-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-bottom: 0.65rem;
}

.stat-card .stat-icon .ph {
  font-size: 1.25rem;
  line-height: 1;
}

.stat-icon--mint {
  background: var(--tint-mint);
  color: var(--mint);
}

.stat-icon--blue {
  background: var(--tint-blue);
  color: var(--blue);
}

.stat-icon--lavender {
  background: var(--tint-lavender);
  color: #7b5fcb;
}

.feature-card .feat-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.9rem;
  margin-bottom: 0.65rem;
  background: rgba(255, 255, 255, 0.65);
}

.feature-card .feat-icon .ph,
.download-icon .ph {
  font-size: 1.25rem;
  line-height: 1;
}

.download-icon .ph {
  font-size: 1.75rem;
}

.about-bg-heading {
  margin: 2rem 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 650;
}

.about-bg-section .about-chapter h3 {
  font-size: 1rem;
  font-weight: 650;
  margin-top: 1.5rem;
}

.tint-mint { background: var(--tint-mint); border-color: rgba(61, 154, 92, 0.12); }
.tint-blue { background: var(--tint-blue); border-color: rgba(61, 139, 217, 0.12); }
.tint-lavender { background: var(--tint-lavender); border-color: rgba(123, 95, 203, 0.1); }
.tint-rose { background: var(--tint-rose); border-color: rgba(217, 75, 107, 0.1); }
.tint-amber { background: var(--tint-amber); border-color: rgba(217, 163, 0, 0.12); }

/* About full story */
.about-story {
  padding: 2rem 0 3rem;
}

.about-chapter {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.about-chapter:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.about-chapter h2 {
  font-size: 1.1rem;
  font-weight: 650;
  margin: 0 0 0.65rem;
  color: var(--ink);
}

.about-chapter p {
  margin: 0 0 0.75rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.7;
}

.about-chapter p:last-child {
  margin-bottom: 0;
}

.about-manifesto {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--tint-mint), var(--tint-blue));
  border: 1px solid var(--line);
}

.about-manifesto p {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.65;
}

.about-contact {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.about-contact h2 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 650;
}

.about-contact p {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.65;
}

.about-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--mint);
  text-decoration: none;
}

.about-contact-email:hover {
  color: var(--blue);
}

.about-contact-email .ph {
  font-size: 1.125rem;
}

/* CTA band */
.cta-band {
  padding: 2.25rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.cta-band h2 {
  font-size: 1.2rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
}

.cta-band p {
  margin: 0 0 1rem;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}

/* Download */
.download-section {
  padding-top: 0;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 640px;
  margin-inline: auto;
}

.download-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--bg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.download-card--active {
  box-shadow: var(--shadow);
}

.download-card--soon {
  background: var(--surface);
  opacity: 0.92;
}

.download-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--tint-mint);
  color: var(--mint);
  margin-bottom: 0.25rem;
}

.download-card--soon .download-icon {
  background: var(--surface-2);
  color: var(--ink-faint);
}

.download-card h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 650;
}

.download-card p {
  margin: 0 0 0.5rem;
  font-size: var(--text-sm);
  flex: 1;
}

.download-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--blue);
  background: var(--tint-blue);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.download-card button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

/* Blog */
.blog-section {
  padding-top: 0;
}

.blog-list {
  display: grid;
  gap: 1rem;
}

.blog-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: box-shadow 0.15s, border-color 0.15s;
}

.blog-row:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--line-strong);
}

.blog-row-media {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--surface);
}

.blog-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.blog-row:hover .blog-row-media img {
  transform: scale(1.02);
}

.blog-row-body time {
  font-size: var(--text-xs);
  color: var(--ink-faint);
}

.blog-row-body h2 {
  margin: 0.3rem 0 0.4rem;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.35;
}

.blog-row-body h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-row-body h2 a:hover {
  color: var(--blue);
}

.blog-row-body p {
  font-size: var(--text-sm);
  margin: 0 0 0.6rem;
  line-height: 1.55;
}

.article-page {
  padding: 2rem 0 3rem;
}

.article-cover {
  margin: 1rem 0 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 2 / 1;
  background: var(--surface);
}

.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.article-header {
  margin-bottom: 1.25rem;
}

.article-header time {
  font-size: var(--text-xs);
  color: var(--ink-faint);
}

.article-header h1 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.article-header .lead {
  margin: 0;
}

.name-breakdown {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0;
}

.name-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.name-item strong {
  font-size: 0.9375rem;
  color: var(--ink);
}

.name-item span {
  font-size: var(--text-sm);
  color: var(--ink-soft);
  line-height: 1.55;
}

.text-link {
  font-weight: 600;
  font-size: var(--text-sm);
}

.article-body {
  margin-top: 1.25rem;
}

.article-body p {
  margin: 0 0 0.85rem;
  font-size: var(--text-sm);
}

/* Contact */
.contact-form {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.3rem;
  font-size: var(--text-sm);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  font-size: var(--text-sm);
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(61, 139, 217, 0.12);
}

.flash {
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  margin: 0.85rem 0;
  font-size: var(--text-sm);
}

.flash-success {
  background: var(--tint-mint);
  color: var(--mint);
}

.flash-error {
  background: var(--tint-rose);
  color: var(--rose);
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: grid;
  gap: 1.25rem;
}

.footer-inner strong {
  font-size: 0.9375rem;
}

.footer-inner .muted {
  font-size: var(--text-sm);
  margin: 0.25rem 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-nav a {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--ink);
}

.copyright {
  margin: 0;
  font-size: var(--text-xs);
  color: var(--ink-faint);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .story-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .phone-card {
    width: min(220px, 85%);
  }

  .stats-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .blog-row {
    grid-template-columns: 1fr;
  }

  .blog-row-media {
    aspect-ratio: 16 / 9;
  }

  .download-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
  }

  .nav,
  .header-actions .btn-primary {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  body.nav-open .nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
}
