:root {
  --bg: #06060c;
  --bg-elevated: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --text: #f0f4ff;
  --muted: rgba(240, 244, 255, 0.62);
  --primary: #3ee0c8;
  --primary-deep: #2bb8d6;
  --accent: #5b8cff;
  --cyan: #3ee8ff;
  --glow: rgba(59, 196, 214, 0.45);
  --error: #e8a090;
  --error-border: rgba(232, 140, 120, 0.55);
  --gradient-brand: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-deep) 48%,
    var(--accent) 100%
  );
  --gradient-cta: linear-gradient(135deg, var(--primary), var(--primary-deep));
  --radius: 20px;
  --font: "Inter", system-ui, -apple-system, sans-serif;
}

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

/* Author rules like .optbox { display:flex } beat the UA [hidden] stylesheet */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

body.quote-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

a {
  color: inherit;
}

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

ul {
  list-style: none;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: var(--bg);
}

.bg__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(80% 60% at 50% 0%, black 20%, transparent 70%);
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite alternate;
}

.bg__orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  left: 50%;
  transform: translateX(-60%);
  background: radial-gradient(circle, var(--primary-deep), transparent 70%);
}

.bg__orb--2 {
  width: 400px;
  height: 400px;
  top: 40%;
  right: -100px;
  background: radial-gradient(circle, var(--accent), transparent 70%);
  animation-delay: -6s;
}

.bg__orb--3 {
  width: 320px;
  height: 320px;
  bottom: 10%;
  left: -80px;
  background: radial-gradient(circle, var(--cyan), transparent 70%);
  animation-delay: -12s;
  opacity: 0.35;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(30px, 24px) scale(1.08);
  }
}

.wrap {
  width: min(1120px, 100% - 40px);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  width: 100%;
  background: rgba(6, 6, 12, 0.4);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav__inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 14px 0;
  min-height: 56px;
}

.logo {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
  white-space: nowrap;
}

.logo__mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo__mark img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav__actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  flex: 0 1 auto;
  min-width: 0;
}

.nav__link {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--text);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  padding: 9px 16px;
  border-radius: 999px;
  color: #041016;
  background: var(--gradient-cta);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 22px rgba(62, 224, 200, 0.42), 0 0 0 1px rgba(62, 224, 200, 0.25);
  white-space: nowrap;
}

.nav__phone {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
  padding: 4px 2px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--primary);
  white-space: nowrap;
  line-height: 1.15;
}

.nav__phone:hover {
  color: var(--cyan);
}

.hero {
  padding: 48px 0 56px;
  text-align: center;
}

.hero--photo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 88vh, 780px);
  padding: 0;
  text-align: left;
  overflow: hidden;
  background-color: var(--bg);
  background-image: url("assets/mesh-hero-lifestyle.png?v=20260713m");
  background-repeat: no-repeat;
  background-position: 58% center;
  background-size: cover;
}

.hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      105deg,
      rgba(6, 6, 12, 0.96) 0%,
      rgba(6, 6, 12, 0.88) 28%,
      rgba(6, 6, 12, 0.45) 52%,
      rgba(6, 6, 12, 0.5) 100%
    ),
    linear-gradient(180deg, rgba(6, 6, 12, 0.5) 0%, transparent 30%),
    linear-gradient(0deg, rgba(6, 6, 12, 1) 0%, rgba(6, 6, 12, 0.75) 16%, transparent 46%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0 64px;
}

.hero__content > * {
  max-width: 520px;
}

.hero__brand {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  color: #fff;
}

.hero-headline-line2 {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.28em;
  max-width: 100%;
}

.hero-headline-that {
  font-weight: 800;
  color: #fff;
}

.hero-reel {
  display: inline-block;
  vertical-align: baseline;
}

.hero-reel__window {
  display: block;
  overflow: hidden;
  height: 1.05em;
  width: auto;
}

.hero-reel__track {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  will-change: transform;
}

.hero-reel__word {
  display: block;
  width: max-content;
  height: 1.05em;
  line-height: 1.05;
  white-space: nowrap;
  font-weight: 800;
}

.hero-reel.is-ready .hero-reel__window {
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-reel.is-ready .hero-reel__track {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero--photo .hero__lead {
  margin: 0 0 26px;
  max-width: 420px;
  color: rgba(240, 244, 255, 0.84);
}

.hero--photo .hero__cta {
  justify-content: flex-start;
  margin-bottom: 0;
}

.hero--photo .hero__cta .btn--primary {
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 30px;
  color: #041016;
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow:
    0 10px 36px rgba(62, 224, 200, 0.5),
    0 0 0 1px rgba(62, 224, 200, 0.35);
}

.btn--ghost-on-photo {
  background: rgba(6, 6, 12, 0.4);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(8px);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(62, 232, 255, 0.25);
  background: rgba(62, 232, 255, 0.06);
}

.hero__eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
}

.gradient {
  background-image: var(--gradient-brand);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero__lead {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 16px;
  line-height: 1.55;
}

.hero__proof {
  color: rgba(240, 244, 255, 0.5);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  color: #041016;
  background: var(--gradient-cta);
  box-shadow: 0 8px 32px var(--glow);
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(62, 224, 200, 0.45);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(12px);
}

.btn--wide {
  width: 100%;
  margin-top: 8px;
}

.emblem {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
}

.emblem__glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at 50% 40%, var(--glow), transparent 65%);
  pointer-events: none;
}

.emblem__frame {
  position: relative;
  border-radius: 36px;
  padding: 36px 28px 28px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.04)
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
}

.emblem__mark {
  width: 180px;
  height: 180px;
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 0 24px rgba(62, 224, 200, 0.25));
}

.emblem__caption {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
}

.trust {
  margin: 0 0 64px;
  padding: 18px 10px;
  border-radius: 18px;
  border: 1px solid rgba(62, 224, 200, 0.18);
  background: linear-gradient(
    90deg,
    rgba(62, 224, 200, 0.08),
    rgba(91, 140, 255, 0.06)
  );
}

.trust__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.trust__row li {
  text-align: center;
  padding: 0;
  min-width: 0;
}

.trust__item {
  display: block;
  width: 100%;
  margin: 0;
  padding: 10px 8px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: center;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.trust__item:hover,
.trust__item:focus-visible {
  border-color: rgba(62, 224, 200, 0.35);
  background: rgba(62, 224, 200, 0.08);
  box-shadow: 0 0 0 1px rgba(62, 224, 200, 0.12), 0 8px 24px rgba(46, 196, 182, 0.12);
  outline: none;
}

.trust__item:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.trust__item strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.trust__item span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.35;
}

/* Trust detail modal */
.trust-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 16px;
}

.trust-modal[hidden] {
  display: none !important;
}

.trust-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.trust-modal__panel {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  max-height: min(88vh, 720px);
  overflow-y: auto;
  padding: 28px 24px 22px;
  border-radius: 18px;
  border: 1px solid rgba(62, 224, 200, 0.22);
  background:
    linear-gradient(165deg, rgba(18, 28, 36, 0.98), rgba(8, 10, 16, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 64px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(62, 224, 200, 0.08);
}

.trust-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.trust-modal__close:hover,
.trust-modal__close:focus-visible {
  color: var(--text);
  border-color: rgba(62, 224, 200, 0.4);
  background: rgba(62, 224, 200, 0.1);
  outline: none;
}

.trust-modal__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 28px 10px 0;
  color: var(--text);
}

.trust-modal__body {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.trust-modal__visual {
  margin-bottom: 18px;
}

.trust-modal__cta {
  font-size: 0.82rem;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  margin: 0;
}

.trust-modal__cta a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.trust-modal__cta a:hover {
  text-decoration: underline;
}

/* Mock UI cards inside trust modal */
.mock {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.mock__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(62, 224, 200, 0.06);
}

.mock__bar-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
}

.mock__bar-meta {
  font-size: 0.7rem;
  color: var(--muted);
}

.mock__body {
  padding: 12px 14px 14px;
}

.mock-quote__row,
.mock-invoice__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
}

.mock-quote__row:last-child,
.mock-invoice__row:last-child {
  border-bottom: none;
}

.mock-quote__row span:first-child,
.mock-invoice__row span:first-child {
  color: var(--muted);
}

.mock-quote__row strong,
.mock-invoice__row strong {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.mock-quote__terms {
  margin-top: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-sites__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-sites__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
}

.mock-sites__item.is-active {
  border-color: rgba(62, 224, 200, 0.4);
  background: rgba(62, 224, 200, 0.1);
  box-shadow: inset 0 0 0 1px rgba(62, 224, 200, 0.12);
}

.mock-sites__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.mock-sites__item.is-active .mock-sites__dot {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(62, 224, 200, 0.55);
}

.mock-sites__label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.mock-sites__label strong {
  font-size: 0.85rem;
  font-weight: 600;
}

.mock-sites__label span {
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-sites__badge {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
}

.mock-invoice__due {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.mock-invoice__due span {
  color: var(--muted);
}

.mock-invoice__due strong {
  color: var(--primary);
  font-size: 1rem;
}

.mock-sched__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 12px;
}

.mock-sched__day {
  text-align: center;
  padding: 8px 2px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.15);
}

.mock-sched__day.is-on {
  border-color: rgba(62, 224, 200, 0.45);
  background: rgba(62, 224, 200, 0.14);
}

.mock-sched__day abbr {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--muted);
  margin-bottom: 4px;
}

.mock-sched__day.is-on abbr {
  color: var(--primary);
}

.mock-sched__day span {
  display: block;
  font-size: 0.62rem;
  color: transparent;
}

.mock-sched__day.is-on span {
  color: var(--text);
}

.mock-sched__windows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mock-sched__window {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.78rem;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mock-sched__window span {
  color: var(--muted);
}

.mock-sched__window strong {
  font-weight: 600;
  color: var(--text);
}

.mock-support__rep {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.mock-support__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #041016;
  background: var(--gradient-cta);
  flex-shrink: 0;
}

.mock-support__rep-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.mock-support__rep-meta strong {
  font-size: 0.85rem;
}

.mock-support__rep-meta span {
  font-size: 0.72rem;
  color: var(--muted);
}

.mock-support__thread {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mock-support__bubble {
  max-width: 88%;
  padding: 8px 11px;
  border-radius: 12px;
  font-size: 0.78rem;
  line-height: 1.4;
}

.mock-support__bubble--them {
  align-self: flex-start;
  background: rgba(62, 224, 200, 0.12);
  border: 1px solid rgba(62, 224, 200, 0.22);
  color: var(--text);
  border-bottom-left-radius: 4px;
}

.mock-support__bubble--you {
  align-self: flex-end;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  border-bottom-right-radius: 4px;
}

body.trust-modal-open {
  overflow: hidden;
}

.promise {
  max-width: 680px;
  margin: 0 auto 72px;
  text-align: center;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  color: var(--muted);
}

.promise em {
  font-style: normal;
  color: var(--text);
}

.section-title {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.section-headline {
  text-align: center;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.02rem;
}

.features,
.expect,
.steps,
.area,
.industries,
.compare,
.cases,
.faq,
.quote {
  padding: 0 0 100px;
}

.area__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 36px 48px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.area-map {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--border);
  background:
    radial-gradient(ellipse at 70% 40%, rgba(59, 196, 214, 0.12), transparent 55%),
    rgba(255, 255, 255, 0.02);
  padding: 12px 8px 4px;
  overflow: hidden;
}

.area-map__svg {
  display: block;
  width: 100%;
  height: auto;
}

.map-region {
  stroke: rgba(240, 244, 255, 0.12);
  stroke-width: 1.25;
  transition: fill 160ms ease, stroke 160ms ease, filter 160ms ease, opacity 160ms ease;
}

.map-region--context {
  fill: rgba(255, 255, 255, 0.035);
  pointer-events: none;
}

.map-region--active {
  fill: url(#areaActiveFill);
  fill-opacity: 0.82;
  stroke: rgba(62, 224, 200, 0.65);
  cursor: pointer;
  outline: none;
}

.map-region--wait {
  fill: rgba(91, 140, 255, 0.28);
  stroke: rgba(91, 140, 255, 0.55);
  stroke-dasharray: 4 3;
  cursor: pointer;
  outline: none;
}

.map-region--active:focus,
.map-region--wait:focus,
.map-region--active:focus-visible,
.map-region--wait:focus-visible {
  outline: none;
}

.area-map.is-dimming .map-region--active:not(.is-hot),
.area-map.is-dimming .map-region--wait:not(.is-hot) {
  opacity: 0.38;
}

.map-region--active.is-hot,
.map-region--wait.is-hot {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(62, 224, 200, 0.35));
}

.map-region--wait.is-hot {
  filter: drop-shadow(0 0 10px rgba(91, 140, 255, 0.4));
  fill: rgba(91, 140, 255, 0.45);
}

.map-label {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.01em;
  pointer-events: none;
  paint-order: stroke fill;
  stroke-width: 3px;
  stroke-linejoin: round;
}

.map-label--active {
  fill: #061014;
  stroke: rgba(62, 224, 200, 0.35);
}

.map-label--wait {
  fill: rgba(240, 244, 255, 0.88);
  stroke: rgba(6, 6, 12, 0.55);
  font-size: 12px;
  font-weight: 600;
}

.area__side {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.area-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
}

.area-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.area-legend__item::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}

.area-legend__item--active::before {
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(62, 224, 200, 0.35);
}

.area-legend__item--wait::before {
  background: rgba(91, 140, 255, 0.4);
  border: 1px dashed rgba(91, 140, 255, 0.7);
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.area-list li {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.area-list li:focus,
.area-list li:focus-visible {
  outline: none;
}

.area-list li.is-hot {
  border-color: rgba(62, 224, 200, 0.55);
  background: rgba(62, 224, 200, 0.12);
  color: var(--text);
}

.area-list__wait {
  color: var(--muted);
  border-style: dashed;
}

.area-list__wait.is-hot {
  border-color: rgba(91, 140, 255, 0.6);
  background: rgba(91, 140, 255, 0.14);
}

.area__cta {
  margin-top: 4px;
}

@media (max-width: 860px) {
  .area__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .area__side {
    align-items: center;
    text-align: center;
  }

  .area-list {
    justify-content: center;
  }

  .area-legend {
    justify-content: center;
  }
}

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

.ticket-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top: 3px solid rgba(62, 224, 200, 0.55);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  text-align: left;
  transition: border-color 0.25s, transform 0.25s;
}

.ticket-card:hover {
  border-color: rgba(62, 224, 200, 0.4);
  transform: translateY(-3px);
}

.ticket-card__no {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.ticket-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.ticket-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 14px;
}

.ticket-card__go {
  background: none;
  border: none;
  padding: 0;
  color: var(--cyan);
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.segment-detail {
  margin-top: 28px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
}

.seg-back,
.editl {
  background: none;
  border: none;
  color: var(--cyan);
  font: inherit;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 0;
}

.seg-tno {
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.segment-detail h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 12px;
  letter-spacing: -0.03em;
}

.seg-lead {
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 22px;
}

.seg-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  margin-bottom: 24px;
}

.seg-benefits {
  display: grid;
  gap: 10px;
}

.seg-benefits li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.seg-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.seg-items h4 {
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  font-size: 0.82rem;
  color: var(--text);
}

.ticket-shell {
  max-width: none;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  backdrop-filter: none;
}

.path-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.path-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  padding: 22px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.path-card:hover {
  border-color: rgba(62, 224, 200, 0.45);
  background: rgba(62, 224, 200, 0.06);
  transform: translateY(-1px);
}

.path-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.path-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.path-card__lead {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  flex: 1;
}

.path-card__time {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cyan);
}

.path-card__cta {
  margin-top: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.text-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.text-link:hover {
  color: var(--primary);
}

.optbox--consent {
  align-items: flex-start;
}

.optbox--consent span {
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--muted);
}

.optbox--consent a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.optbox--consent a:hover {
  color: var(--text);
}

.ticket-stepbar {
  position: sticky;
  top: 0;
  z-index: 4;
  margin: 0 0 16px;
  padding: 4px 44px 12px 0;
  background: linear-gradient(180deg, #0b1416 70%, rgba(11, 20, 22, 0));
}

.stepdots {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.stepdot {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.stepdot.done,
.stepdot.current {
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.steplabel {
  font-size: 0.82rem;
  color: var(--muted);
}

.steplabel b {
  color: var(--text);
}

.ticket-body .field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.ticket-body .field--places {
  position: relative;
}

.ticket-body .field--address {
  position: relative;
}

.ticket-body .field--address textarea {
  min-height: 2.85rem;
  line-height: 1.45;
  resize: vertical;
}

.ticket-body .field--county-derived .field-static-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.ticket-body .hint--county {
  margin: 0;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
}

.ticket-body .hint--county b {
  font-weight: 600;
}

.places-suggest {
  position: absolute;
  z-index: 40;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #152018;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
  max-height: 240px;
  overflow: auto;
}

.places-suggest__item {
  display: grid;
  gap: 2px;
  padding: 10px 14px;
  cursor: pointer;
  color: var(--text);
}

.places-suggest__item:hover,
.places-suggest__item:focus {
  outline: none;
  background: rgba(62, 224, 200, 0.12);
}

.places-suggest__primary {
  font-size: 0.92rem;
  font-weight: 500;
}

.places-suggest__secondary {
  font-size: 0.78rem;
  color: var(--muted);
}

.ticket-body .row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ticket-body label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

.ticket-body input,
.ticket-body select,
.ticket-body textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
  outline: none;
}

.ticket-body .item-qty-row__input {
  padding: 10px 8px;
  min-height: 44px;
  border-radius: 10px;
}

.ticket-body .item-qty-row__desc-input {
  padding: 10px 12px;
  min-height: 44px;
  border-radius: 10px;
}

.ticket-body input:focus,
.ticket-body select:focus,
.ticket-body textarea:focus {
  border-color: rgba(62, 224, 200, 0.45);
  box-shadow: 0 0 0 3px rgba(62, 224, 200, 0.12);
}

.ticket-body .field--error input,
.ticket-body .field--error select,
.ticket-body .field--error textarea {
  border-color: var(--error-border);
}

.ticket-body .field--error input:focus,
.ticket-body .field--error select:focus,
.ticket-body .field--error textarea:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(232, 140, 120, 0.14);
}

.ticket-body .field-error {
  font-size: 0.78rem;
  color: var(--error);
  margin: 0;
  line-height: 1.35;
}

.optbox--consent.field--error {
  flex-wrap: wrap;
  border-color: var(--error-border);
  background: rgba(232, 140, 120, 0.06);
}

.optbox--consent.field--error .field-error {
  flex: 1 1 100%;
  margin: 2px 0 0 26px;
}

.ticket-body textarea {
  min-height: 90px;
  resize: vertical;
}

.hint {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
}

.note-box {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(62, 224, 200, 0.25);
  background: rgba(62, 224, 200, 0.06);
  font-size: 0.9rem;
  color: var(--muted);
}

.note-box--compact {
  padding: 8px 12px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.note-box b {
  color: var(--text);
}

.note-box .text-link {
  margin-left: 0.35em;
  white-space: nowrap;
}

.optgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.optgrid--days {
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.optgrid--days .optbox {
  justify-content: center;
  align-items: center;
  padding: 10px 4px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.optgrid--quiet {
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.optgrid--quiet .optbox {
  padding: 8px 10px;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(0, 0, 0, 0.14);
}

.optgrid--quiet .optbox.checked {
  color: var(--text);
}

.pickup-confirm {
  margin: 6px 0 0;
  font-size: 0.88rem;
  color: var(--primary);
}

.pickup-confirm--solo {
  margin: 0;
}

.pickup-nudge {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--cyan);
}

.pickup-secondary {
  margin-top: 4px;
}

.pickup-secondary .item-qty-head {
  margin-bottom: 0;
}

.pickup-secondary .item-qty-head label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.field--pickup-days {
  margin-bottom: 12px;
}

.optbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text);
}

.ticket-detect {
  margin: 0 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.ticket-detect .text-link {
  margin-left: 0;
}

.field--items {
  margin-top: 4px;
}

.item-qty-head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}

.ticket-body .item-qty-head label {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.item-qty-head__qty {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.item-qty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.item-qty-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 8px 12px;
  align-items: center;
  min-height: 48px;
  padding: 4px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  background: none;
}

.item-qty-row.is-suggested,
.item-qty-row.is-active {
  border-color: rgba(255, 255, 255, 0.07);
  background: none;
}

.item-qty-row.is-active .item-qty-row__name {
  color: var(--text);
}

.item-qty-row__name,
.item-qty-row__label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.item-qty-row__input {
  width: 88px;
  min-width: 88px;
  min-height: 44px;
  margin: 0;
  padding: 10px 8px;
  text-align: center;
  font-size: 1.12rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  border-radius: 10px;
  appearance: textfield;
  -moz-appearance: textfield;
}

.item-qty-row__input::-webkit-outer-spin-button,
.item-qty-row__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.item-qty-row--other {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(0, 1fr) 88px;
}

.item-qty-row--other .item-qty-row__name {
  flex: 0 0 auto;
}

.item-qty-row--other .item-qty-row__desc-input {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
}

.volume-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
  margin: 0 0 16px;
  padding: 0;
  border: none;
  background: none;
}

.volume-meta .field {
  margin-bottom: 0;
  gap: 4px;
}

.volume-meta label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
}

.volume-meta input {
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.95rem;
}

.ticket-estimate {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(62, 224, 200, 0.35);
  background: rgba(13, 148, 136, 0.12);
  text-align: left;
}

.ticket-estimate--quiet {
  margin-top: 10px;
  padding: 0;
  border: none;
  background: none;
}

.ticket-estimate--quiet.is-empty {
  display: none;
}

.ticket-estimate--quiet .ticket-estimate__line {
  font-size: 0.88rem;
  color: var(--muted);
}

.ticket-estimate--quiet .ticket-estimate__line b {
  color: var(--text);
}

.ticket-estimate--empty {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.ticket-estimate__line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 14px;
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
}

.ticket-estimate__line b {
  font-weight: 700;
}

.ticket-estimate__eyebrow {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.ticket-estimate__lbs,
.ticket-estimate__usd {
  margin: 0;
  color: var(--text);
}

.ticket-estimate__need-freq,
.ticket-estimate__note,
.ticket-estimate__hint,
.ticket-estimate--empty p {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.ticket-estimate__hint {
  flex: 1 1 100%;
}

.ticket-estimate__note {
  flex: 1 1 100%;
  color: var(--cyan);
}

.ticket-estimate--hero {
  display: block;
  margin: 4px 0 8px;
  padding: 22px 22px 18px;
  border-radius: 16px;
  border-width: 1.5px;
}

.ticket-estimate__stage-label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
}

.ticket-estimate__metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 16px 18px;
}

.ticket-estimate__metrics--pair {
  grid-template-columns: 1fr 1fr;
}

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

.ticket-estimate__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.ticket-estimate__metric b {
  font-size: clamp(1.45rem, 4vw, 2.05rem);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
}

.ticket-estimate__metric small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.ticket-estimate__times {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin: 16px 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.ticket-estimate__times-math {
  font-size: 1rem;
  font-weight: 700;
}

.ticket-estimate__times-days {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.ticket-estimate--hero .ticket-estimate__hint,
.ticket-estimate--hero .ticket-estimate__note,
.ticket-estimate--hero .ticket-estimate__need-freq {
  margin-top: 14px;
}

#ticket-confirm .ticket-estimate--hero {
  margin: 14px auto 18px;
  max-width: 100%;
  text-align: left;
}

@media (max-width: 520px) {
  .ticket-estimate__metrics--week {
    grid-template-columns: 1fr 1fr;
  }

  .ticket-estimate__metrics--week .ticket-estimate__metric:last-child {
    grid-column: 1 / -1;
  }
}

.confirm-estimate {
  margin: 8px auto 18px;
  max-width: 420px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(62, 224, 200, 0.4);
  background: rgba(13, 148, 136, 0.12);
}

.confirm-estimate__lbs,
.confirm-estimate__usd {
  margin: 0 0 4px;
  color: var(--text);
  font-size: 1.05rem;
}

.confirm-estimate__hint {
  margin: 10px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 560px) {
  .item-qty-grid {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 20px;
  }
}

@media (max-width: 700px) {
  .item-qty-row {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .item-qty-row--other {
    grid-template-columns: auto minmax(0, 1fr) 88px;
  }

  .item-qty-row__input {
    width: 88px;
    min-width: 88px;
  }

  .volume-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .item-qty-row--other {
    grid-template-columns: minmax(0, 1fr) 88px;
    grid-template-areas:
      "name qty"
      "desc desc";
  }

  .item-qty-row--other .item-qty-row__name {
    grid-area: name;
  }

  .item-qty-row--other .item-qty-row__input {
    grid-area: qty;
  }

  .item-qty-row--other .item-qty-row__desc-input {
    grid-area: desc;
  }
}

.optbox input {
  width: auto;
  margin-top: 2px;
  accent-color: var(--primary);
}

.optbox--item input {
  margin-top: 0;
  flex: 0 0 auto;
}

.item-icon {
  display: inline-flex;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(62, 224, 200, 0.1);
  color: var(--primary);
}

.item-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}

.item-icon--img img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

.chip .item-icon--img img {
  width: 14px;
  height: 14px;
}

.item-text {
  flex: 1 1 auto;
  line-height: 1.3;
}

.optbox.checked .item-icon {
  background: rgba(62, 224, 200, 0.2);
  color: var(--cyan);
}

.chip .item-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(62, 224, 200, 0.12);
}

.chip .item-icon svg {
  width: 14px;
  height: 14px;
}

.optbox.checked {
  border-color: rgba(62, 224, 200, 0.45);
  background: rgba(62, 224, 200, 0.08);
}

.ticket-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

.review-block {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.review-block h4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.review-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6px 12px;
  font-size: 0.88rem;
}

.review-grid .k {
  color: var(--muted);
}

.review-grid .v {
  color: var(--text);
}

.ticket-confirm {
  max-width: 640px;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
}

.confirm-mark {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #041016;
  font-size: 1.4rem;
  font-weight: 700;
}

.confirm-mark--warn {
  background: linear-gradient(135deg, #c45c26, #e8a87c);
  color: #1a0f08;
}

.ticket-confirm h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.confirm-tno {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 10px;
}

.confirm-lead {
  color: var(--muted);
  margin-bottom: 22px;
}

.confirm-next {
  text-align: left;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.confirm-next li {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.confirm-next span {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--primary);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
}

@media (max-width: 960px) {
  .ticket-grid,
  .seg-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .ticket-body .row2,
  .review-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s, transform 0.25s;
  text-align: left;
}

.card:hover {
  border-color: rgba(62, 224, 200, 0.35);
  transform: translateY(-4px);
}

.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(
    135deg,
    rgba(62, 224, 200, 0.2),
    rgba(91, 140, 255, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.1rem;
  color: var(--cyan);
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
}

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

.steps__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.step {
  text-align: center;
  padding: 24px 16px;
}

.step__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #041016;
  background: linear-gradient(135deg, var(--accent), var(--primary-deep));
  box-shadow: 0 4px 20px rgba(91, 140, 255, 0.3);
}

.step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--muted);
}

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

.industry-card {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
  transition: border-color 0.25s, transform 0.25s;
}

.industry-card:hover {
  border-color: rgba(91, 140, 255, 0.4);
  transform: translateY(-3px);
}

.industry-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.industry-card__quote {
  font-size: 0.92rem;
  color: var(--cyan);
  margin-bottom: 16px;
  line-height: 1.45;
}

.industry-card ul {
  display: grid;
  gap: 8px;
}

.industry-card li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
}

.industry-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--glow);
}

.compare__table {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
}

.compare__head,
.compare__row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1.2fr;
  gap: 0;
}

.compare__head {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare__mesh {
  color: var(--primary) !important;
}

.compare__head > *,
.compare__row > * {
  padding: 16px 18px;
}

.compare__row {
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}

.compare__row:last-child {
  border-bottom: none;
}

.compare__row > [role="rowheader"] {
  font-weight: 600;
  color: var(--text);
}

.compare__row > [role="cell"] {
  color: var(--muted);
  border-left: 1px solid var(--border);
}

.compare__yes {
  color: var(--text) !important;
  background: rgba(62, 224, 200, 0.06);
}

.case-card__label {
  font-size: 0.72rem !important;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan) !important;
  margin-bottom: 10px !important;
}

.faq__list {
  max-width: 760px;
  margin: 28px auto 0;
  display: grid;
  gap: 12px;
}

.faq__item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-elevated);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
  position: relative;
}

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

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan);
  font-size: 1.2rem;
  font-weight: 500;
}

.faq__item[open] summary::after {
  content: "–";
}

.faq__item p {
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.quote__lead {
  margin-bottom: 28px;
}

.quote__stage {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 28px 24px 32px;
  border-radius: 24px;
  border: 1px solid rgba(62, 224, 200, 0.28);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(62, 224, 200, 0.1), transparent 55%),
    #0b1416;
  box-shadow:
    0 0 0 1px rgba(62, 224, 200, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.45),
    0 0 56px rgba(62, 224, 200, 0.1);
}

.quote__close {
  position: sticky;
  top: 10px;
  z-index: 6;
  float: right;
  width: 36px;
  height: 36px;
  margin: 0 0 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(6, 6, 12, 0.72);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.quote__close:hover {
  border-color: rgba(62, 224, 200, 0.55);
  color: var(--primary);
}

.quote-leave {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px 16px;
  background: rgba(4, 8, 10, 0.58);
}

.quote-leave__panel {
  width: min(380px, 100%);
  padding: 22px 20px 18px;
  border-radius: 18px;
  border: 1px solid rgba(62, 224, 200, 0.28);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(62, 224, 200, 0.1), transparent 55%),
    #0b1416;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 18px 48px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.quote-leave__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.quote-leave__copy {
  margin: 0 0 18px;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.45;
}

.quote-leave__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.quote-leave__actions .btn {
  min-width: 112px;
}

/* Mid-ticket / callback: hide chooser marketing headline so the form is the focus */
.quote.quote--flow .quote__intro {
  display: none;
}

.quote.quote--flow .ticket-shell {
  margin-top: 0;
}

.quote.quote--overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  overflow: auto;
  padding: 28px 16px 40px;
  padding-top: max(28px, env(safe-area-inset-top));
  padding-bottom: max(40px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(6, 6, 12, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.quote.quote--overlay .quote__stage {
  width: min(820px, 100%);
  margin: auto;
}

.quote.quote--overlay .ticket-confirm {
  border: none;
  background: transparent;
  max-width: none;
  padding: 8px 0 0;
}

.quote.quote--overlay .ticket-nav {
  position: sticky;
  bottom: 0;
  z-index: 4;
  margin-top: 16px;
  padding: 12px 0 4px;
  background: linear-gradient(180deg, rgba(11, 20, 22, 0), #0b1416 28%);
}

.quote__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

.quote__next {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
}

.quote__next li {
  display: grid;
  gap: 4px;
}

.quote__next strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.quote__next span {
  font-size: 0.88rem;
  color: var(--muted);
}

.quote-form {
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  backdrop-filter: blur(16px);
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  gap: 6px;
}

.form-row--split {
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-row--split > div {
  display: grid;
  gap: 6px;
}

label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(62, 224, 200, 0.45);
  box-shadow: 0 0 0 3px rgba(62, 224, 200, 0.12);
}

textarea {
  resize: vertical;
  min-height: 110px;
}

option {
  background: #101018;
  color: var(--text);
}

.form-fine {
  margin-top: 12px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

.form-note {
  margin-top: 14px;
  text-align: center;
  color: var(--primary);
  font-weight: 600;
}

/* Legal pages (privacy / terms) */
.legal {
  padding: 120px 0 64px;
  max-width: 720px;
}

.legal__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.legal__meta {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 40px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.legal__section {
  margin-bottom: 32px;
}

.legal__section h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.legal__section p,
.legal__list {
  color: var(--muted);
  font-size: 0.98rem;
}

.legal__section p + p {
  margin-top: 12px;
}

.legal__section a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal__list {
  list-style: disc;
  padding-left: 1.25rem;
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.legal__list strong {
  color: var(--text);
  font-weight: 600;
}

.legal__shot {
  margin-top: 16px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.continue-form {
  display: grid;
  gap: 14px;
  max-width: 420px;
  margin-bottom: 28px;
}

.continue-form .field {
  display: grid;
  gap: 6px;
}

.continue-form .field span {
  font-size: 0.85rem;
  color: var(--muted);
}

.continue-form input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.continue-results__title {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.continue-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.continue-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.continue-list li .hint {
  display: block;
  margin-top: 4px;
}

.continue-list .btn {
  flex-shrink: 0;
}

.footer {
  padding: 40px 0 48px;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.footer__brand {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text) !important;
  margin-bottom: 8px;
  font-size: 1rem !important;
}

.footer__brand img {
  width: 24px;
  height: 24px;
}

.footer__brand-block p:last-child {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
}

.footer__links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__links-home {
  color: var(--primary) !important;
  font-weight: 600;
}

.footer__links-home:hover {
  color: var(--cyan) !important;
}

.footer__meta {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer__powered {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--muted);
  opacity: 0.7;
  letter-spacing: 0.01em;
}

@media (max-width: 960px) {
  .trust__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust__row li:last-child {
    grid-column: 1 / -1;
  }

  .expect__grid,
  .industry-grid,
  .quote__layout {
    grid-template-columns: 1fr;
  }

  /* Keep Mesh vs Typical side-by-side on narrow screens */
  .compare__head {
    position: sticky;
    top: 64px;
    z-index: 5;
    grid-template-columns: 1fr 1fr;
    backdrop-filter: blur(12px);
    background: rgba(10, 12, 18, 0.92);
  }

  .compare__head > *:first-child {
    display: none;
  }

  .compare__row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "label label"
      "mesh typical";
  }

  .compare__row > [role="rowheader"] {
    grid-area: label;
    background: rgba(255, 255, 255, 0.03);
    padding-bottom: 10px;
    border-bottom: none;
  }

  .compare__row > [role="cell"].compare__yes {
    grid-area: mesh;
    border-left: none;
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }

  .compare__row > [role="cell"]:not(.compare__yes) {
    grid-area: typical;
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .compare__row > [role="cell"]::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .hero--photo {
    min-height: min(86vh, 700px);
    /* Bias right so van MESH + slogan stay in frame */
    background-position: 68% center;
  }

  .hero--photo::before {
    background:
      linear-gradient(
        180deg,
        rgba(6, 6, 12, 0.55) 0%,
        rgba(6, 6, 12, 0.35) 36%,
        rgba(6, 6, 12, 0.88) 72%,
        rgba(6, 6, 12, 1) 100%
      );
  }

  .hero__content {
    padding: 96px 0 48px;
  }

  .quote.quote--overlay {
    padding: 0;
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
  }

  .quote.quote--overlay .quote__stage {
    width: 100%;
    min-height: 100%;
    margin: 0;
    border-radius: 0;
    padding: 16px 16px 28px;
  }

  .nav {
    background: rgba(6, 6, 12, 0.55);
  }

  .nav__inner {
    padding: 12px 0;
    min-height: 52px;
    flex-direction: row;
    align-items: center;
  }

  .nav__actions {
    flex-direction: row;
  }

  .nav__link {
    display: none;
  }

  .nav__phone {
    font-size: 0.84rem;
  }

  .nav__cta {
    font-size: 0.78rem;
    padding: 8px 12px;
  }

  .compare__head > *,
  .compare__row > * {
    padding: 12px 12px;
    font-size: 0.84rem;
  }

  .compare__head {
    top: 52px;
    font-size: 0.68rem;
  }

  .form-row--split {
    grid-template-columns: 1fr;
  }

  .emblem__mark {
    width: 140px;
    height: 140px;
  }

  .footer__top {
    flex-direction: column;
  }

  .trust__row {
    grid-template-columns: 1fr;
  }

  .trust__row li:last-child {
    grid-column: auto;
  }
}

/* —— MeshLoader overlay —— */
.mesh-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  pointer-events: auto;
}

.mesh-loader[hidden] {
  display: none !important;
}

.mesh-loader__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 12, 0.72);
  backdrop-filter: blur(4px);
}

.mesh-loader__panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  text-align: center;
}

.mesh-loader__lottie {
  width: 120px;
  height: 120px;
}

.mesh-loader__msg {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.72);
}

body.mesh-loader-active {
  overflow: hidden;
}

.ticket-body .places-lookup-status {
  margin: 6px 0 0;
  min-height: 1.2em;
}

.ticket-body .places-lookup-status:not([hidden]) {
  color: var(--primary, #5eead4);
}

.ticket-body .field--places.is-busy::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(1.65rem + 11px);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(240, 244, 255, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: mesh-places-spin 0.65s linear infinite;
  pointer-events: none;
}

.ticket-body .field--address.is-busy::after {
  content: "";
  position: absolute;
  right: 12px;
  top: calc(1.65rem + 11px);
  width: 14px;
  height: 14px;
  border: 2px solid rgba(240, 244, 255, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: mesh-places-spin 0.65s linear infinite;
  pointer-events: none;
}

@keyframes mesh-places-spin {
  to {
    transform: rotate(360deg);
  }
}

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

  .bg__orb,
  .hero__eyebrow span {
    animation: none;
  }

  .hero-reel.is-ready .hero-reel__window,
  .hero-reel.is-ready .hero-reel__track {
    transition: none;
  }

  .ticket-body .field--places.is-busy::after,
  .ticket-body .field--address.is-busy::after {
    animation: none;
    border-color: var(--primary);
    opacity: 0.7;
  }
}
