:root {
  --ink: #070806;
  --charcoal: #10120f;
  --panel: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.16);
  --text: #fbf8ef;
  --muted: #b9b4a7;
  --gold: #d9b86c;
  --mint: #39d99d;
  --danger: #ff7369;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px),
    var(--ink);
  background-size: 72px 72px;
  letter-spacing: 0;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(217, 184, 108, 0.17), transparent 34%),
    linear-gradient(315deg, rgba(57, 217, 157, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 46%, rgba(0, 0, 0, 0.5));
}

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

button {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 8, 6, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 1.08rem;
  white-space: nowrap;
  min-width: 0;
}

.brand-mark {
  width: 36px;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 184, 108, 0.7);
  border-radius: 8px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(217, 184, 108, 0.2), rgba(57, 217, 157, 0.08)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 20px rgba(217, 184, 108, 0.14);
  flex: 0 0 36px;
}

.brand-mark span {
  color: var(--gold);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(251, 248, 239, 0.72);
  font-size: 0.91rem;
  font-weight: 700;
}

.nav-links a,
.mobile-menu a {
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(217, 184, 108, 0.54);
  color: var(--text);
  background: rgba(217, 184, 108, 0.12);
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 184, 108, 0.85);
  background: rgba(217, 184, 108, 0.18);
}

.nav-app-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-slim {
  min-height: 40px;
  padding: 0 14px;
}

.menu-btn {
  width: 44px;
  aspect-ratio: 1;
  display: none;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-lines {
  width: 20px;
  height: 14px;
  position: relative;
  display: block;
}

.menu-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}

.menu-lines span:nth-child(1) {
  top: 0;
}

.menu-lines span:nth-child(2) {
  top: 6px;
}

.menu-lines span:nth-child(3) {
  top: 12px;
}

.menu-btn.is-open .menu-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.menu-btn.is-open .menu-lines span:nth-child(2) {
  opacity: 0;
}

.menu-btn.is-open .menu-lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.hero {
  min-height: 94vh;
  padding: 132px 0 64px;
  display: grid;
  align-items: center;
}

.page-hero {
  padding: 154px 0 88px;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.94) 0%, rgba(7, 8, 6, 0.8) 55%, rgba(7, 8, 6, 0.5) 100%),
    url("/images/hero-port.jpg") center / cover;
}

.page-hero .narrow {
  max-width: 1120px;
}

.page-hero h1 {
  max-width: 1120px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 0.98;
}

.page-hero .hero-copy {
  max-width: 980px;
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  margin-bottom: 22px;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(7, 8, 6, 0.94) 0%, rgba(7, 8, 6, 0.78) 47%, rgba(7, 8, 6, 0.36) 100%),
    url("/images/hero-port.jpg") center / cover;
  transform: scale(1.01);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, transparent 58%, var(--ink)),
    url("/images/hero-air-overlay.jpg") right 12% top 16% / min(44vw, 720px) auto no-repeat;
  opacity: 0.96;
  mix-blend-mode: screen;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(217, 184, 108, 0.36);
  border-radius: 999px;
  background: rgba(7, 8, 6, 0.48);
  color: #e7ddc4;
  font-size: 0.83rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 8px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(57, 217, 157, 0.72);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin: 22px 0 20px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 15px;
  font-size: clamp(2rem, 4vw, 3.65rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

h3 {
  letter-spacing: 0;
}

.hero-copy,
.lead {
  color: rgba(251, 248, 239, 0.72);
  line-height: 1.75;
}

.hero-copy {
  max-width: 700px;
  font-size: clamp(1.02rem, 1.6vw, 1.28rem);
  margin-bottom: 30px;
}

.hero-message {
  max-width: 720px;
  margin: 0 0 22px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 184, 108, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 184, 108, 0.14), rgba(57, 217, 157, 0.06)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.hero-message strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.45;
  margin-bottom: 6px;
}

.hero-message p {
  margin: 0;
  color: rgba(251, 248, 239, 0.82);
  line-height: 1.7;
  font-size: 1rem;
}

.lead {
  font-size: 1.06rem;
  margin-bottom: 0;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn {
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: #151008;
  background: linear-gradient(135deg, #f4d98a, #c79a43);
  box-shadow: 0 16px 42px rgba(217, 184, 108, 0.27);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: rgba(217, 184, 108, 0.55);
  background: rgba(255, 255, 255, 0.105);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(251, 248, 239, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.24);
}

.console {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(11, 12, 10, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.console-head {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.console-title {
  color: rgba(251, 248, 239, 0.75);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.console-body {
  padding: 18px;
  display: grid;
  gap: 14px;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.status-box {
  min-height: 88px;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.status-box b {
  display: block;
  color: var(--gold);
  font-size: 1.3rem;
  line-height: 1.1;
}

.status-box small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.flow {
  display: grid;
  gap: 10px;
}

.flow-step {
  min-height: 58px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.step-icon {
  width: 36px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0d120d;
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  font-size: 0.94rem;
  margin-bottom: 4px;
}

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

.badge {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--mint);
  background: rgba(57, 217, 157, 0.1);
  border: 1px solid rgba(57, 217, 157, 0.2);
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.section {
  padding: 94px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.02);
}

.section-head {
  max-width: 980px;
  margin-bottom: 38px;
}

.section-head h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3.3vw, 3.15rem);
}

.section-head-wide,
.section-head-wide h2 {
  max-width: 1120px;
}

.center {
  margin-inline: auto;
  text-align: center;
}

.kicker {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.metric,
.workflow-card,
.compare-panel,
.feature-card,
.pricing-card,
.utility-card,
.utility-intro,
.enterprise-list div,
.terms-box,
.contact-layout .prose-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
}

.metric {
  min-height: 132px;
  padding: 24px;
}

.metric strong {
  display: block;
  color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  margin-bottom: 10px;
}

.metric span,
.feature-card p,
.workflow-card p,
.utility-card p,
.enterprise-list span,
.terms-box p,
.utility-intro p,
.enterprise-copy p,
.form-actions p,
.contact-note p {
  color: var(--muted);
  line-height: 1.7;
}

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

.workflow-card {
  min-height: 216px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.038));
}

.workflow-card::before {
  counter-increment: workflow;
  content: "0" counter(workflow);
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1px solid rgba(217, 184, 108, 0.34);
  color: var(--gold);
  background: rgba(217, 184, 108, 0.09);
  font-weight: 900;
  margin-bottom: 42px;
}

.workflow-card h3,
.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.35;
}

.workflow-card p,
.feature-card p,
.utility-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.compare-panel {
  padding: 30px;
}

.compare-panel.good {
  border-color: rgba(57, 217, 157, 0.28);
  background: linear-gradient(180deg, rgba(57, 217, 157, 0.1), rgba(255, 255, 255, 0.045));
}

.compare-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 22px;
}

.list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  min-height: 44px;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: start;
  gap: 11px;
  color: rgba(251, 248, 239, 0.77);
  line-height: 1.55;
}

.mark {
  width: 26px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.8rem;
  background: rgba(255, 115, 105, 0.13);
  color: var(--danger);
}

.good .mark,
.pricing-card .mark {
  color: #07100b;
  background: var(--mint);
}

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

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

.story-card,
.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
}

.story-card {
  min-height: 100%;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.story-card:hover,
.quote-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 184, 108, 0.42);
  background: rgba(255, 255, 255, 0.074);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
}

.story-top h3,
.quote-card strong {
  margin-bottom: 10px;
}

.story-top p,
.quote-card p,
.quote-card span {
  color: var(--muted);
  line-height: 1.7;
}

.story-shot {
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(9, 10, 8, 0.82);
  overflow: hidden;
}

.shot-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.shot-bar span {
  width: 8px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.shot-stack {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.shot-row {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.045);
}

.shot-row strong {
  font-size: 0.94rem;
}

.shot-row span {
  color: var(--muted);
  font-size: 0.82rem;
  text-align: right;
}

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

.quote-card {
  min-height: 100%;
  padding: 26px;
}

.quote-card p {
  margin-bottom: 22px;
  font-size: 1rem;
}

.quote-card strong {
  display: block;
}

.quote-card span {
  display: block;
  font-size: 0.9rem;
 }

.feature-card,
.pricing-card,
.utility-card {
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover,
.pricing-card:hover,
.utility-card:hover {
  transform: translateY(-4px);
  border-color: rgba(217, 184, 108, 0.42);
  background: rgba(255, 255, 255, 0.074);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
}

.feature-card {
  min-height: 224px;
  padding: 25px;
  display: block;
}

.tracking-widget {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow);
}

.tracking-widget .section-head {
  margin-bottom: 24px;
}

.tracking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) auto;
  gap: 14px;
  align-items: end;
}

.tracking-form-home,
.tracking-form-public {
  grid-template-columns: minmax(0, 1fr) auto;
}

.tracking-field {
  margin: 0;
}

.tracking-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tracking-actions .btn {
  min-width: 168px;
}

.tracking-help {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--danger);
  font-weight: 700;
}

.tracking-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.tracking-tab {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(57, 217, 157, 0.12);
  border: 1px solid rgba(57, 217, 157, 0.24);
  color: var(--mint);
  font-size: 0.8rem;
  font-weight: 800;
}

.tracking-tab.active {
  color: #07100b;
  background: var(--mint);
}

.tracking-result {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.tracking-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.tracking-result-head h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 0;
}

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

.feature-icon {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(217, 184, 108, 0.35);
  color: var(--gold);
  background: rgba(217, 184, 108, 0.09);
  margin-bottom: 34px;
  font-weight: 900;
  font-size: 0.8rem;
}

.value-band {
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(217, 184, 108, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 184, 108, 0.16), rgba(57, 217, 157, 0.08)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.value-band h2 {
  font-size: clamp(1.85rem, 3.4vw, 3.2rem);
  margin-bottom: 12px;
}

.value-band p {
  margin: 0;
  color: rgba(251, 248, 239, 0.72);
  line-height: 1.7;
  max-width: 760px;
}

.value-price {
  text-align: right;
  white-space: nowrap;
}

.value-price strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 800;
}

.value-price span {
  color: var(--muted);
  font-weight: 700;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  min-height: 430px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.pricing-card.popular {
  border-color: rgba(217, 184, 108, 0.58);
  background: linear-gradient(180deg, rgba(217, 184, 108, 0.15), rgba(255, 255, 255, 0.055));
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.32);
}

.plan-label {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--gold);
  background: rgba(217, 184, 108, 0.11);
  border: 1px solid rgba(217, 184, 108, 0.24);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.pricing-card h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.plan-copy {
  color: var(--muted);
  line-height: 1.6;
  min-height: 52px;
  margin-bottom: 24px;
}

.price {
  color: var(--text);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.per-day {
  color: var(--mint);
  font-size: 0.9rem;
  font-weight: 800;
  margin-bottom: 22px;
}

.pricing-card .list {
  margin-bottom: 26px;
}

.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}

.utility-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1fr);
  gap: 18px;
  align-items: stretch;
}

.utility-intro {
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.download-stack {
  display: grid;
  gap: 10px;
}

.download-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.download-note strong {
  color: var(--text);
}

.utility-intro h2 {
  font-size: clamp(2rem, 3.4vw, 3.4rem);
}

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

.utility-card {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.utility-card strong {
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
}

.utility-card h3 {
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.enterprise {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
}

.enterprise-copy p {
  margin-bottom: 26px;
}

.enterprise-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.enterprise-list div {
  min-height: 126px;
  padding: 22px;
}

.enterprise-list strong {
  display: block;
  margin-bottom: 8px;
}

.terms {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 34px;
  align-items: start;
}

.terms-box {
  padding: 28px;
}

.terms-box p {
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.62fr);
  gap: 18px;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 8px;
}

.field span {
  color: rgba(251, 248, 239, 0.82);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.065);
  padding: 0 14px;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field select {
  color-scheme: dark;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.field select option {
  color: var(--text);
  background: #161814;
}

.field select option:checked,
.field select option:hover,
.field select option:focus {
  color: #0f120d;
  background: #e0bf73;
}

.field textarea {
  min-height: 154px;
  resize: vertical;
  padding: 14px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(217, 184, 108, 0.68);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 0 4px rgba(217, 184, 108, 0.12);
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(255, 115, 105, 0.7);
  box-shadow: 0 0 0 4px rgba(255, 115, 105, 0.12);
}

.field small {
  color: #ff9b92;
  font-size: 0.82rem;
  line-height: 1.45;
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.alert {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.55;
}

.alert p,
.form-actions p,
.contact-note p {
  margin: 0;
}

.alert.success {
  color: #07100b;
  background: rgba(57, 217, 157, 0.92);
}

.alert.error {
  color: #ffe4e1;
  background: rgba(255, 115, 105, 0.16);
  border: 1px solid rgba(255, 115, 105, 0.32);
}

.debug-error {
  font-weight: 700;
  background: rgba(255, 184, 77, 0.12);
  border-color: rgba(217, 184, 108, 0.34);
}

.debug-error strong {
  color: var(--gold);
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.support-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.support-actions .btn {
  min-width: 148px;
}

.contact-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-note h3 {
  margin: 0;
}

.final {
  padding: 100px 0 42px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(217, 184, 108, 0.08), transparent 48%),
    var(--ink);
}

.final h2 {
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 18px;
}

.final p {
  max-width: 640px;
  margin-inline: auto;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 30px;
}

.center-actions {
  justify-content: center;
  margin-bottom: 0;
}

.content-grid,
.faq-grid,
.article-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.prose-card {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.052);
}

.prose-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.prose-card h3 {
  margin-bottom: 10px;
}

.prose-card p,
.prose-flow p {
  color: var(--muted);
  line-height: 1.75;
}

.highlight-card {
  border-color: rgba(217, 184, 108, 0.24);
  background: linear-gradient(180deg, rgba(217, 184, 108, 0.1), rgba(255, 255, 255, 0.04));
}

.compact-list {
  margin-top: 20px;
}

.faq-list,
.article-body {
  display: grid;
  gap: 14px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.faq-grid .section-head {
  max-width: 860px;
  margin-inline: auto;
  margin-bottom: 0;
  text-align: center;
}

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

.article-wrap {
  grid-template-columns: minmax(0, 1fr) 300px;
}

.article-section h2 {
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.article-sidebar {
  position: sticky;
  top: 102px;
}

.article-sidebar .prose-card {
  display: grid;
  gap: 13px;
}

.article-sidebar a {
  color: rgba(251, 248, 239, 0.76);
  font-weight: 800;
}

.article-sidebar a:hover {
  color: var(--gold);
}

.prose-flow {
  display: grid;
  gap: 18px;
}

.prose-flow h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  margin-bottom: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: 26px;
  padding-bottom: 28px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col strong {
  color: var(--text);
}

.footer-col a,
.footer-col p {
  color: rgba(251, 248, 239, 0.58);
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-brand-col p {
  margin: 14px 0 0;
}

footer {
  padding: 38px 0;
  color: rgba(251, 248, 239, 0.52);
  font-size: 0.9rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .utility-layout,
  .enterprise,
  .terms,
  .contact-layout,
  .content-grid,
  .faq-grid,
  .article-wrap {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

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

  .console {
    max-width: 680px;
  }

  .value-band {
    grid-template-columns: 1fr;
  }

  .value-price {
    text-align: left;
  }

  .tracking-form,
  .tracking-result-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-app-links {
    display: none;
  }

  .menu-btn {
    display: grid;
  }

  .mobile-menu {
    position: fixed;
    top: 66px;
    left: 14px;
    right: 14px;
    z-index: 19;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(7, 8, 6, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 8px;
    color: rgba(251, 248, 239, 0.82);
    font-weight: 800;
  }

  .mobile-menu a:hover,
  .mobile-menu a.active {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
  }

  .mobile-menu .mobile-cta {
    color: #151008;
    background: linear-gradient(135deg, #f4d98a, #c79a43);
    margin-top: 4px;
  }

  .metrics,
  .feature-grid,
  .story-grid,
  .quote-grid,
  .faq-list,
  .pricing,
  .utility-grid,
  .enterprise-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 640px) {
  .wrap {
    width: min(var(--max), calc(100% - 28px));
  }

  .nav {
    height: 66px;
    gap: 12px;
  }

  .nav-cta,
  .nav-app-links {
    display: none;
  }

  .nav-utility {
    margin-left: auto;
  }

  .theme-toggle {
    min-height: 38px;
    padding: 4px 6px 4px 10px;
    gap: 8px;
  }

  .theme-copy {
    gap: 1px;
  }

  .theme-title {
    font-size: 0.64rem;
  }

  .theme-mode {
    font-size: 0.82rem;
  }

  .theme-track {
    width: 38px;
    height: 22px;
  }

  .theme-thumb {
    width: 16px;
    height: 16px;
  }

  html[data-theme="dark"] .theme-thumb {
    transform: translateX(16px);
  }

  .brand {
    gap: 9px;
    font-size: 1rem;
    max-width: calc(100vw - 170px);
  }

  .brand-mark {
    width: 34px;
    flex-basis: 34px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 72px;
  }

  .page-hero {
    padding: 118px 0 66px;
  }

  .hero-home::before {
    background:
      linear-gradient(180deg, rgba(7, 8, 6, 0.88), rgba(7, 8, 6, 0.76)),
      url("/images/hero-port.jpg") center / cover;
  }

  .hero-home::after {
    background:
      linear-gradient(180deg, transparent 54%, var(--ink)),
      url("/images/hero-air-overlay.jpg") right -110px top 74px / 420px auto no-repeat;
    opacity: 0.55;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .status-strip,
  .workflow,
  .metrics,
  .feature-grid,
  .story-grid,
  .quote-grid,
  .faq-list,
  .pricing,
  .utility-grid,
  .enterprise-list,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    grid-template-columns: 38px 1fr;
  }

  .badge {
    grid-column: 2;
    width: fit-content;
  }

  .section {
    padding: 72px 0;
  }

  .metric,
  .compare-panel,
  .feature-card,
  .pricing-card,
  .utility-intro,
  .prose-card,
  .terms-box,
  .value-band {
    padding: 22px;
  }

  .form-actions {
    align-items: stretch;
  }

  footer {
    text-align: center;
  }

  .footer-row {
    justify-content: center;
  }
}

.nav-utility {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.theme-toggle {
  min-height: 42px;
  padding: 6px 8px 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 184, 108, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.theme-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.theme-title,
.theme-mode {
  line-height: 1;
}

.theme-title {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(251, 248, 239, 0.65);
}

.theme-mode {
  font-size: 0.9rem;
  font-weight: 800;
}

.theme-track {
  width: 42px;
  height: 24px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(217, 184, 108, 0.18);
  display: inline-flex;
  align-items: center;
}

.theme-thumb {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f4d98a, #c79a43);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
  transform: translateX(0);
  transition: transform 180ms ease;
}

html[data-theme="dark"] .theme-thumb {
  transform: translateX(18px);
}

.theme-toggle-mobile {
  width: 100%;
  justify-content: space-between;
  margin-bottom: 6px;
}

html[data-theme="light"] {
  --ink: #f6fbff;
  --text: #1d2b4a;
  --muted: #6e7f9d;
  --gold: #0f8f72;
  --mint: #24b6cf;
  --danger: #ef476f;
  --shadow: 0 24px 72px rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 10% 8%, rgba(80, 205, 242, 0.24), transparent 27rem),
    radial-gradient(circle at 94% 8%, rgba(240, 207, 138, 0.18), transparent 18rem),
    radial-gradient(circle at 0% 100%, rgba(174, 205, 241, 0.24), transparent 19rem),
    radial-gradient(circle at 88% 40%, rgba(28, 180, 200, 0.10), transparent 24rem),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    var(--ink);
}

html[data-theme="light"] body::before {
  background:
    linear-gradient(135deg, rgba(80, 205, 242, 0.08), transparent 34%),
    linear-gradient(315deg, rgba(15, 143, 114, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 46%, rgba(15, 23, 42, 0.01));
}

html[data-theme="light"] .topbar {
  border-bottom-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .brand-mark {
  border-color: rgba(15, 143, 114, 0.24);
  background:
    linear-gradient(145deg, rgba(15, 143, 114, 0.14), rgba(20, 184, 212, 0.12)),
    rgba(255, 255, 255, 0.94);
  box-shadow: inset 0 0 20px rgba(15, 143, 114, 0.10);
}

html[data-theme="light"] .brand-mark span {
  color: #0f8f72;
}

html[data-theme="light"] .nav-links {
  color: rgba(22, 32, 51, 0.72);
}

html[data-theme="light"] .nav-links a:hover,
html[data-theme="light"] .nav-links a.active {
  color: #0f8f72;
}

html[data-theme="light"] .nav-cta {
  border-color: rgba(203, 213, 225, 0.92);
  color: #162033;
  background: rgba(255, 255, 255, 0.84);
}

html[data-theme="light"] .nav-cta:hover {
  border-color: rgba(15, 143, 114, 0.28);
  background: rgba(239, 253, 250, 0.92);
}

html[data-theme="light"] .theme-toggle,
html[data-theme="light"] .menu-btn {
  border-color: rgba(15, 23, 42, 0.10);
  background: rgba(255, 255, 255, 0.78);
}

html[data-theme="light"] .theme-title {
  color: rgba(100, 116, 139, 0.92);
}

html[data-theme="light"] .menu-lines span {
  background: #162033;
}

html[data-theme="light"] .page-hero {
  background:
    linear-gradient(90deg, rgba(250, 253, 255, 0.96) 0%, rgba(246, 251, 255, 0.88) 55%, rgba(246, 251, 255, 0.66) 100%),
    url("/images/hero-port.jpg") center / cover;
}

html[data-theme="light"] .hero-home::before {
  background:
    linear-gradient(90deg, rgba(250, 253, 255, 0.96) 0%, rgba(246, 251, 255, 0.88) 47%, rgba(246, 251, 255, 0.52) 100%),
    url("/images/hero-port.jpg") center / cover;
}

html[data-theme="light"] .hero-home::after {
  background:
    linear-gradient(180deg, transparent 58%, var(--ink)),
    url("/images/hero-air-overlay.jpg") right 12% top 16% / min(44vw, 720px) auto no-repeat;
  opacity: 0.20;
  mix-blend-mode: normal;
}

html[data-theme="light"] .eyebrow {
  background: rgba(255, 255, 255, 0.82);
  color: #0f8f72;
  border-color: rgba(15, 143, 114, 0.18);
}

html[data-theme="light"] .hero-message,
html[data-theme="light"] .value-band {
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .hero-message {
  background:
    linear-gradient(135deg, rgba(15, 143, 114, 0.08), rgba(36, 182, 207, 0.08)),
    rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #159778, #28b3d2);
  box-shadow: 0 16px 42px rgba(15, 143, 114, 0.22);
}

html[data-theme="light"] .btn-primary:hover {
  background: linear-gradient(135deg, #0f7e66, #1ea3c0);
}

html[data-theme="light"] .btn-secondary {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.94);
}

html[data-theme="light"] .hero-points span {
  border-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.76);
}

html[data-theme="light"] .console {
  border-color: rgba(15, 143, 114, 0.18);
  background:
    linear-gradient(180deg, rgba(13, 98, 82, 0.98), rgba(17, 151, 120, 0.96) 56%, rgba(36, 182, 207, 0.94));
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.16);
}

html[data-theme="light"] .console,
html[data-theme="light"] .metric,
html[data-theme="light"] .workflow-card,
html[data-theme="light"] .compare-panel,
html[data-theme="light"] .feature-card,
html[data-theme="light"] .pricing-card,
html[data-theme="light"] .utility-card,
html[data-theme="light"] .utility-intro,
html[data-theme="light"] .enterprise-list div,
html[data-theme="light"] .terms-box,
html[data-theme="light"] .contact-layout .prose-card,
html[data-theme="light"] .story-card,
html[data-theme="light"] .quote-card,
html[data-theme="light"] .story-shot,
html[data-theme="light"] .prose-card,
html[data-theme="light"] .tracking-widget {
  border-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

html[data-theme="light"] .console-head,
html[data-theme="light"] .status-box,
html[data-theme="light"] .flow-step,
html[data-theme="light"] .shot-bar,
html[data-theme="light"] .shot-row,
html[data-theme="light"] .mobile-menu {
  border-color: rgba(226, 232, 240, 0.92);
  background: rgba(255, 255, 255, 0.82);
}

html[data-theme="light"] .console-head,
html[data-theme="light"] .status-box,
html[data-theme="light"] .flow-step {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.14);
}

html[data-theme="light"] .console-title,
html[data-theme="light"] .status-box small,
html[data-theme="light"] .flow-step span {
  color: rgba(240, 249, 255, 0.84);
}

html[data-theme="light"] .flow-step strong,
html[data-theme="light"] .console,
html[data-theme="light"] .status-box b {
  color: #ffffff;
}

html[data-theme="light"] .status-box b {
  font-weight: 800;
}

html[data-theme="light"] .badge {
  color: #0f8f72;
  background: rgba(240, 253, 250, 0.90);
  border-color: rgba(167, 243, 208, 0.92);
}

html[data-theme="light"] .window-dots span,
html[data-theme="light"] .shot-bar span {
  background: rgba(100, 116, 139, 0.34);
}

html[data-theme="light"] .section {
  border-bottom-color: rgba(226, 232, 240, 0.84);
}

html[data-theme="light"] .section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(248, 250, 252, 0.12)),
    rgba(248, 250, 252, 0.22);
}

html[data-theme="light"] .kicker,
html[data-theme="light"] .hero-message strong,
html[data-theme="light"] .metric strong,
html[data-theme="light"] .value-price strong,
html[data-theme="light"] .plan-label,
html[data-theme="light"] .feature-icon,
html[data-theme="light"] .workflow-card::before,
html[data-theme="light"] .status-box b {
  color: #0f8f72;
}

html[data-theme="light"] .feature-icon,
html[data-theme="light"] .workflow-card::before {
  border-color: rgba(15, 143, 114, 0.22);
  background: rgba(15, 143, 114, 0.08);
}

html[data-theme="light"] .plan-label {
  background: rgba(15, 143, 114, 0.08);
  border-color: rgba(15, 143, 114, 0.18);
}

html[data-theme="light"] .value-band {
  border-color: rgba(15, 143, 114, 0.16);
  background:
    radial-gradient(circle at 90% 14%, rgba(80, 205, 242, 0.12), transparent 12rem),
    linear-gradient(135deg, rgba(15, 143, 114, 0.08), rgba(36, 182, 207, 0.07)),
    rgba(255, 255, 255, 0.88);
}

html[data-theme="light"] .pricing-card.popular {
  border-color: rgba(15, 143, 114, 0.22);
  background: linear-gradient(180deg, rgba(15, 143, 114, 0.10), rgba(255, 255, 255, 0.94));
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .feature-card:hover,
html[data-theme="light"] .pricing-card:hover,
html[data-theme="light"] .utility-card:hover,
html[data-theme="light"] .story-card:hover,
html[data-theme="light"] .quote-card:hover {
  border-color: rgba(15, 143, 114, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

html[data-theme="light"] .story-shot {
  border-color: rgba(15, 143, 114, 0.18);
  background:
    linear-gradient(180deg, rgba(13, 98, 82, 0.96), rgba(17, 151, 120, 0.94) 58%, rgba(36, 182, 207, 0.90));
}

html[data-theme="light"] .shot-bar,
html[data-theme="light"] .shot-row {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

html[data-theme="light"] .shot-row strong {
  color: #ffffff;
}

html[data-theme="light"] .shot-row span {
  color: rgba(240, 249, 255, 0.84);
}

html[data-theme="light"] .field input,
html[data-theme="light"] .field select,
html[data-theme="light"] .field textarea {
  border-color: rgba(203, 213, 225, 0.92);
  background: rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .hero-copy,
html[data-theme="light"] .lead,
html[data-theme="light"] .hero-message p,
html[data-theme="light"] .hero-points,
html[data-theme="light"] .console-title,
html[data-theme="light"] .list li,
html[data-theme="light"] .article-sidebar a,
html[data-theme="light"] .field span {
  color: rgba(22, 32, 51, 0.84);
}

html[data-theme="light"] .value-band p,
html[data-theme="light"] .value-price span,
html[data-theme="light"] .story-top p,
html[data-theme="light"] .quote-card p,
html[data-theme="light"] .quote-card span,
html[data-theme="light"] .metric span,
html[data-theme="light"] .feature-card p,
html[data-theme="light"] .workflow-card p,
html[data-theme="light"] .utility-card p,
html[data-theme="light"] .enterprise-list span,
html[data-theme="light"] .terms-box p,
html[data-theme="light"] .utility-intro p,
html[data-theme="light"] .enterprise-copy p,
html[data-theme="light"] .form-actions p,
html[data-theme="light"] .contact-note p,
html[data-theme="light"] .status-box small,
html[data-theme="light"] .flow-step span,
html[data-theme="light"] .plan-copy {
  color: rgba(100, 116, 139, 0.94);
}

html[data-theme="light"] .article-sidebar a:hover {
  color: #0f8f72;
}

html[data-theme="light"] .field select option {
  color: #162033;
  background: #ffffff;
}

html[data-theme="light"] .mobile-menu a {
  color: rgba(22, 32, 51, 0.84);
}

html[data-theme="light"] .mobile-menu a:hover,
html[data-theme="light"] .mobile-menu a.active {
  background: rgba(15, 143, 114, 0.08);
}

html[data-theme="light"] .footer-col a,
html[data-theme="light"] .footer-col p,
html[data-theme="light"] footer,
html[data-theme="light"] .footer-row {
  color: rgba(100, 116, 139, 0.96);
}

html[data-theme="light"] .footer-row {
  border-top-color: rgba(226, 232, 240, 0.92);
}
