:root {
  --bg: #f8f4ec;
  --bg-soft: #f1eadb;
  --surface: rgba(255, 253, 248, 0.8);
  --surface-strong: #fffdf8;
  --surface-dark: #0f555b;
  --surface-darker: #09343e;
  --text: #152532;
  --text-soft: #576673;
  --text-inverse: #f8f4ec;
  --line: rgba(13, 132, 142, 0.14);
  --teal: #0b8a93;
  --teal-2: #0a5a65;
  --gold: #d79a25;
  --gold-soft: #efc15f;
  --red: #d55b47;
  --shadow: 0 20px 60px rgba(9, 52, 62, 0.12);
  --shadow-lift: 0 28px 70px rgba(9, 52, 62, 0.18);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 154, 37, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(11, 138, 147, 0.12), transparent 26%),
    linear-gradient(180deg, #fcfaf5 0%, #f5efe3 100%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: var(--teal);
  color: var(--text-inverse);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.section {
  padding: 5.5rem 0;
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.5), rgba(236, 230, 218, 0.8));
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(216, 167, 45, 0.18), transparent 24%),
    linear-gradient(180deg, var(--surface-darker) 0%, var(--surface-dark) 100%);
  color: var(--text-inverse);
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2.5rem;
}

.section-heading h2,
.hero-copy h1 {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.section-heading-light {
  color: var(--text-inverse);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--teal-2);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2.5rem;
  height: 1px;
  background: currentColor;
}

.section-dark .eyebrow {
  color: var(--gold-soft);
}

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(252, 250, 245, 0.78);
  border-bottom: 1px solid rgba(11, 138, 147, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  width: 3.35rem;
  height: 3.35rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 18px rgba(9, 52, 62, 0.12));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--text);
}

.brand-text small {
  margin-top: 0.22rem;
  color: var(--text-soft);
  font-size: 0.74rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-weight: 700;
}

.nav .menu,
.mobile-menu .menu,
.footer-links .menu {
  display: contents;
}

.nav .menu-item,
.mobile-menu .menu-item,
.footer-links .menu-item {
  list-style: none;
}

.nav a,
.footer-links a,
.footer-social a {
  position: relative;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.nav a::after,
.footer-links a::after,
.footer-social a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.footer-links a:hover,
.footer-social a:hover {
  color: var(--teal);
}

.nav a:hover::after,
.nav a:focus-visible::after,
.footer-links a:hover::after,
.footer-social a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible,
.info-card:hover,
.benefit-card:hover,
.safety-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--text-inverse);
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  box-shadow: 0 14px 35px rgba(11, 138, 147, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 20px 42px rgba(11, 138, 147, 0.3);
}

.button-secondary {
  color: var(--teal-2);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(11, 138, 147, 0.14);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.76);
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 0;
  border-radius: 1rem;
  background: rgba(11, 138, 147, 0.08);
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0.25rem auto;
  background: var(--teal-2);
  transition: transform 180ms ease, opacity 180ms ease;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1rem 1rem;
  border-top: 1px solid rgba(11, 138, 147, 0.08);
  background: rgba(252, 250, 245, 0.96);
}

.mobile-menu a {
  padding: 0.2rem 0;
  font-weight: 700;
}

.mobile-menu.is-open {
  display: flex;
}

.hero {
  padding-top: 4rem;
}

.hero-grid,
.local-grid,
.app-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  max-width: 10ch;
}

.hero-copy p,
.local-copy p,
.app-copy p,
.footer-brand p,
.faq-item p {
  color: var(--text-soft);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin: 2.4rem 0 0;
  list-style: none;
}

.hero-stats li {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.5);
}

.hero-stats strong,
.visual-card strong,
.store-button strong,
.app-card strong {
  display: block;
  font-size: 1rem;
}

.hero-stats span,
.visual-card span,
.store-button span,
.app-card span {
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
}

.hero-art {
  position: relative;
  min-height: 39rem;
  border: 1px solid rgba(11, 138, 147, 0.08);
  border-radius: 2.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 253, 248, 0.96)),
    linear-gradient(140deg, rgba(215, 154, 37, 0.12), rgba(11, 138, 147, 0.08));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sun-glow {
  position: absolute;
  top: 3rem;
  right: 4rem;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 154, 37, 0.34), transparent 68%);
}

.route {
  position: absolute;
  border: 3px dashed rgba(11, 138, 147, 0.32);
  border-radius: 999px;
}

.route-a {
  inset: 5rem 5rem auto 4rem;
  height: 12rem;
  transform: rotate(-12deg);
}

.route-b {
  inset: auto 3rem 5rem 5rem;
  height: 10rem;
  transform: rotate(9deg);
}

.pin {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50% 50% 50% 0;
  background: var(--red);
  transform: rotate(-45deg);
  box-shadow: 0 8px 20px rgba(213, 91, 71, 0.24);
}

.pin::after {
  content: "";
  position: absolute;
  inset: 0.35rem;
  border-radius: 50%;
  background: white;
}

.pin-a {
  top: 5.8rem;
  left: 5.4rem;
}

.pin-b {
  right: 6rem;
  bottom: 8rem;
}

.bridge {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 3.2rem;
  height: 10rem;
}

.bridge-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 1.8rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(10, 90, 101, 0.5), transparent);
}

.bridge-arches {
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: 5.7rem;
  background:
    radial-gradient(circle at 10% 100%, transparent 2.2rem, rgba(10, 90, 101, 0.25) 2.25rem, rgba(10, 90, 101, 0.25) 2.5rem, transparent 2.52rem),
    radial-gradient(circle at 30% 100%, transparent 2.2rem, rgba(10, 90, 101, 0.25) 2.25rem, rgba(10, 90, 101, 0.25) 2.5rem, transparent 2.52rem),
    radial-gradient(circle at 50% 100%, transparent 2.2rem, rgba(10, 90, 101, 0.25) 2.25rem, rgba(10, 90, 101, 0.25) 2.5rem, transparent 2.52rem),
    radial-gradient(circle at 70% 100%, transparent 2.2rem, rgba(10, 90, 101, 0.25) 2.25rem, rgba(10, 90, 101, 0.25) 2.5rem, transparent 2.52rem),
    radial-gradient(circle at 90% 100%, transparent 2.2rem, rgba(10, 90, 101, 0.25) 2.25rem, rgba(10, 90, 101, 0.25) 2.5rem, transparent 2.52rem);
}

.scooter {
  position: absolute;
  left: 52%;
  top: 46%;
  width: 15rem;
  height: 10rem;
  transform: translate(-50%, -50%);
}

.wheel {
  position: absolute;
  bottom: 0;
  width: 2.9rem;
  height: 2.9rem;
  border: 0.45rem solid var(--teal-2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
}

.wheel-left {
  left: 1rem;
}

.wheel-right {
  right: 1rem;
}

.deck {
  position: absolute;
  left: 2.2rem;
  right: 2.2rem;
  bottom: 1.9rem;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.stem {
  position: absolute;
  right: 3.6rem;
  bottom: 2.5rem;
  width: 0.5rem;
  height: 4.7rem;
  border-radius: 999px;
  background: var(--text);
  transform: rotate(12deg);
}

.handle {
  position: absolute;
  right: 2.5rem;
  top: 1.65rem;
  width: 2.6rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--text);
}

.bolt-icon {
  position: absolute;
  left: 50%;
  top: 1.8rem;
  width: 1.1rem;
  height: 1.6rem;
  background: var(--gold);
  clip-path: polygon(52% 0, 100% 0, 66% 43%, 100% 43%, 31% 100%, 45% 57%, 0 57%);
  transform: translateX(-50%);
}

.visual-card,
.info-card,
.benefit-card,
.safety-card,
.store-button,
.faq-item,
.bridge-panel {
  border: 1px solid rgba(11, 138, 147, 0.1);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.visual-card {
  position: absolute;
  padding: 1rem 1.15rem;
  backdrop-filter: blur(18px);
}

.card-top {
  left: 1.5rem;
  top: 1.5rem;
}

.card-bottom {
  right: 1.5rem;
  bottom: 1.5rem;
}

.steps-grid,
.benefits-grid,
.safety-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.info-card,
.benefit-card,
.safety-card {
  padding: 1.5rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.info-card:hover,
.benefit-card:hover,
.safety-card:hover,
.faq-item:hover {
  box-shadow: var(--shadow-lift);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(11, 138, 147, 0.12), rgba(215, 154, 37, 0.22));
  color: var(--teal-2);
  font-weight: 800;
}

.info-card h3,
.benefit-card h3,
.safety-card h3,
.local-copy h2,
.app-copy h2 {
  margin: 0 0 0.85rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.34rem;
  line-height: 1.2;
}

.info-card p,
.benefit-card p,
.safety-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.safety-card {
  background: rgba(255, 255, 255, 0.06);
}

.safety-card p,
.section-dark .safety-card h3 {
  color: rgba(247, 242, 233, 0.84);
}

.local-grid,
.app-grid,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.bridge-panel {
  position: relative;
  min-height: 28rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(215, 154, 37, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 244, 236, 0.98)),
    linear-gradient(120deg, rgba(215, 154, 37, 0.1), rgba(11, 138, 147, 0.08));
}

.local-glow {
  position: absolute;
  inset: auto auto 3rem -1rem;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11, 138, 147, 0.12), transparent 70%);
}

.local-route {
  position: absolute;
  left: 2.4rem;
  right: 3rem;
  top: 3.8rem;
  height: 8rem;
  border: 3px dashed rgba(11, 138, 147, 0.28);
  border-bottom: 0;
  border-radius: 3rem 8rem 0 0;
  transform: rotate(-6deg);
}

.route-secondary {
  left: 8rem;
  right: 1.8rem;
  top: 2.9rem;
  height: 6rem;
  opacity: 0.45;
  transform: rotate(4deg);
}

.local-pin {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px rgba(11, 138, 147, 0.18);
}

.local-pin::after {
  content: "";
  position: absolute;
  inset: 0.32rem;
  border-radius: 50%;
  background: var(--gold-soft);
}

.local-pin-start {
  left: 4.2rem;
  top: 5.8rem;
}

.local-pin-end {
  right: 4rem;
  top: 4.7rem;
}

.bridge-sketch {
  position: absolute;
  inset: auto 2rem 5.4rem 2rem;
  height: 9.5rem;
  background:
    linear-gradient(0deg, transparent 84%, rgba(10, 90, 101, 0.42) 84%, rgba(10, 90, 101, 0.42) 86%, transparent 86%),
    radial-gradient(circle at 10% 100%, transparent 3rem, rgba(10, 90, 101, 0.3) 3.04rem, rgba(10, 90, 101, 0.3) 3.3rem, transparent 3.32rem),
    radial-gradient(circle at 30% 100%, transparent 3rem, rgba(10, 90, 101, 0.3) 3.04rem, rgba(10, 90, 101, 0.3) 3.3rem, transparent 3.32rem),
    radial-gradient(circle at 50% 100%, transparent 3rem, rgba(10, 90, 101, 0.3) 3.04rem, rgba(10, 90, 101, 0.3) 3.3rem, transparent 3.32rem),
    radial-gradient(circle at 70% 100%, transparent 3rem, rgba(10, 90, 101, 0.3) 3.04rem, rgba(10, 90, 101, 0.3) 3.3rem, transparent 3.32rem),
    radial-gradient(circle at 90% 100%, transparent 3rem, rgba(10, 90, 101, 0.3) 3.04rem, rgba(10, 90, 101, 0.3) 3.3rem, transparent 3.32rem);
}

.shore-line {
  position: absolute;
  left: 2rem;
  right: 2rem;
  top: 11.6rem;
  height: 2rem;
  border-top: 2px solid rgba(11, 138, 147, 0.28);
  border-radius: 999px;
}

.local-water {
  position: absolute;
  left: 2rem;
  right: 2rem;
  bottom: 6rem;
  height: 2.5rem;
  background:
    radial-gradient(circle at 8% 50%, rgba(11, 138, 147, 0.4) 0 1.3rem, transparent 1.32rem),
    radial-gradient(circle at 24% 68%, rgba(11, 138, 147, 0.34) 0 1rem, transparent 1.02rem),
    radial-gradient(circle at 43% 44%, rgba(11, 138, 147, 0.32) 0 1.05rem, transparent 1.07rem),
    radial-gradient(circle at 61% 68%, rgba(11, 138, 147, 0.34) 0 1rem, transparent 1.02rem),
    radial-gradient(circle at 78% 46%, rgba(11, 138, 147, 0.34) 0 1.1rem, transparent 1.12rem),
    radial-gradient(circle at 94% 66%, rgba(11, 138, 147, 0.3) 0 0.9rem, transparent 0.92rem);
}

.location-chip {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(11, 138, 147, 0.1);
  color: var(--teal-2);
  font-weight: 800;
}

.local-badge,
.local-mini-card {
  position: absolute;
  border: 1px solid rgba(11, 138, 147, 0.12);
  border-radius: 1.35rem;
  background: rgba(255, 253, 248, 0.8);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px rgba(9, 52, 62, 0.1);
}

.local-badge {
  left: 1.5rem;
  top: 1.5rem;
  max-width: 15rem;
  padding: 1rem 1.05rem;
}

.badge-label,
.local-mini-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.local-badge strong,
.local-mini-card strong {
  display: block;
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.4;
}

.local-mini-card {
  bottom: 1.5rem;
  width: 12.5rem;
  padding: 1rem;
}

.local-mini-left {
  left: 1.5rem;
}

.local-mini-right {
  right: 1.5rem;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.store-button {
  min-width: 12rem;
  padding: 1rem 1.2rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.phone-wrap {
  display: flex;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(21rem, 100%);
  padding: 0.8rem;
  border-radius: 2.8rem;
  background: #12202b;
  box-shadow: 0 32px 60px rgba(12, 24, 24, 0.24);
}

.phone-notch {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  width: 7rem;
  height: 1.45rem;
  border-radius: 0 0 1rem 1rem;
  background: #0a1010;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  min-height: 38rem;
  border-radius: 2.1rem;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(215, 154, 37, 0.22), transparent 22%),
    linear-gradient(180deg, #faf7ef 0%, #ede5d8 100%);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 90, 101, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 90, 101, 0.06) 1px, transparent 1px);
  background-size: 2.6rem 2.6rem;
}

.map-route {
  position: absolute;
  inset: 6rem 2.4rem 10rem;
  border: 4px dashed rgba(11, 138, 147, 0.35);
  border-radius: 42% 58% 55% 45% / 36% 48% 52% 64%;
  transform: rotate(-7deg);
}

.map-pin {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  transform: rotate(-45deg);
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: 0.33rem;
  border-radius: 50%;
  background: var(--gold-soft);
}

.map-pin-a {
  top: 7rem;
  left: 4.5rem;
}

.map-pin-b {
  top: 14rem;
  right: 4rem;
}

.map-pin-c {
  bottom: 11rem;
  left: 7rem;
}

.app-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 14px 34px rgba(10, 90, 101, 0.14);
  backdrop-filter: blur(16px);
}

.top-card {
  top: 3rem;
}

.bottom-card {
  bottom: 1.2rem;
}

.bottom-card button {
  min-width: 6.6rem;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: var(--text-inverse);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  padding: 1.2rem 1.3rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.faq-item summary {
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0.9rem 0 0;
}

.footer {
  padding: 3.2rem 0 1.4rem;
  background: #f4eee2;
  border-top: 1px solid rgba(11, 138, 147, 0.08);
}

.footer-brand-link {
  margin-bottom: 1rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(17, 60, 59, 0.08);
  color: var(--text-soft);
}

.footer-bottom-line {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin: 0;
}

.studio-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
  color: var(--gold);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, color 180ms ease;
}

.studio-credit:hover,
.studio-credit:focus-visible {
  transform: translateY(-1px);
  color: var(--gold-soft);
}

.studio-label {
  color: var(--text-soft);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: none;
}

.studio-name-text {
  display: inline-block;
}

@media (max-width: 1080px) {
  .hero-grid,
  .local-grid,
  .app-grid,
  .footer-grid,
  .steps-grid,
  .benefits-grid,
  .safety-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 820px) {
  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .local-grid,
  .app-grid,
  .footer-grid,
  .steps-grid,
  .benefits-grid,
  .safety-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4.4rem 0;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-art {
    min-height: 30rem;
  }

  .bridge-panel {
    min-height: 30rem;
  }

  .local-mini-card {
    width: 11.25rem;
    padding: 0.9rem;
  }

  .scooter {
    width: 12rem;
    top: 48%;
  }

  .bridge {
    left: 1.5rem;
    right: 1.5rem;
  }

  .phone-screen {
    min-height: 34rem;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .navbar {
    min-height: 4.7rem;
  }

  .brand-text small {
    display: none;
  }

  .button,
  .store-button {
    width: 100%;
  }

  .hero-art {
    min-height: 25rem;
  }

  .bridge-panel {
    min-height: 32rem;
  }

  .local-badge,
  .location-chip,
  .local-mini-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    max-width: none;
    margin: 1rem;
  }

  .local-route {
    left: 1rem;
    right: 1rem;
    top: 7.4rem;
    height: 5rem;
  }

  .route-secondary {
    left: 4rem;
    right: 1rem;
    top: 6.6rem;
    height: 4rem;
  }

  .local-pin-start {
    left: 2rem;
    top: 8.6rem;
  }

  .local-pin-end {
    right: 2rem;
    top: 7.8rem;
  }

  .bridge-sketch {
    inset: auto 1rem 7.2rem 1rem;
    height: 7.5rem;
  }

  .shore-line {
    left: 1rem;
    right: 1rem;
    top: 13.6rem;
  }

  .local-water {
    left: 1rem;
    right: 1rem;
    bottom: 8rem;
  }

  .visual-card {
    max-width: 11rem;
  }

  .card-top {
    left: 1rem;
    top: 1rem;
  }

  .card-bottom {
    right: 1rem;
    bottom: 1rem;
  }

  .phone {
    width: 100%;
  }

  .studio-credit {
    display: inline-flex;
    margin-top: 0.75rem;
    margin-left: 0;
  }

  .footer-bottom-line {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
