@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --gray-50:  #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-800: #1E293B;
  --gray-900: #0F172A;
  --white:    #FFFFFF;
  --radius: 8px;
  --radius-sm: 8px;
  --radius-full: 999px;
  --max: 1200px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
}

*, *::before, *::after { box-sizing: border-box; }
html { height: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  min-height: 100%;
  margin: 0;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "PingFang SC", "PingFang TC", "Hiragino Sans GB", "Noto Sans CJK SC",
    Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  font-weight: 400;
  color: var(--gray-900);
  background: #fffdf8;
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: #2563EB; text-decoration: none; }
a:hover { text-decoration: underline; }
img, video { max-width: 100%; display: block; }

/* ── Container ─────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* ── Navigation ────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: env(safe-area-inset-top);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 24px;
  padding-right: 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex-shrink: 0;
}
.brand:hover { text-decoration: none !important; }
.brand-logo { display: none; }

.brand-logo-css {
  display: flex;
  align-items: stretch;
  border: 2px solid var(--gray-900);
  border-radius: 10px;
  font-size: 20px;
  letter-spacing: 0;
  overflow: hidden;
  background: var(--gray-900);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  height: 38px;
}
.brand-part-rec {
  display: flex;
  align-items: center;
  background: #007AFF;
  color: #fff;
  font-weight: 700;
  padding: 0 0 0 8px;
}
.brand-part-alli {
  display: flex;
  align-items: center;
  background: #e5e7eb;
  color: #111827;
  font-weight: 800;
  padding: 0 8px 0 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--gray-900);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #050505;
}
.nav-links a {
  color: #050505;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--gray-900); text-decoration: none; }

.nav-links .app-store-btn {
  display: flex;
  align-items: center;
  background: var(--gray-900);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s ease;
}
.nav-links .app-store-btn:hover { opacity: 0.9; text-decoration: none; color: #fff; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    gap: 12px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 8px 0; font-size: 16px; }
  .nav-links .app-store-btn { justify-content: center; margin-top: 4px; }
}

/* Hero */
.hero {
  padding: 58px 0 12px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 1.14fr);
  gap: 46px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 560px;
}

.social-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 7px 14px 7px 7px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.86);
  color: var(--gray-900);
  font-size: 14px;
  font-weight: 650;
  box-shadow: var(--shadow-sm);
}

.proof-stack {
  display: inline-flex;
  align-items: center;
  height: 30px;
}

.proof-stack span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-right: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #0F172A;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
}

.proof-stack span:nth-child(2) { background: #F59E0B; }
.proof-stack span:nth-child(3) { background: #14B8A6; }

h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(44px, 5.2vw, 66px);
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: 0;
  color: #000;
}

h1 .highlight { color: inherit; font-weight: inherit; }

.lede {
  margin: 0;
  max-width: 520px;
  color: #6B7280;
  font-size: 18px;
  line-height: 1.58;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 7px 17px 8px 15px;
  border-radius: 6px;
  background: #17131d;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  line-height: 0.9;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.store-badge span {
  display: flex;
  flex-direction: column;
}

.store-badge small {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}

.store-badge:hover {
  opacity: 0.93;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}

.app-store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  background: #050505;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.app-store-badge:hover {
  opacity: 0.92;
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--gray-900);
  font-weight: 700;
  font-size: 15px;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.secondary-btn:hover {
  border-color: rgba(15, 23, 42, 0.28);
  background: #fff;
  color: #000;
  transform: translateY(-1px);
  text-decoration: none;
}

.hero-showcase {
  position: relative;
  min-height: 800px;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  border: 10px solid #242424;
  border-radius: 54px;
  background: #111;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 2;
  width: 33%;
  height: 28px;
  border-radius: 0 0 18px 18px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-frame img {
  display: block;
  width: 100%;
  height: 100%;
  filter: blur(0);
  image-rendering: auto;
}

.phone-frame-primary {
  top: 18px;
  right: 0;
  z-index: 2;
  width: min(40vw, 355px);
  aspect-ratio: 1320 / 2868;
  transform: rotate(6deg);
  filter: blur(0);
}

.phone-frame-secondary {
  top: 84px;
  left: 6px;
  z-index: 1;
  width: min(31vw, 278px);
  aspect-ratio: 1320 / 2868;
  opacity: 0.96;
  transform: rotate(-6deg);
  filter: blur(0);
}

.extract-card {
  position: absolute;
  z-index: 4;
  padding: 12px 18px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.1;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.16);
}

.extract-card strong { font-size: 17px; }
.extract-card-top { top: 122px; right: -10px; }
.extract-card-bottom { bottom: 118px; left: 36px; }

.hero-image { display: none; }

@media (max-width: 980px) {
  .hero { min-height: 0; padding: 46px 0 34px; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-text { align-items: center; margin: 0 auto; }
  .lede { max-width: 620px; }
  .hero-ctas { justify-content: center; }
  .hero-showcase { min-height: 760px; max-width: 600px; width: 100%; margin: 0 auto; }
  .phone-frame-primary { right: 46px; width: 330px; }
  .phone-frame-secondary { left: 54px; width: 270px; }
  .extract-card-top { right: 50px; }
}

@media (max-width: 620px) {
  .hero { padding: 38px 0 18px; }
  .social-proof { max-width: 100%; font-size: 12px; }
  h1 { font-size: clamp(40px, 13.5vw, 58px); }
  .lede { font-size: 16px; }
  .store-badge { min-height: 48px; font-size: 19px; }
  .secondary-btn { min-height: 48px; }
  .hero-showcase { min-height: 580px; overflow: hidden; }
  .phone-frame { border-width: 7px; border-radius: 38px; }
  .phone-frame::before { top: 9px; height: 20px; }
  .phone-frame-primary { top: 28px; right: calc(50% - 184px); width: 250px; }
  .phone-frame-secondary { top: 92px; left: calc(50% - 184px); width: 196px; }
  .extract-card { padding: 9px 13px; font-size: 11px; border-radius: 12px; }
  .extract-card strong { font-size: 14px; }
  .extract-card-top { top: 106px; right: calc(50% - 190px); }
  .extract-card-bottom { bottom: 78px; left: calc(50% - 178px); }
}

/* Site-wide page frames */
.page-hero {
  padding: 78px 0 46px;
  text-align: center;
}

.page-hero .kicker,
.blog-info .kicker {
  margin-left: auto;
  margin-right: auto;
}

.page-hero .section-title,
.blog-info .section-title,
.page-hero h1 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  color: #000;
  font-size: clamp(42px, 5.8vw, 72px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-hero .section-subtitle,
.page-hero .lede,
.blog-info .section-subtitle {
  max-width: 660px;
  margin-left: auto;
  margin-right: auto;
}

.surface-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.feature,
.highlight-card,
.faq-item,
.gallery-item {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.card-inner { padding: 28px; }

section.card { padding: 0; }

.card .section-title,
.blog-card .section-title,
.blog-grid .section-title {
  font-size: clamp(22px, 2.6vw, 31px);
  line-height: 1.1;
}

.card .section-subtitle,
.blog-card .section-subtitle,
.blog-grid .section-subtitle {
  font-size: 15px;
}

.kicker {
  width: fit-content;
  padding: 7px 13px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-full);
  background: #fff;
  color: #111827;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: var(--shadow-sm);
}

.v2-announcement,
.feature-tag,
.trial-badge {
  border-radius: var(--radius-full);
  background: #FFF3C4;
  color: #7C4A03;
}

@media (max-width: 768px) {
  .page-hero { padding: 52px 0 30px; }
  .page-hero .section-title,
  .blog-info .section-title,
  .page-hero h1 { font-size: clamp(36px, 12vw, 52px); }
  .surface-row { grid-template-columns: 1fr; }
}

/* ── Section Headers ───────────────────────── */
section { padding: 80px 0; }

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  color: var(--gray-900);
}

.section-subtitle {
  margin: 0;
  color: var(--gray-500);
  font-size: 17px;
  max-width: 560px;
  line-height: 1.6;
}

/* ── Feature Grid ──────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
}

.feature {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 12px;
  line-height: 1;
}

.feature h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-900);
}

.feature p {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.65;
}

/* ── Highlight Cards ───────────────────────── */
.highlight-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.highlight-card.muted { opacity: 0.7; }

.highlight-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.highlight-card p {
  margin: 0;
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.65;
}

.feature-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: #FEF3C7;
  color: #92400E;
  margin-bottom: 12px;
}

.highlight-card.muted .feature-tag {
  background: var(--gray-100);
  color: var(--gray-500);
}

/* ── v2 Announcement ───────────────────────── */
.v2-announcement {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEF3C7;
  color: #92400E;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  width: fit-content;
}

/* ── Cards ─────────────────────────────────── */
.card {
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.card-inner { padding: 32px 28px; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

.callout {
  background: #FFF9DB;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 20px;
}
.callout strong { color: var(--gray-900); }

/* ── Lists ─────────────────────────────────── */
.list { margin: 0; padding: 0 0 0 20px; color: var(--gray-500); font-size: 14px; }
.list li { margin: 8px 0; }

/* ── Footer ────────────────────────────────── */
.footer {
  padding: 48px 0;
  color: var(--gray-400);
  font-size: 13px;
  text-align: center;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.footer a { color: var(--gray-500); }

/* ── Meta / Badges ─────────────────────────── */
.meta { color: var(--gray-400); font-size: 13px; }

.badges { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 768px) { .badges { justify-content: center; } }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.5);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 13px;
  white-space: nowrap;
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #059669;
}

.kicker {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
  color: #B45309;
  margin: 0 0 8px;
}

/* ── Pricing ───────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 40px 0;
}
@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 8px 0 32px;
  font-size: 15px;
}
.compare-table th, .compare-table td {
  padding: 18px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.compare-table th {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--gray-400);
}
.compare-table .feature-name { width: 50%; color: var(--gray-900); font-weight: 600; }
.compare-table .val-free, .compare-table .val-premium { width: 25%; text-align: center; }
.compare-table .val-premium { color: #059669; font-weight: 700; }
.locked {
  color: #DC2626;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.included { color: var(--gray-400); }
.trial-badge {
  display: inline-block;
  background: #059669;
  color: #fff;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  margin-bottom: 12px;
}

/* ── Gallery ───────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 24px;
  margin: 46px 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 8px solid #1F1F1F;
  background: #111;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  aspect-ratio: 9 / 19.5;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: var(--shadow-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

.lightbox {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { max-width: 90%; max-height: 90%; position: relative; transform: scale(0.95); transition: transform 0.35s ease; }
.lightbox.active .lightbox-content { transform: scale(1); }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 16px; box-shadow: 0 0 60px rgba(0,0,0,0.6); }
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  background: none; border: none;
  color: #fff; font-size: 36px;
  cursor: pointer; padding: 8px; line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.lightbox-close:hover { opacity: 1; }

/* ── FAQ ───────────────────────────────────── */
.faq-item {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-bottom: 12px;
}
.faq-item h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.faq-item p { margin: 0; color: var(--gray-500); font-size: 14px; line-height: 1.6; }

/* ── Privacy / Text pages ──────────────────── */
.prose { max-width: 720px; margin: 0 auto; line-height: 1.75; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }
.prose p { color: var(--gray-500); }
.prose ul { color: var(--gray-500); padding-left: 20px; }
.prose li { margin: 6px 0; }

/* ── Blog ──────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 768px) { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.blog-content {
  max-width: 720px;
  margin: 40px auto;
  line-height: 1.8;
}
.blog-content h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 24px; }
.blog-content h2 { margin-top: 48px; font-size: 22px; }
.blog-content img {
  width: 100%;
  border-radius: var(--radius);
  margin: 32px 0;
  border: 1px solid rgba(0,0,0,0.06);
}
.blog-content .post-meta {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-box {
  background: #FFF9DB;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 32px;
  border-radius: var(--radius);
  margin-top: 64px;
  text-align: center;
}

/* ── Utility ───────────────────────────────── */
.text-center { text-align: center; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 12px 16px; }
  section { padding: 56px 0; }
  .hero { padding: 32px 0 20px; }
  .section-title { font-size: 28px; }
}
