/* --- 00-tokens.css --- */
:root {
  /* Light Palette (default) */
  --ink: #101614;
  --ink-2: #38443F;
  --muted: #6B7A73;
  --paper: #F4F6F3;
  --surface: #FFFFFF;
  --surface-2: #EBEFEA;
  --line: #DDE3DD;
  --accent: #0E8F63;
  --accent-ink: #0A6E4C;
  --accent-soft: #DCF0E6;
  --map-land: #E7ECE6;
  --map-road: #FFFFFF;
  --map-water: #D9E6EA;
  --shadow: 0 20px 60px rgba(16, 40, 32, 0.10);

  /* Radii System */
  --r-pill: 999px;
  --r-card: 20px;
  --r-chip: 12px;
  --r-phone: 40px;

  /* Fonts */
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ECF1EE;
    --ink-2: #B6C2BC;
    --muted: #8A968F;
    --paper: #0C110F;
    --surface: #141A17;
    --surface-2: #1C2421;
    --line: #26302B;
    --accent: #3ECF97;
    --accent-ink: #6FE0B4;
    --accent-soft: #12261E;
    --map-land: #18211D;
    --map-road: #26312B;
    --map-water: #14232A;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }
}


/* --- 01-base.css --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  color: var(--muted);
  max-width: 62ch;
}

/* Utilities */
.shell {
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
}

.section {
  padding-block: clamp(72px, 9vw, 140px);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

.card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 32px;
  box-shadow: var(--shadow);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.btn-primary:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}

.btn-ghost {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background-color: var(--surface-2);
  border-color: var(--line);
}

/* Reveal System */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--i, 0) * 0.08s);
  }

  .reveal.is-in {
    opacity: 1;
    transform: translateY(0);
  }
}

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


/* --- 10-header.css --- */
.hdr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 68px;
  display: flex;
  align-items: center;
  transition: height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}

.hdr-header.is-scrolled {
  height: 60px;
  background-color: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

@media (prefers-reduced-transparency: reduce) {
  .hdr-header.is-scrolled {
    background-color: var(--paper);
    backdrop-filter: none;
  }
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.hdr-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ink);
}

.hdr-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hdr-link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.hdr-link:hover {
  color: var(--accent);
}

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

.hdr-cta {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.hdr-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px;
}

.hdr-icon-close {
  display: none;
}

/* Mobile Nav */
@media (max-width: 767px) {
  .hdr-toggle {
    display: block;
  }

  .hdr-nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background-color: var(--surface);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    box-shadow: var(--shadow);
  }

  .hdr-header.is-nav-open .hdr-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hdr-header.is-nav-open .hdr-icon-open {
    display: none;
  }

  .hdr-header.is-nav-open .hdr-icon-close {
    display: block;
  }
}


/* --- 20-hero.css --- */
.hero-section {
  padding-top: clamp(100px, 12vh, 140px);
  padding-bottom: clamp(60px, 8vh, 100px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  gap: 40px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-title {
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 48ch;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Mockup Visual */
.hero-visual {
  position: relative;
  width: 100%;
}

.hero-mockup-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero-glow-backdrop {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 35%, transparent) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.hero-mockup-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(16, 40, 32, 0.18);
  background-color: var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-mockup-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(16, 40, 32, 0.24);
}

.hero-mockup-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--r-card);
}

/* Floating Chip with Live Dot */
.hero-chip {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 10px 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
  white-space: nowrap;
}

.hero-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--accent);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.hero-live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.75;
  animation: heroPulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes heroPulse {
  0% {
    transform: scale(0.6);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.hero-chip-text {
  font-size: 0.84rem;
  color: var(--ink-2);
}

.hero-chip-text strong {
  color: var(--ink);
}

@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-mockup-container {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-live-dot::after {
    animation: none;
  }
}


/* --- 30-promise.css --- */
.promise-section {
  padding-block: 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.promise-col {
  padding-inline: 32px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.promise-grid .promise-col:first-child {
  border-left: none;
  padding-left: 0;
}

.promise-keyword {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--ink);
}

.promise-desc {
  font-size: 0.9375rem;
  color: var(--muted);
}

@media (max-width: 767px) {
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .promise-col {
    padding-inline: 0;
    border-left: none;
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }

  .promise-grid .promise-col:first-child {
    border-top: none;
    padding-top: 0;
  }
}


/* --- 40-features.css --- */
.feat-header {
  margin-bottom: 48px;
}

.feat-title {
  max-width: 24ch;
}

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feat-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.feat-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 440px;
}

.feat-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--r-chip);
  background-color: var(--surface-2);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.feat-icon-accent {
  background-color: var(--accent);
  color: #FFFFFF;
}

.feat-card-title {
  margin-bottom: 8px;
  color: var(--ink);
}

.feat-card-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.feat-image-preview {
  margin-top: 16px;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 260px;
}

.feat-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feat-image-preview-sm {
  margin-top: 12px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  max-height: 160px;
}

.feat-img-sm {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feat-card-nearby {
  background-color: var(--accent-soft);
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
}

.feat-card-nearby .feat-card-desc {
  color: var(--ink-2);
}

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

  .feat-card-large {
    grid-column: span 1;
    grid-row: span 1;
    min-height: auto;
  }
}


/* --- 50-nearby.css --- */
.near-section {
  padding-block: 60px;
  background-color: var(--paper);
}

.near-header {
  margin-bottom: 32px;
}

.near-rail-container {
  position: relative;
  width: 100%;
}

.near-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.near-rail::-webkit-scrollbar {
  display: none;
}

.near-pill {
  scroll-snap-align: start;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  padding: 14px 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.near-pill:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.near-pill-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--surface-2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.near-pill-label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}


/* --- 60-steps.css --- */
.step-header {
  margin-bottom: 56px;
}

.step-inner {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 4%;
  align-items: center;
}

.step-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-rail::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 23px;
  width: 2px;
  background-color: var(--line);
  z-index: 0;
}

.step-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  z-index: 1;
}

.step-node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--surface);
  border: 2px solid var(--accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(14, 143, 99, 0.12);
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.step-item:hover .step-node {
  transform: scale(1.08);
  background-color: var(--accent);
  color: #FFFFFF;
}

.step-content {
  padding-top: 6px;
}

.step-action {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
}

.step-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* Animated SVG Route Panel */
.step-visual {
  position: relative;
  width: 100%;
}

.step-map-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background-color: var(--surface);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.step-route-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Active Dash Route Animation */
.step-active-route {
  animation: routeDash 12s linear infinite;
}

@keyframes routeDash {
  to {
    stroke-dashoffset: -240;
  }
}

/* Pulse Ring Animation on Marker */
.step-pulse-ring {
  animation: markerPulse 1.5s ease-out infinite;
}

@keyframes markerPulse {
  0% {
    r: 8px;
    opacity: 0.8;
  }
  100% {
    r: 22px;
    opacity: 0;
  }
}

/* Floating Status Overlay */
.step-status-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 16px 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.step-status-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--ink-2);
}

.step-status-title strong {
  color: var(--ink);
}

.step-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  flex-shrink: 0;
}

/* Progress Bar */
.step-progress-bar {
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background-color: var(--surface-2);
  overflow: hidden;
}

.step-progress-fill {
  height: 100%;
  background-color: var(--accent);
  border-radius: 3px;
  width: 0%;
  animation: progressFill 3.5s ease-in-out infinite;
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.step-status-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.775rem;
  color: var(--muted);
  font-weight: 500;
}

.step-eta {
  color: var(--accent);
  font-weight: 600;
}

@media (max-width: 991px) {
  .step-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .step-active-route,
  .step-pulse-ring,
  .step-progress-fill {
    animation: none;
  }
  .step-progress-fill {
    width: 75%;
  }
}


/* --- 70-privacy.css --- */
.priv-inner {
  display: grid;
  grid-template-columns: 46% 50%;
  gap: 4%;
  align-items: center;
}

.priv-visual {
  width: 100%;
}

.priv-card {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.priv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16);
}

.priv-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--line);
}

.priv-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}

.priv-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background-color: var(--surface-2);
  color: var(--ink);
  font-weight: 500;
  font-size: 0.85rem;
  border: 1px solid var(--line);
}

.priv-chip i {
  color: var(--accent);
  font-size: 1rem;
}

.priv-content {
  display: flex;
  flex-direction: column;
}

.priv-title {
  margin-bottom: 24px;
}

.priv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.priv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1.05rem;
  color: var(--ink-2);
}

.priv-check {
  color: var(--accent);
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.priv-cta {
  display: flex;
}

@media (max-width: 991px) {
  .priv-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .priv-visual {
    order: 2;
  }

  .priv-content {
    order: 1;
  }
}


/* --- 80-faq.css --- */
.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--accent) 30%, var(--line));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.faq-summary {
  padding: 24px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  padding: 0 32px 24px 32px;
}

.faq-answer p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .faq-summary {
    padding: 20px 24px;
    font-size: 1.05rem;
  }

  .faq-answer {
    padding: 0 24px 20px 24px;
  }
}


/* --- 85-download.css --- */
.dl-section {
  padding-block: clamp(60px, 8vw, 100px);
}

.dl-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(48px, 6vw, 72px) 32px;
  background: linear-gradient(180deg, var(--surface) 0%, var(--accent-soft) 100%);
  border: 1px solid color-mix(in srgb, var(--accent) 20%, var(--line));
}

.dl-logo-img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin-bottom: 24px;
  box-shadow: 0 12px 28px rgba(14, 143, 99, 0.22);
}

.dl-title {
  margin-bottom: 16px;
  max-width: 20ch;
}

.dl-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 36px;
  text-align: center;
}

.dl-badge-container {
  display: flex;
  justify-content: center;
}

.dl-appstore-link {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
  border-radius: 12px;
}

.dl-appstore-link:hover {
  transform: translateY(-3px);
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.25));
}

.dl-appstore-link:active {
  transform: scale(0.97);
}

.dl-official-badge-img {
  display: block;
  width: auto;
  height: 52px;
  object-fit: contain;
}


/* --- 90-footer.css --- */
.ftr-footer {
  border-top: 1px solid var(--line);
  padding-block: 40px;
  background-color: var(--paper);
}

.ftr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ftr-brand-col {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ftr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}

.ftr-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--line);
}

.ftr-copy {
  font-size: 0.875rem;
  color: var(--muted);
}

.ftr-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.ftr-link {
  font-size: 0.875rem;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.ftr-link:hover {
  color: var(--accent);
}

@media (max-width: 767px) {
  .ftr-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .ftr-brand-col {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .ftr-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* --- 95-doc.css --- */
.doc-header {
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  background-color: var(--paper);
  position: sticky;
  top: 0;
  z-index: 100;
}

.doc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.doc-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.2s ease;
}

.doc-back-link:hover {
  color: var(--accent);
}

.doc-main {
  padding-block: 60px 100px;
}

.doc-content {
  max-width: 68ch;
  margin-inline: auto;
}

.doc-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 12px;
}

.doc-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 40px;
  display: block;
}

.doc-body section {
  margin-bottom: 36px;
}

.doc-body h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--ink);
}

.doc-body p {
  font-size: 1.05rem;
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 16px;
}

.doc-body ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.doc-body li {
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 8px;
}
