/* ==========================================================
   BagHop — Premium Landing Page
   Apple-inspired black & white design system
   ========================================================== */

:root {
  --black: #000;
  --near-black: #0a0a0c;
  --dark-card: #161618;
  --white: #fff;
  --off-white: #f5f5f7;
  --gray-1: #86868b;
  --gray-2: #6e6e73;
  --gray-3: #d2d2d7;
  --text-dark: #1d1d1f;
  --radius-lg: 28px;
  --radius-md: 18px;
  --font-sans: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --nav-mark-inner: #000;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1200px;
  --container-narrow: 820px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

[id] { scroll-margin-top: 84px; }

a:focus-visible,
button:focus-visible,
select:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}
.pricing-table-wrap:focus-visible,
.policy-price-table-wrap:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 32px; }

/* ---------- Section base ---------- */
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--off-white); color: var(--text-dark); }

.section-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 18px;
}
.section-eyebrow.light { color: var(--gray-1); }

.section-title {
  font-size: clamp(38px, 5.4vw, 68px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.section-title.light {
  background: linear-gradient(180deg, #fff 30%, #9a9aa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-lead {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--gray-1);
  max-width: 640px;
  margin-bottom: 56px;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.12s; }
.reveal.d2 { transition-delay: 0.24s; }
.reveal.d3 { transition-delay: 0.36s; }
.reveal.d4 { transition-delay: 0.48s; }
.reveal.d5 { transition-delay: 0.6s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 30px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease-out), background 0.35s, color 0.35s, box-shadow 0.35s;
}
.btn-lg { padding: 18px 40px; font-size: 18px; }
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover { transform: scale(1.04); box-shadow: 0 12px 40px rgba(255, 255, 255, 0.22); }
.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.1); transform: scale(1.03); }
.chev { font-size: 1.15em; line-height: 1; transform: translateY(-1px); }

/* ==========================================================
   NAV
   ========================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(0, 0, 0, 0.68);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
}
.nav-mark { width: 30px; height: 30px; color: var(--white); }
.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.language-switcher::after {
  content: "⌄";
  position: absolute;
  right: 13px;
  top: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1;
  pointer-events: none;
  transform: translateY(-58%);
}
.language-select {
  -webkit-appearance: none;
  appearance: none;
  min-width: 82px;
  height: 38px;
  padding: 0 32px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.language-select:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.language-select:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
.language-select option { color: var(--black); background: var(--white); }
.nav-cta {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.nav-cta:hover { transform: scale(1.05); box-shadow: 0 6px 24px rgba(255, 255, 255, 0.25); }
.nav-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}
.nav-menu-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}
.nav-menu-toggle.is-open span:first-child { transform: translateY(3.25px) rotate(45deg); }
.nav-menu-toggle.is-open span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 22px;
  right: 22px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(10, 10, 12, 0.96);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.mobile-nav .mobile-nav-cta {
  margin-top: 8px;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 180px 32px 0;
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  width: 1100px;
  height: 620px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.13) 0%, transparent 62%);
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 26px;
}
.hero-title {
  font-size: clamp(58px, 9.5vw, 128px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  background: linear-gradient(180deg, #fff 35%, #77777d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 28px;
}
.hero-title .dot { color: #fff; -webkit-text-fill-color: #fff; }
.hero-sub {
  font-size: clamp(20px, 2.6vw, 30px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 12px;
}
.hero-tagline {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 44px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 96px;
}
.hero-visual { position: relative; z-index: 2; }
.hero-figure {
  max-width: 1280px;
  margin: 0 auto;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  box-shadow: 0 -20px 90px rgba(255, 255, 255, 0.08);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}
.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 36px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.7);
  white-space: nowrap;
}

/* ==========================================================
   PHILOSOPHY
   ========================================================== */
.philosophy { padding: 170px 0 190px; }
.phrase-block { display: flex; flex-direction: column; gap: 34px; }
.phrase {
  font-size: clamp(24px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.16);
  transition: color 0.9s var(--ease-out);
}
.phrase.lit { color: rgba(255, 255, 255, 0.96); }
.phrase.strong.lit {
  background: linear-gradient(90deg, #fff, #b8b8c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ==========================================================
   PROBLEM
   ========================================================== */
.problem { padding: 140px 0 150px; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 64px 0 26px;
}
.problem-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, opacity 1s var(--ease-out);
}
.problem-card.in:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1); }
.p-icon { width: 44px; height: 44px; margin-bottom: 20px; }
.p-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.problem-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.problem-card p { font-size: 14.5px; color: var(--gray-2); line-height: 1.75; }
.problem-photo {
  margin-top: 44px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
}
.problem-photo img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

/* ==========================================================
   FEATURES (bento)
   ========================================================== */
.features { padding: 150px 0 160px; }
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.bento-card {
  background: var(--dark-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-out), border-color 0.6s, opacity 1s var(--ease-out);
}
.bento-card.in:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.18); }
.bento-text { padding: 46px 46px 30px; }
.bento-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 14px;
}
.bento-card h3 {
  font-size: clamp(26px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  color: var(--white);
}
.bento-desc { font-size: 15.5px; color: var(--gray-1); line-height: 1.8; max-width: 460px; }
.bento-visual { margin-top: auto; }
.bento-tall .bento-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.bento-wide {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: stretch;
}
.bento-wide .bento-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}
.pay-badges {
  list-style: none;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 26px;
}
.pay-badges li {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 6px 14px;
  border-radius: 999px;
}

/* Phone mock */
.phone-stage {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 56px 40px 0;
  background: radial-gradient(ellipse at 50% 110%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
}
.phone {
  width: 300px;
  border-radius: 44px 44px 0 0;
  border: 10px solid #2c2c2e;
  border-bottom: none;
  background: #0c0c0e;
  padding: 14px 12px 0;
  position: relative;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.55);
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: #2c2c2e;
  border-radius: 999px;
}
.phone-screen { padding-top: 32px; }
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 6px 12px;
}
.app-logo { font-weight: 800; font-size: 16px; color: #fff; letter-spacing: -0.02em; }
.app-status {
  font-size: 11px;
  font-weight: 700;
  color: #0be081;
  background: rgba(11, 224, 129, 0.13);
  padding: 4px 12px;
  border-radius: 999px;
}
.app-map {
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1e;
}
.app-map svg { width: 100%; height: 150px; display: block; }
.map-road { fill: none; stroke: #2e2e34; stroke-width: 10; }
.map-road.thin { stroke-width: 5; }
.map-route {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-dasharray: 7 7;
  animation: routeflow 1.4s linear infinite;
}
@keyframes routeflow { to { stroke-dashoffset: -14; } }
.map-origin { fill: #6e6e73; }
.map-dest { fill: none; stroke: #fff; stroke-width: 3; }
.map-truck { fill: #fff; stroke: #0c0c0e; stroke-width: 3; }
.app-card {
  background: #17171b;
  border-radius: 16px 16px 0 0;
  margin-top: 10px;
  padding: 16px 16px 22px;
}
.app-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  padding: 5px 0;
}
.app-key { color: #7c7c84; }
.app-val { color: #fff; font-weight: 600; }
.app-val.em { color: #0be081; }
.app-progress {
  height: 5px;
  background: #2a2a30;
  border-radius: 999px;
  margin-top: 12px;
  overflow: hidden;
}
.app-progress span {
  display: block;
  height: 100%;
  width: 68%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff, #9f9fa6);
  animation: progress-pulse 2.6s ease-in-out infinite;
}
@keyframes progress-pulse { 0%, 100% { width: 66%; } 50% { width: 72%; } }

/* Full-bleed freedom card */
.bento-full {
  grid-column: 1 / -1;
  position: relative;
  min-height: 520px;
  justify-content: flex-end;
}
.bento-visual.full { position: absolute; inset: 0; margin: 0; }
.bento-visual.full img { width: 100%; height: 100%; object-fit: cover; }
.bento-overlay {
  position: relative;
  z-index: 2;
  padding: 56px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 55%, transparent 100%);
}
.bento-overlay .bento-desc { max-width: 520px; }

/* ==========================================================
   HOW IT WORKS
   ========================================================== */
.how { padding: 140px 0 150px; }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 64px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px 34px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, opacity 1s var(--ease-out);
}
.step.in:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1); }
.step-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  background: var(--black);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.step-visual {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 22px;
}
.step-visual img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.step h3 { font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { font-size: 14px; color: var(--gray-2); line-height: 1.75; }

/* ==========================================================
   GALLERY
   ========================================================== */
.gallery { padding: 150px 0 160px; overflow: hidden; }
.gallery-head { margin-bottom: 20px; }
.gallery-track-wrap {
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 30px 0 20px;
}
.gallery-track-wrap::-webkit-scrollbar { display: none; }
.gallery-track {
  display: flex;
  gap: 24px;
  padding: 0 max(32px, calc((100vw - var(--container)) / 2 + 32px));
  width: max-content;
}
.g-item {
  width: clamp(260px, 26vw, 360px);
  flex-shrink: 0;
}
.g-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.7s var(--ease-out);
}
.g-item:hover img { transform: scale(1.03); }
.g-item figcaption {
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-1);
  letter-spacing: 0.02em;
}

/* ==========================================================
   SAFETY
   ========================================================== */
.safety { padding: 140px 0 150px; }
.safety-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 64px;
}
.safety-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 46px 44px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s, opacity 1s var(--ease-out);
}
.safety-card.in:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0, 0, 0, 0.1); }
.s-icon { width: 52px; height: 52px; margin-bottom: 24px; }
.s-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.safety-card h3 { font-size: 23px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 12px; }
.safety-card p { font-size: 15.5px; color: var(--gray-2); }

/* ==========================================================
   VISION
   ========================================================== */
.vision {
  position: relative;
  padding: 220px 0;
  overflow: hidden;
  text-align: center;
}
.vision-bg { position: absolute; inset: 0; }
.vision-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.42; }
.vision-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #000 0%, transparent 26%, transparent 72%, #000 100%);
}
.vision-content { position: relative; z-index: 2; }
.vision-title {
  font-size: clamp(40px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 4px 44px rgba(0, 0, 0, 0.6);
  margin-bottom: 30px;
}
.vision-text {
  font-size: clamp(16px, 1.9vw, 19px);
  color: rgba(255, 255, 255, 0.88);
  line-height: 2;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
  margin-bottom: 64px;
}
.vision-stats {
  display: flex;
  justify-content: center;
  gap: clamp(40px, 7vw, 96px);
}
.v-stat { display: flex; flex-direction: column; gap: 6px; }
.v-num {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}
.v-num small { font-size: 0.42em; font-weight: 700; margin-left: 2px; }
.v-label { font-size: 14px; font-weight: 600; color: rgba(255, 255, 255, 0.65); letter-spacing: 0.06em; }

/* ==========================================================
   SERVICE AREAS
   ========================================================== */
.areas {
  padding: 140px 0 150px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.08), transparent 32%),
    var(--black);
}
.areas-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 64px;
  align-items: end;
}
.areas .section-title { margin-bottom: 0; }
.areas-lead {
  color: var(--gray-1);
  font-size: clamp(16px, 1.8vw, 20px);
  max-width: 520px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 64px;
}
.area-card {
  min-height: 250px;
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
}
.area-index {
  color: var(--gray-1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
}
.area-card h3 {
  margin-top: 40px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
.area-status {
  margin-top: 14px;
  color: var(--gray-1);
  font-size: 14px;
}

/* ==========================================================
   FAQ
   ========================================================== */
.faq { padding: 140px 0 150px; }
.faq .section-title { max-width: 760px; }
.faq-list {
  margin-top: 58px;
  border-top: 1px solid var(--gray-3);
}
.faq-item { border-bottom: 1px solid var(--gray-3); }
.faq-question {
  width: 100%;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 36px;
  gap: 24px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--text-dark);
  font: inherit;
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 700;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-3);
  border-radius: 50%;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: var(--text-dark);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-panel { overflow: hidden; opacity: 1; }
.faq-panel[hidden] { display: none; }
.faq-ready .faq-panel {
  transition: max-height 0.4s var(--ease-out), opacity 0.3s ease;
}
.faq-ready .faq-item:not(.is-open) .faq-panel { opacity: 0; }
.faq-answer {
  max-width: 860px;
  padding: 0 64px 32px 0;
  color: var(--gray-2);
  font-size: 16px;
  line-height: 1.9;
}
.faq-answer a {
  color: var(--text-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ==========================================================
   PRICING
   ========================================================== */
.pricing {
  padding: 150px 0 160px;
  background:
    radial-gradient(ellipse 820px 420px at 78% 2%, rgba(255, 255, 255, 0.1), transparent 65%),
    var(--black);
}
.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 64px;
  align-items: end;
}
.pricing .section-title { margin-bottom: 0; }
.pricing-lead {
  max-width: 500px;
  color: var(--gray-1);
  font-size: clamp(16px, 1.8vw, 20px);
}
.pricing-table-wrap {
  margin-top: 64px;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.045);
  -webkit-overflow-scrolling: touch;
}
.pricing-table {
  width: 100%;
  min-width: 1050px;
  border-collapse: collapse;
  color: var(--white);
  font-variant-numeric: tabular-nums;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: right;
  white-space: nowrap;
}
.pricing-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #161618;
  color: var(--gray-1);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-table th:first-child,
.pricing-table td:first-child {
  position: sticky;
  left: 0;
  text-align: left;
}
.pricing-table thead th:first-child { z-index: 2; }
.pricing-table tbody th {
  background: #111113;
  color: var(--gray-3);
  font-size: 14px;
  font-weight: 600;
}
.pricing-table tbody td {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}
.pricing-table th:nth-child(5),
.pricing-table td:nth-child(5) {
  min-width: 180px;
  text-align: center;
}
.pricing-table th:last-child,
.pricing-table td:last-child {
  min-width: 250px;
  text-align: left;
}
.pricing-table tbody:last-of-type tr:last-child th,
.pricing-table tbody:last-of-type tr:last-child td { border-bottom: 0; }
.pricing-scroll-hint {
  display: none;
  margin-top: 10px;
  color: var(--gray-1);
  font-size: 12px;
}
.pricing-expand {
  width: min(100%, 420px);
  min-height: 54px;
  margin: 22px auto 0;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s var(--ease-out);
}
.pricing-expand:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
.pricing-expand[hidden] { display: none; }
.pricing-expand-icon {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.pricing-expand-icon::before,
.pricing-expand-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s var(--ease-out);
}
.pricing-expand-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.pricing-expand[aria-expanded="true"] .pricing-expand-icon::after {
  transform: translate(-50%, -50%) rotate(0);
}
[data-pricing-extra]:not([hidden]) tr {
  animation: pricing-row-in 0.35s var(--ease-out) both;
}
@keyframes pricing-row-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-rules-head {
  margin-top: 64px;
  padding-top: 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.pricing-rules-eyebrow {
  color: var(--gray-1);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.pricing-rules-title {
  margin-top: 9px;
  color: var(--white);
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.035em;
  line-height: 1.25;
}
.pricing-rules-copy {
  color: var(--gray-1);
  font-size: 15px;
  line-height: 1.8;
}
.pricing-rules {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.pricing-rule {
  position: relative;
  min-height: 340px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}
.pricing-rule-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.pricing-rule-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  border-radius: 15px;
  background: var(--black);
}
.pricing-rule-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: var(--white);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pricing-rule-label {
  padding: 8px 12px;
  border-radius: 999px;
  background: #f0f0f2;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
}
.pricing-rule h3 {
  margin-top: 28px;
  color: var(--text-dark);
  font-size: clamp(22px, 2vw, 26px);
  letter-spacing: -0.025em;
  line-height: 1.35;
}
.pricing-rule p {
  margin-top: 10px;
  color: var(--gray-2);
  font-size: 14px;
  line-height: 1.75;
}
.pricing-rule-summary {
  margin-top: auto;
  padding: 17px 18px;
  display: grid;
  gap: 5px;
  border-radius: 14px;
  background: #f3f3f5;
}
.pricing-rule-summary span {
  color: var(--gray-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pricing-rule-summary strong {
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.4;
}
.pricing-note {
  margin-top: 20px;
  color: var(--gray-1);
  font-size: 13px;
}

/* ==========================================================
   CTA
   ========================================================== */
.cta {
  padding: 190px 0 200px;
  text-align: center;
  background:
    radial-gradient(ellipse 900px 480px at 50% 118%, rgba(255, 255, 255, 0.14) 0%, transparent 62%),
    var(--black);
}
.cta-title {
  font-size: clamp(44px, 7vw, 92px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 35%, #85858c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 22px;
}
.cta-sub {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 52px;
}
.cta-actions { display: flex; justify-content: center; gap: 18px; flex-wrap: wrap; }

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--black);
  color: var(--gray-1);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 60px 0 40px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); letter-spacing: -0.02em; }
.footer-mission { font-size: 13.5px; margin-top: 12px; max-width: 420px; }
.footer-links { display: grid; gap: 18px; }
.footer-nav { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-nav a {
  color: var(--gray-1);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-nav.policy-links {
  max-width: 680px;
  justify-content: flex-end;
  gap: 12px 24px;
}
.footer-nav.policy-links a {
  color: var(--gray-2);
  font-size: 12.5px;
}
.footer-nav.policy-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 12.5px;
  color: var(--gray-2);
}

/* ==========================================================
   POLICY / LEGAL PAGES
   ========================================================== */
.policy-page { background: var(--off-white); }
.policy-nav-link {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.policy-hero {
  padding: 170px 0 90px;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.13), transparent 34%),
    var(--black);
  color: var(--white);
}
.policy-kicker {
  color: var(--gray-1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.policy-title {
  max-width: 940px;
  margin-top: 18px;
  font-size: clamp(40px, 7vw, 78px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.policy-summary {
  max-width: 720px;
  margin-top: 28px;
  color: var(--gray-1);
  font-size: clamp(16px, 1.8vw, 19px);
}
.policy-content {
  padding: 80px 0 120px;
  background: var(--off-white);
}
.policy-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 780px);
  gap: 72px;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 11px;
}
.policy-toc p {
  margin-bottom: 4px;
  color: var(--gray-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.policy-toc a {
  color: var(--gray-2);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
}
.policy-toc a:hover { color: var(--text-dark); }
.policy-toc--long {
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
}
.policy-body { min-width: 0; }
.policy-meta {
  display: flex;
  gap: 12px 28px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  color: var(--gray-2);
  font-size: 13px;
}
.policy-section {
  padding: 0 0 48px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--gray-3);
}
.policy-section:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.policy-section h2 {
  margin-bottom: 20px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.policy-section h3 {
  margin: 30px 0 10px;
  font-size: 19px;
}
.policy-section p,
.policy-section li {
  color: #424245;
  font-size: 15.5px;
  line-height: 1.9;
}
.policy-section p + p { margin-top: 14px; }
.policy-section ul,
.policy-section ol {
  margin: 14px 0 0 1.3em;
  display: grid;
  gap: 8px;
}
.policy-section a {
  color: var(--text-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}
.policy-callout {
  margin-top: 20px;
  padding: 22px 24px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}
.policy-callout p {
  color: #424245;
  font-size: 14.5px;
  line-height: 1.8;
}
.policy-callout a {
  color: var(--text-dark);
  font-weight: 600;
  text-underline-offset: 3px;
}
.policy-language-notice {
  margin: 0 0 48px;
}
.policy-language-notice + .policy-operator {
  margin-top: -24px;
}
.policy-operator {
  margin: 0 0 48px;
}
.disclosure-list {
  display: grid;
  border-top: 1px solid var(--gray-3);
}
.disclosure-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--gray-3);
}
.disclosure-row dt {
  font-size: 14px;
  font-weight: 700;
}
.disclosure-row dd {
  min-width: 0;
  color: #424245;
  font-size: 15px;
  line-height: 1.85;
}
.policy-price-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--gray-3);
  border-radius: 14px;
  background: var(--white);
}
.policy-price-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-variant-numeric: tabular-nums;
}
.policy-price-table th,
.policy-price-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #e5e5e7;
  text-align: right;
  white-space: nowrap;
}
.policy-price-table th:first-child,
.policy-price-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: var(--white);
  text-align: left;
}
.policy-price-table thead th {
  background: #ececee;
  color: var(--gray-2);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.policy-price-table thead th:first-child {
  z-index: 2;
  background: #ececee;
}
.policy-price-table tbody th { font-size: 13px; }
.policy-price-table tbody td { font-size: 14px; font-weight: 600; }
.policy-price-table th:nth-child(5),
.policy-price-table td:nth-child(5) {
  min-width: 180px;
  text-align: center;
}
.policy-price-table tbody:last-of-type tr:last-child th,
.policy-price-table tbody:last-of-type tr:last-child td { border-bottom: 0; }
.policy-scroll-hint { color: var(--gray-2); }
.policy-pricing-expand {
  margin-left: 0;
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.policy-pricing-expand:hover {
  border-color: #343438;
  background: #343438;
}
.policy-related {
  margin-top: 64px;
  padding: 30px;
  border-radius: var(--radius-md);
  background: var(--black);
  color: var(--white);
}
.policy-related h2 { font-size: 20px; }
.policy-related-links {
  display: flex;
  gap: 10px 22px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.policy-related a {
  color: var(--gray-3);
  font-size: 13px;
  font-weight: 600;
  text-underline-offset: 3px;
}

/* ==========================================================
   IMAGE PLACEHOLDER (until generated images are dropped in)
   ========================================================== */
.img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.07) 0%, transparent 55%),
    linear-gradient(150deg, #131316 0%, #1e1e23 55%, #101013 100%);
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  padding: 24px;
}
.img-ph svg { width: 46px; height: 46px; opacity: 0.6; }
.img-ph .ph-name {
  font-family: "SF Mono", ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 999px;
}
.img-ph .ph-desc { font-size: 12px; line-height: 1.6; max-width: 300px; }
.img-ph.img-ph-bg {
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px 22px;
}
.img-ph.img-ph-bg svg { width: 20px; height: 20px; opacity: 0.4; }
.img-ph.img-ph-bg .ph-name { opacity: 0.65; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .problem-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .bento-wide { flex-direction: column; }
  .phone-stage { padding-top: 20px; }
  .pricing-rules { grid-template-columns: 1fr; }
  .policy-layout { grid-template-columns: 180px minmax(0, 1fr); gap: 44px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-inner { gap: 12px; padding: 12px 22px; }
  .nav-cta { display: none; }
  .nav-menu-toggle { display: inline-flex; }
  .language-switcher { margin-left: auto; }
  .container, .container-narrow { padding: 0 22px; }
  .hero { padding-top: 140px; }
  .hero-figure img { aspect-ratio: 4 / 3; }
  .hero-caption { white-space: normal; width: 88%; }
  .problem-grid, .steps, .safety-grid, .bento { grid-template-columns: 1fr; }
  .bento-text, .bento-wide .bento-text, .bento-overlay { padding: 32px 26px; }
  .bento-full { min-height: 440px; }
  .problem-photo img { aspect-ratio: 4 / 3; }
  .areas, .faq, .pricing { padding: 100px 0 110px; }
  .areas-head, .pricing-head { grid-template-columns: 1fr; gap: 24px; }
  .area-grid { grid-template-columns: 1fr; margin-top: 42px; }
  .area-card { min-height: 200px; padding: 30px; }
  .faq-list { margin-top: 40px; }
  .faq-question { padding: 24px 0; grid-template-columns: minmax(0, 1fr) 32px; gap: 16px; }
  .faq-icon { width: 32px; height: 32px; }
  .faq-answer { padding: 0 0 26px; font-size: 15px; }
  .pricing-table-wrap { margin-top: 42px; border-radius: 20px; }
  .pricing-table {
    min-width: 980px;
    table-layout: auto;
  }
  .policy-price-table {
    min-width: 720px;
    table-layout: auto;
  }
  .pricing-table th,
  .pricing-table td,
  .policy-price-table th,
  .policy-price-table td {
    padding: 14px 8px;
  }
  .pricing-table th:first-child,
  .pricing-table td:first-child,
  .policy-price-table th:first-child,
  .policy-price-table td:first-child {
    width: auto;
  }
  .pricing-table thead th,
  .policy-price-table thead th {
    font-size: 10px;
    letter-spacing: 0.04em;
  }
  .pricing-table tbody td { font-size: 15px; }
  .pricing-scroll-hint { display: block; }
  .pricing-expand { width: 100%; margin-top: 18px; }
  .pricing-rules-head {
    margin-top: 48px;
    padding-top: 36px;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pricing-rules { grid-template-columns: 1fr; }
  .pricing-rule { min-height: 300px; padding: 24px; }
  .vision { padding: 150px 0; }
  .vision-stats { flex-direction: column; gap: 34px; }
  .footer-inner { flex-direction: column; }
  .footer-nav.policy-links {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 12px;
  }
  .policy-nav-link { display: none; }
  .policy-hero { padding: 140px 0 70px; }
  .policy-content { padding: 60px 0 90px; }
  .policy-layout { grid-template-columns: 1fr; gap: 0; }
  .policy-toc { display: none; }
  .disclosure-row { grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
  .policy-related { padding: 24px; }
  .policy-related-links {
    display: grid;
    grid-template-columns: 1fr;
  }
}
