@charset "UTF-8";

/* =========================================================
   getharborlink.com — Static Marketing Theme
   Matches HarborLink app look/feel by reusing app tokens
   and landing page behavior.
   Sources:
   - App tokens/base: theme.css
   - Landing hero/buttons: landing-page.css
   ========================================================= */

/* ---------- App Design Tokens (copied from app theme.css) ---------- */
:root {
  --color-nobackground: #f5f7fb;
  --color-background: #f5f7fb;
  --color-surface: #ffffff;
  --color-surface-strong: #eef2f7;
  --color-border: #d7dde5;

  --color-primary: #0b3b68;
  --color-primary-strong: #0f4f86;
  --color-on-primary: #ffffff;

  --color-secondary: #1f6f8b;
  --color-accent: #2b9ad0;

  --color-text: #1f2937;
  --color-text-muted: #5b6b7a;

  --color-success: #118c4f;

  /* Warning (Yellow) */
  --color-warning: #f2c200;
  --color-warning-strong: #d9ad00;
  --color-on-warning: #111827;

  /* Attention (Orange) */
  --color-attention: #f97316;
  --color-attention-strong: #ea580c;
  --color-on-attention: #ffffff;

  /* Destructive (Red) */
  --color-danger: #c0353d;
  --color-danger-strong: #a42d33;
  --color-on-danger: #ffffff;

  --color-info: #0f7fbf;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;

  --shadow-sm: 0 4px 12px rgba(12, 21, 36, 0.06);
  --shadow-md: 0 10px 30px rgba(12, 21, 36, 0.12);

  --line-height: 1.6;

  /* Static site layout */
  --max-width: 1200px;
  --section-pad: 4.5rem;
}

/* ---------- Base Reset (aligned with app theme.css) ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--color-background);
  color: var(--color-text);
  line-height: var(--line-height);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--color-text);
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
  color: var(--color-text-muted);
}

a {
  color: inherit;
  text-decoration: none;
}

a:not(.btn):hover {
  color: var(--color-primary-strong);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--color-accent) 35%, transparent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ---------- Layout Helpers ---------- */
.container {
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

main {
  display: block;
}

/* ---------- Header / Nav (app-like: clean, bordered, sticky) ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-background) 92%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: none;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong {
  font-size: 1rem;
  letter-spacing: -0.01em;
  display: block;
  color: var(--color-text);
}

.brand span {
  display: block;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 1px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.navlinks a {
  padding: 0.55rem 0.7rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  opacity: 0.85;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.navlinks a:hover {
  background: var(--color-surface-strong);
  opacity: 1;
  text-decoration: none;
}

.navcta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* ---------- Buttons (match landing-page.css semantics) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;

  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);

  font-size: 1rem;
  font-weight: 600;

  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.btn.primary {
  background: var(--color-primary);
  color: var(--color-on-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--color-primary-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn.ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn.ghost:hover {
  background: var(--color-surface-strong);
  border-color: var(--color-primary);
  text-decoration: none;
}

/* ---------- Hero (use the app landing gradient) ---------- */
.hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  color: var(--color-on-primary);
}

.hero .grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.92rem;
}

.hero h1 {
  color: rgba(255,255,255,0.98);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.08;
  margin-top: 0.75rem;
}

.hero p,
.hero .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-top: 0.9rem;
  max-width: 60ch;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  color: rgba(255,255,255,0.86);
  font-size: 0.95rem;
}

.hero-note code {
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.92);
}

/* Hero card on right */
.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 34px -18px rgba(0,0,0,0.55);
  padding: 1rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1rem;
}

.metric {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--radius-md);
  padding: 0.85rem;
}

.metric .v {
  color: rgba(255,255,255,0.98);
  font-weight: 700;
  font-size: 1.25rem;
}

.metric .k {
  margin-top: 0.2rem;
  color: rgba(255,255,255,0.82);
  font-size: 0.95rem;
}

/* Hero buttons in inverse area (match landing: white primary + ghost outline) */
.hero .btn.primary {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}

.hero .btn.primary:hover {
  background: #ffffff;
  color: var(--color-primary-strong);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.hero .btn.ghost {
  color: #ffffff;
  border-color: rgba(255,255,255,0.5);
}

.hero .btn.ghost:hover {
  border-color: #ffffff;
  background: rgba(255,255,255,0.10);
}

/* ---------- Sections ---------- */
section {
  padding: var(--section-pad) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head .lead {
  max-width: 70ch;
}

/* Pills */
.pills {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--color-surface-strong);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ---------- Cards / Grids ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.85rem;
  font-weight: 700;
}

.card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--color-text-muted);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.step {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.step .n {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: var(--color-primary);
  color: var(--color-on-primary);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.step h3 {
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

.step p {
  margin-top: 0.25rem;
}

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.plan {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  position: relative;
}

.plan.featured {
  border-color: color-mix(in oklab, var(--color-primary) 35%, var(--color-border));
  box-shadow: var(--shadow-md);
}

.plan .tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: color-mix(in oklab, var(--color-primary) 10%, #ffffff);
  border: 1px solid color-mix(in oklab, var(--color-primary) 20%, var(--color-border));
  color: var(--color-primary-strong);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
}

.plan .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0.6rem 0 0.25rem;
  letter-spacing: -0.02em;
}

.plan .sub {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.plan li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--color-text-muted);
}

.plan li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: color-mix(in oklab, var(--color-success) 14%, #ffffff);
  border: 1px solid color-mix(in oklab, var(--color-success) 20%, var(--color-border));
  color: var(--color-success);
  font-weight: 900;
  margin-top: 2px;
}

/* ---------- CTA Band ---------- */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);

  padding: 1.25rem;
}

.cta-band h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.cta-band p {
  margin: 0;
}

/* ---------- Form ---------- */
.form {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.25rem;
}

.field {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  color: var(--color-text);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: all 0.15s ease-in-out;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11, 59, 104, 0.10);
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  gap: 0.75rem;
}

details {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

summary {
  list-style: none;
  cursor: pointer;

  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  color: var(--color-text);
  font-weight: 700;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding: 0 1.1rem 1rem;
  margin: 0;
  color: var(--color-text-muted);
}

.chev {
  opacity: 0.75;
  transition: transform 0.15s ease;
}

details[open] .chev {
  transform: rotate(180deg);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
  padding: 2rem 0;
}

.foot {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

footer small {
  display: block;
  margin-top: 0.75rem;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.links a {
  padding: 0.5rem 0.65rem;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  opacity: 0.8;
  transition: background 0.15s ease, opacity 0.15s ease;
}

.links a:hover {
  background: var(--color-surface-strong);
  opacity: 1;
  text-decoration: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .grid {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .navlinks {
    width: 100%;
    justify-content: flex-start;
    padding-bottom: 0.25rem;
  }
}

@media (max-width: 900px) {
  .grid-3,
  .steps,
  .pricing {
    grid-template-columns: 1fr;
  }

  section {
    padding: 3.25rem 0;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ---------- Reduce motion ---------- */
@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   getharborlink.com marketing layer
   (styles the classes used by index.html)
   Append to bottom of theme.css
   ========================================================= */

:root{
  --max: 1200px;
  --hero-text: rgba(255,255,255,.92);
  --hero-muted: rgba(255,255,255,.78);
  --hero-border: rgba(255,255,255,.18);
  --hero-panel: rgba(255,255,255,.12);
}

/* layout */
.container{ width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
main{ display:block; }
section{ padding: 4.25rem 0; }

/* header/nav */
header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in oklab, var(--color-background) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{ display:flex; align-items:center; gap: 10px; }

.logo{
  width: 22em;
  padding: 2px;
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: 10px 5px 25px rgba(0, 0, 161, 0.25);
  box-shadow: none;
  object-fit: contain;
}
.navlinks{
  display:flex;
  align-items:center;
  gap: 6px;
  flex-wrap:wrap;
  justify-content:center;
}
.navlinks a{
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: var(--color-text);
  opacity: .82;
  text-decoration:none;
}
.navlinks a:hover{
  background: var(--color-surface-strong);
  opacity: 1;
  text-decoration:none;
}
.navcta{ display:flex; gap: 10px; align-items:center; }

/* buttons used by index.html */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-weight: 650;
  font-size: 0.98rem;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
  text-decoration:none;
  transition: transform .15s ease, box-shadow .18s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  text-decoration:none;
}
.btn.primary{
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-on-primary);
}
.btn.primary:hover{ background: var(--color-primary-strong); border-color: var(--color-primary-strong); }
.btn.ghost{
  background: transparent;
  border-color: var(--color-border);
  box-shadow: none;
}
.btn.ghost:hover{
  background: var(--color-surface-strong);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

/* hero */
.hero{
  padding: 3.75rem 0 3rem;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}
.eyebrow{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--hero-text);
  font-weight: 650;
  font-size: .92rem;
}
.hero h1{
  margin-top: 14px;
  font-size: clamp(2.25rem, 4.2vw, 3.35rem);
  line-height: 1.07;
  color: rgba(255,255,255,.98);
}
.subhead{
  margin-top: 12px;
  font-size: 1.10rem;
  line-height: 1.7;
  color: var(--hero-muted);
  max-width: 62ch;
}
.hero-ctas{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.hero .btn.primary{
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.hero .btn.primary:hover{
  color: var(--color-primary-strong);
  transform: translateY(-2px);
}
.hero .btn{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  box-shadow: none;
}
.hero .btn:hover{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.34);
}
.trust{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 18px;
}
.trust .pill{
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.20);
  color: rgba(255,255,255,.90);
  font-weight: 650;
}
.check{ opacity: .95; }

/* right-side mock */
.mock{
  background: var(--hero-panel);
  border: 1px solid var(--hero-border);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
}
.mock-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
}
.mock-title strong{ color: rgba(255,255,255,.96); }
.mock-title span{ display:block; margin-top: 2px; color: rgba(255,255,255,.72); font-size: .92rem; }
.tag{
  display:inline-flex;
  align-items:center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.92);
  font-size: .85rem;
  font-weight: 650;
}
.kpis{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}
.kpi{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 12px;
}
.kpi .label{ color: rgba(255,255,255,.72); font-size: .92rem; }
.kpi .value{ color: rgba(255,255,255,.98); font-weight: 800; font-size: 1.35rem; margin-top: 4px; }
.kpi .delta{ color: rgba(255,255,255,.72); font-size: .92rem; margin-top: 2px; }

.mapbox{
  margin-top: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-md);
  padding: 12px;
}
.mapbox .grid{
  height: 120px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 18px 18px;
  margin-bottom: 12px;
  opacity: .65;
}
.slips{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.slip{
  height: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.10);
}
.slip.rented{ background: rgba(43,154,208,.35); border-color: rgba(43,154,208,.35); }
.slip.vacant{ background: rgba(17,140,79,.30); border-color: rgba(17,140,79,.30); }

/* section head + cards */
.section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap: 16px; margin-bottom: 18px; }
.section-head .lead{ max-width: 72ch; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 16px;
  transition: transform .16s ease, box-shadow .18s ease;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }
.icon{
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  color: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 10px;
}
.icon svg{ width: 22px; height: 22px; }

/* pricing */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plan{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 18px;
  position:relative;
}
.plan.featured{ box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--color-primary) 35%, var(--color-border)); }
.plan .price{ font-size: 2.05rem; font-weight: 850; margin: 10px 0 6px; color: var(--color-text); }
.plan .sub{ color: var(--color-text-muted); }
.plan ul{ margin: 14px 0 0; padding: 0; list-style:none; display:grid; gap: 9px; }
.plan li{ display:flex; gap: 10px; align-items:flex-start; color: var(--color-text-muted); }
.plan li:before{
  content:"✓";
  width: 20px; height: 20px;
  border-radius: 999px;
  display:inline-grid;
  place-items:center;
  background: color-mix(in oklab, var(--color-success) 14%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-success) 20%, var(--color-border));
  color: var(--color-success);
  font-weight: 900;
  margin-top: 2px;
}

/* demo CTA band + form */
.cta-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}
.form{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 16px;
}
.field{ display:grid; gap: 8px; margin-bottom: 12px; }
label{ font-weight: 650; color: var(--color-text); }
input, textarea, select{
  width:100%;
  padding: 12px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
}
input:focus, textarea:focus, select:focus{
  outline:none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(11,59,104,.10);
}

/* faq */
.faq{ display:grid; gap: 10px; }
details{
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow:hidden;
}
summary{
  padding: 14px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  cursor:pointer;
  font-weight: 750;
  color: var(--color-text);
  list-style:none;
}
summary::-webkit-details-marker{ display:none; }
details p{ padding: 0 14px 14px; margin:0; color: var(--color-text-muted); }
.chev{ opacity:.75; transition: transform .15s ease; }
details[open] .chev{ transform: rotate(180deg); }

/* footer */
footer{
  border-top: 1px solid var(--color-border);
  background: var(--color-background);
  padding: 28px 0;
}
.foot{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap:wrap;
}
.links{ display:flex; gap: 10px; flex-wrap:wrap; align-items:center; }
.links a{
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  opacity: .82;
  text-decoration:none;
}
.links a:hover{
  background: var(--color-surface-strong);
  opacity: 1;
  text-decoration:none;
}

/* responsive */
@media (max-width: 980px){
  .nav{ flex-wrap:wrap; }
  .navlinks{ width:100%; justify-content:flex-start; }
  .hero-grid{ grid-template-columns: 1fr; }
}
@media (max-width: 920px){
  .cards, .pricing{ grid-template-columns: 1fr; }
  section{ padding: 3.25rem 0; }
  .cta-band{ flex-direction:column; align-items:flex-start; }

  /* Center button groups when stacked on mobile */
  .navcta,
  .hero-ctas,
  .cta-actions,
  .cta-band > div:last-child,
  .form .form-actions {
    justify-content: center;
    align-items: center;
  }
}

/* =========================================================
   getharborlink.com — Premium marketing layer (BEST IN CLASS)
   Append to bottom of theme.css
   ========================================================= */

/* ---------- Global polish ---------- */
section { padding: 4.5rem 0; }
.section-head { margin-bottom: 1.75rem; }
.section-head h2 { letter-spacing: -0.02em; }
.lead { max-width: 72ch; }

/* consistent card feel */
.card,
.plan,
details,
.form,
.cta-band,
.row {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
}

/* ---------- HOW IT WORKS (rows) ---------- */
.rows {
  display: grid;
  gap: 12px;
}

.row {
  border-radius: var(--radius-lg);
  padding: 16px 16px;
  transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease;
}

.row:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
}

.row .top {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}

.bullet {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--color-on-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-strong) 100%);
  box-shadow: 0 10px 22px rgba(12, 21, 36, 0.18);
}

.row strong {
  display: block;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-top: 2px;
}

.row span {
  display: block;
  margin-top: 6px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ---------- PRICING (premium cards) ---------- */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.plan {
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.plan:before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(600px 220px at 20% 0%, rgba(43, 154, 208, 0.18), transparent 60%),
              radial-gradient(600px 220px at 80% 0%, rgba(11, 59, 104, 0.18), transparent 60%);
  transition: opacity .2s ease;
}

.plan:hover:before { opacity: 1; }

.plan.featured {
  border-color: color-mix(in oklab, var(--color-primary) 28%, var(--color-border));
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.plan.featured:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 240px at 50% 0%, rgba(43,154,208,.12), transparent 60%);
}

.plan .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: .82rem;
  color: var(--color-primary-strong);
  background: color-mix(in oklab, var(--color-primary) 8%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
  padding: 6px 10px;
  border-radius: 999px;
}

.plan h3 { margin-top: 10px; font-size: 1.15rem; }

.plan .price {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin: 10px 0 2px;
  color: var(--color-text);
}

.plan .sub { margin-top: 6px; color: var(--color-text-muted); }

.plan ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.plan li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.plan li:before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--color-success);
  background: color-mix(in oklab, var(--color-success) 12%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-success) 20%, var(--color-border));
}

/* pricing CTA alignment */
.plan .plan-cta {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
}

.plan .btn {
  width: 100%;
  justify-content: center;
}

/* ---------- HERO MOCK (slip map) ---------- */
.mock {
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(900px 300px at 10% 0%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(900px 300px at 90% 0%, rgba(255,255,255,.06), transparent 55%),
    rgba(255,255,255,.10);
  box-shadow: 0 28px 60px rgba(0,0,0,.20);
  overflow: hidden;
}

.mapbox {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  padding: 12px;
}

.mapbox .grid {
  height: 140px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 12px 12px, rgba(255,255,255,.10) 1.5px, transparent 1.5px) 0 0/18px 18px,
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}

.mapbox .legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: rgba(255,255,255,.92);
}

.legend .chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: .82rem;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
}

.chip .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.chip.rented .dot { background: rgba(43,154,208,.85); }
.chip.vacant .dot { background: rgba(17,140,79,.85); }

.slips {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.slip {
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.10);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.slip.rented {
  background: rgba(43,154,208,.34);
  border-color: rgba(43,154,208,.38);
}

.slip.vacant {
  background: rgba(17,140,79,.28);
  border-color: rgba(17,140,79,.32);
}

/* ---------- DEMO FORM (remove low-class inline look) ---------- */
.form {
  border-radius: 18px;
  padding: 18px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
  .demo-grid .field--full {
    grid-column: 1 / -1;
  }
  .demo-grid .form-actions {
    grid-column: 1 / -1;
  }


.field label {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
  color: var(--color-text);
  transition: border-color .15s ease, box-shadow .15s ease, transform .1s ease;
}

.field input::placeholder,
.field textarea::placeholder { color: color-mix(in oklab, var(--color-text-muted) 75%, #fff); }

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: color-mix(in oklab, var(--color-primary) 35%, var(--color-border));
  box-shadow: 0 0 0 4px rgba(11, 59, 104, 0.10);
}

.field textarea { min-height: 140px; resize: vertical; grid-column: 1 / -1; }

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 4px;
}
.demo-grid .form-actions { justify-content: center; }

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 4px;
  color: var(--color-text-muted);
  font-size: .95rem;
  line-height: 1.45;
}

.form-errors {
  grid-column: 1 / -1;
  display: none;
  padding: 12px 14px;
  border-radius: 12px;
  background: color-mix(in oklab, var(--color-danger) 12%, var(--color-surface));
  color: var(--color-danger);
  font-weight: 800;
  line-height: 1.5;
  border: 1px solid color-mix(in oklab, var(--color-danger) 22%, var(--color-border));
}

/* ---------- COMPETITOR COMPARISON ---------- */
.compare-wrap {
  border-radius: 18px;
  overflow: auto;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.compare {
  width: 100%;
  border-collapse: collapse;
}

.compare th,
.compare td {
  padding: 14px 14px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.compare thead th {
  background: var(--color-surface-strong);
  font-size: .92rem;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.compare thead th.hl {
  background: color-mix(in oklab, var(--color-primary) 7%, #fff);
  color: var(--color-primary);
}

.compare td:first-child {
  font-weight: 800;
  color: var(--color-text);
  width: 34%;
}

.compare td:not(:first-child) {
  text-align: center;
}

.compare .yes,
.compare .no,
.compare .partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 140px;
  max-width: 100%;
  min-width: 34px;
  min-height: 30px;
  height: auto;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .86rem;
  border: 1px solid var(--color-border);
  background: #fff;
  line-height: 1.25;
  white-space: normal;
  text-align: center;
  align-self: center;
}

.compare .yes {
  color: var(--color-success);
  border-color: color-mix(in oklab, var(--color-success) 22%, var(--color-border));
  background: color-mix(in oklab, var(--color-success) 10%, #fff);
}

.compare .no {
  color: var(--color-danger);
  border-color: color-mix(in oklab, var(--color-danger) 22%, var(--color-border));
  background: color-mix(in oklab, var(--color-danger) 8%, #fff);
}

.compare .partial {
  color: var(--color-attention);
  border-color: color-mix(in oklab, var(--color-attention) 22%, var(--color-border));
  background: color-mix(in oklab, var(--color-attention) 10%, #fff);
}

.compare-note {
  padding: 12px 14px;
  color: var(--color-text-muted);
  font-size: .92rem;
  background: #fff;
}

/* ---------- FAQ polish ---------- */
.faq details {
  border-radius: 18px;
}

.faq summary {
  padding: 16px 16px;
  font-weight: 900;
}

.faq details p {
  padding: 0 16px 16px;
  line-height: 1.7;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .pricing { grid-template-columns: 1fr; }
  .demo-grid { grid-template-columns: 1fr; }
  .compare td:first-child { width: auto; }
}

@media (max-width: 640px) {
  #demo .section-panel { padding: 18px; }
  .form { padding: 16px; }
  #leadForm.form { padding: 16px; }
  .demo-grid { gap: 12px; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 720px) {
  .container { width: calc(100% - 24px); }
  section { padding: 3.25rem 0; }
  .nav { flex-direction: column; align-items: flex-start; gap: 8px; }
  .navlinks { width: 100%; justify-content: flex-start; }
  .navcta { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 18px; }
  .kpis { grid-template-columns: 1fr; }
  .slips { grid-template-columns: repeat(4, 1fr); }
  .section-head { flex-direction: column; align-items: flex-start; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .compare { min-width: 720px; }
  .foot { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .hero { padding: 2.75rem 0 2.25rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .slips { grid-template-columns: repeat(3, 1fr); }
}

/* =========================================================
   PREMIUM SECTION SEPARATION + STICKY HEADER FIXES
   ========================================================= */

/* Sticky header must be outside any overflow/transform parent.
   This also helps when other elements overlay it. */
header {
  position: sticky;
  top: 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
}

/* If any wrapper has overflow/transform, sticky can break.
   These are safe defaults for marketing pages. */
html, body { overflow-x: hidden; }
main { overflow: visible; }

/* --- Make sections feel like best-in-class panels --- */
section {
  position: relative;
  padding: 4.75rem 0;
}

/* Alternating section backgrounds — premium SaaS separation */
/* Alternating section backgrounds — elevated panels */
section:not(.hero) {
  position: relative;
}

section:not(.hero)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in oklab, var(--color-border) 70%, transparent),
    transparent
  );
}

section:not(.hero):nth-of-type(even) {
  background:
    linear-gradient(
      180deg,
      color-mix(in oklab, var(--color-background) 96%, #ffffff),
      var(--color-background)
    );
}

section:not(.hero):nth-of-type(odd) {
  background:
    linear-gradient(
      180deg,
      #ffffff,
      color-mix(in oklab, var(--color-background) 90%, #ffffff)
    );
}



/* Subtle top divider on each section (except first) */
section + section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: color-mix(in oklab, var(--color-border) 85%, transparent);
}

/* Wrap content in a surface panel (no markup changes required if you add .section-panel) */
.section-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

/* Section header spacing */
.section-head { margin-bottom: 22px; }
.section-head h2 { letter-spacing: -0.02em; }

/* Tighten feature cards so they look premium */
.cards, .pricing { gap: 16px; }
.card {
  border-radius: 18px;
  padding: 18px;
}
.card h3 { margin: 6px 0 8px; }
.card p { line-height: 1.65; }

/* How-it-works rows: make them feel like “step cards” */
.rows { display: grid; gap: 12px; }
.row {
  border-radius: 18px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease;
}
.row:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
}

/* Responsive */
@media (max-width: 980px) {
  section { padding: 3.75rem 0; }
  .section-panel { padding: 16px; }
}

/* =========================================================
   DEMO FORM — PREMIUM CLEANUP
   ========================================================= */

/* Make the demo section panel feel intentional */
#demo .section-panel {
  padding: 24px;
}

/* Tighten CTA band */
#demo .cta-band {
  border-radius: 18px;
  padding: 18px 18px;
}

/* Form layout + spacing */
#leadForm.form {
  border-radius: 18px;
  padding: 20px;
}

/* Better label rhythm */
#leadForm .field label {
  font-size: .9rem;
  font-weight: 800;
  margin-bottom: 6px;
}

/* Inputs: a touch more “app-like” */
#leadForm input,
#leadForm textarea {
  border-radius: 14px;
  padding: 14px 14px;
}

/* Textarea: more intentional height */
#leadForm textarea {
  min-height: 160px;
}

/* Buttons: consistent height and no “tiny” look */
#leadForm .btn {
  padding: 12px 18px;
  border-radius: 14px;
}

/* Form note spacing */
#leadForm p {
  margin-top: 10px;
}

/* =========================================================
   Guaranteed motion polish (NO scroll timelines needed)
   ========================================================= */

/* Slight entrance for hero content */
.hero .hero-grid > * {
  animation: hl-fade-up .55s ease-out both;
}

.hero .hero-grid > *:nth-child(2) { animation-delay: .08s; }

@keyframes hl-fade-up {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Premium hover lift across “interactive blocks” */
.card, .row, .plan, details, .compare-wrap, .cta-band, .form {
  transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover, .row:hover, .plan:hover, details:hover, .compare-wrap:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero .hero-grid > * { animation: none !important; }
}

/* =========================================================
   PRICING — style the actual markup (.price / .price.featured)
   ========================================================= */

.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: stretch;
}

.price{
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
  overflow: hidden;
  transition: transform .16s ease, box-shadow .18s ease, border-color .18s ease;
}

.price:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
}

/* label pill */
.price .tag{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .01em;
  color: var(--color-primary-strong);
  background: color-mix(in oklab, var(--color-primary) 10%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
}

/* headings + amounts */
.price h3{
  margin: 12px 0 6px;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.price .amt{
  margin-top: 10px;
  font-size: 2.25rem;
  font-weight: 950;
  letter-spacing: -0.03em;
  color: var(--color-text);
}

.price .per{
  margin-top: 6px;
  color: var(--color-text-muted);
  font-size: .95rem;
}

/* list */
.price .list{
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.price .list li{
  display:grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: center;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.price .mini{
  width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 12px;
  font-weight: 900;
  color: var(--color-success);
  background: color-mix(in oklab, var(--color-success) 10%, #fff);
  border: 1px solid color-mix(in oklab, var(--color-success) 18%, var(--color-border));
  flex-shrink: 0;
}

/* CTA */
.price .btn{
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  border-radius: 14px;
}

/* FEATURED — make it pop */
.price.featured{
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--color-primary) 30%, var(--color-border));
  box-shadow: 0 22px 50px rgba(12, 21, 36, 0.16);
}

.price.featured::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(900px 260px at 50% 0%, rgba(43,154,208,.16), transparent 62%),
    radial-gradient(900px 260px at 20% 0%, rgba(11,59,104,.14), transparent 60%);
  pointer-events:none;
}

.price.featured .tag{
  color: var(--color-primary);
  background: #ffffff;
}

.price.featured .btn.primary{
  box-shadow: 0 12px 26px rgba(11,59,104,.22);
}

/* responsive */
@media (max-width: 980px){
  .pricing{ grid-template-columns: 1fr; }
  .price.featured{ transform: none; }
}

/* =========================================================
   Coming Soon Modal (Open App)
   ========================================================= */

body.hl-modal-open {
  overflow: hidden;
}

.hl-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.hl-modal.is-open {
  display: block;
}

.hl-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 21, 36, 0.55);
  backdrop-filter: blur(6px);
}

.hl-modal__panel {
  /* Use absolute positioning inside the fixed modal so we can animate from top->center */
  position: absolute;
  left: 50%;
  top: 10vh;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 2rem));
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  padding: 0; /* use inner section padding below */
  opacity: 0;
  transition: top .45s cubic-bezier(.2,.9,.2,1), transform .45s cubic-bezier(.2,.9,.2,1), opacity .35s ease;
}

/* Centered/open state: move panel to exact center of viewport */
.hl-modal.is-open .hl-modal__panel {
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
}

.hl-modal__head {
  /* Center contents; close button will be absolutely positioned */
  display: block;
  text-align: center;
  position: relative;
}

.hl-modal__logo {
  display: block;
  margin: 0 auto 12px;
}

.hl-modal__logo img {
  width: 10em;
  height: auto;
  display: block;
}

.hl-modal__title {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--color-text);
  text-align: center;
}

.hl-modal__x {
  appearance: none;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 35px;
  line-height: 1;
  color: var(--color-text);
  transition: transform .14s ease, box-shadow .18s ease, border-color .18s ease;
  position: absolute;
  top: 12px;
  right: 12px;
}

.hl-modal__x:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: color-mix(in oklab, var(--color-primary) 18%, var(--color-border));
}

.hl-modal__body {
  margin-top: 10px;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: center;
  text-shadow: 0 4px 14px rgba(15, 23, 42, 0.52);
}

.hl-modal__actions {
  margin-top: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Give consistent generous padding for modal content */
.hl-modal__head,
.hl-modal__body,
.hl-modal__actions {
  padding: 18px;
}

/* ---------------------------------------------------------
   Mobile: Force-center common button groups (last-resort)
   Appended at EOF to avoid earlier overrides.
--------------------------------------------------------- */
@media (max-width: 920px) {
  .navcta,
  .hero-ctas,
  .cta-actions,
  .cta-band > div:last-child,
  .form .form-actions,
  .hl-modal__actions {
    display: flex !important;
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Ensure stacked buttons don't left-align due to inline margins */
  .navcta > *,
  .hero-ctas > *,
  .cta-actions > *,
  .cta-band > div:last-child > *,
  .form .form-actions > *,
  .hl-modal__actions > * {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ---------------------------------------------------------
   Mobile: Center header logo and make footer minimal
   Appended at EOF to ensure this overrides earlier rules.
--------------------------------------------------------- */
@media (max-width: 920px) {
  /* Center the brand/logo in the navigation when stacked */
  .nav { align-items: center !important; }
  .nav .brand { margin: 0 auto !important; }

  /* Also override the footer element itself so the DevTools 'footer { padding: ... }' rule is replaced */
  footer {
    padding: 14px 0;
    border-top: 1px solid var(--color-border);
    background: var(--color-primary) !important;
  }

  /* Make the footer tiny on mobile: hide brand + links, keep copyright */
  footer .foot .brand,
  footer .foot .links {
    display: none !important;
  }

  footer .foot {
    justify-content: center !important;
    padding: 0 !important;
  }

  footer .foot small {
    display: block !important;
    text-align: center !important;
    font-size: 0.85rem !important;
    color: var(--color-on-primary) !important;
    margin: 0 !important;
  }
}