/* Strux — light infrastructure software theme */
:root {
  --navy: #0f2340;
  --navy-mid: #1a3558;
  --navy-soft: #243f63;
  --orange: #f27f0c;
  --orange-bright: #f7ad19;
  --orange-deep: #d96e0a;
  --ink: #1c2430;
  --ink-muted: #5a6577;
  --ink-faint: #8a93a3;
  --surface: #ffffff;
  --surface-warm: #f7f8fb;
  --surface-cool: #eef2f7;
  --border: #d5dde8;
  --border-soft: #e4e9f0;
  --focus: #0f2340;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 35, 64, 0.06);
  --font-display: "Outfit", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --nav-h: 4.25rem;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, 1280px);
  margin-inline: auto;
}

/* ——— Nav ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(10px);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--border-soft);
  box-shadow: var(--shadow-sm);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(100% - 2rem, var(--max));
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 2.4rem;
  width: auto;
}

@media (min-width: 768px) {
  .logo-link img {
    height: 2.75rem;
  }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

@media (min-width: 860px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--ink-muted);
  border-radius: var(--radius);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--navy);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.85rem;
  font-weight: 550;
  font-size: 0.95rem;
  color: var(--ink-muted);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: inherit;
}

.nav-dropdown-trigger:hover,
.nav-dropdown.is-open .nav-dropdown-trigger,
.nav-dropdown-trigger.is-active {
  color: var(--navy);
}

.nav-dropdown-trigger svg {
  width: 0.85rem;
  height: 0.85rem;
  transition: transform 0.2s var(--ease);
}

.nav-dropdown.is-open .nav-dropdown-trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 12.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(15, 35, 64, 0.1);
  padding: 0.4rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0.18s;
}

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

.nav-dropdown-item {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--navy);
  border-radius: var(--radius);
  transition: background 0.15s;
}

.nav-dropdown-item:hover {
  background: var(--surface-cool);
}

.nav-dropdown-soon {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
  pointer-events: none;
  border-top: 1px solid var(--border-soft);
  margin-top: 0.25rem;
  padding-top: 0.75rem;
}

.btn.header-cta {
  display: none;
}

@media (min-width: 860px) {
  .btn.header-cta {
    display: inline-flex;
  }
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--navy);
}

@media (min-width: 860px) {
  .nav-toggle {
    display: none;
  }
}

.nav-toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
  z-index: 99;
  box-shadow: 0 12px 32px rgba(15, 35, 64, 0.08);
}

.nav-mobile.is-open {
  display: block;
}

.nav-mobile a,
.nav-mobile .nav-mobile-label {
  display: block;
  padding: 0.75rem 0.5rem;
  font-weight: 550;
  color: var(--navy);
  border-bottom: 1px solid var(--border-soft);
}

.nav-mobile .nav-mobile-soon {
  color: var(--ink-faint);
  font-weight: 500;
  font-size: 0.95rem;
  pointer-events: none;
}

.nav-mobile .nav-mobile-sub {
  padding-left: 1.25rem;
  font-weight: 500;
  color: var(--ink-muted);
  border-bottom: none;
}

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
  text-align: center;
  line-height: 1.2;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--surface-cool);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
}

.btn-lg {
  padding: 0.9rem 1.6rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ——— Hero (home) ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 85% 35%, rgba(242, 127, 12, 0.1), transparent 55%),
    linear-gradient(165deg, #f4f6fa 0%, #e8eef6 45%, #f7f8fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 35, 64, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 64, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black 35%, transparent 92%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  gap: 1.5rem;
  align-content: center;
  padding: 1.75rem 0 2rem;
  width: min(100% - 2rem, 1280px);
  margin-inline: auto;
}

@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.25fr);
    align-items: center;
    gap: 2.5rem;
    padding: 1.5rem 0 2.5rem;
  }
}

.hero-brand {
  margin-bottom: 1.1rem;
}

.hero-brand img {
  height: 2.75rem;
  width: auto;
}

@media (min-width: 768px) {
  .hero-brand img {
    height: 3.15rem;
  }
}

.hero h1 {
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  margin-bottom: 0.85rem;
  max-width: 14ch;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 34ch;
  margin-bottom: 1.35rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  margin: 0 -0.5rem;
}

@media (min-width: 960px) {
  .hero-visual {
    margin: 0;
  }
}

.hero-visual img,
.hero-visual svg {
  width: 100%;
  height: auto;
  display: block;
  max-height: min(58vh, 560px);
  object-fit: contain;
  object-position: right bottom;
}

/* ——— Page heroes (inner) ——— */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  background:
    radial-gradient(ellipse 60% 80% at 90% 0%, rgba(242, 127, 12, 0.07), transparent 50%),
    linear-gradient(180deg, var(--surface-cool) 0%, var(--surface) 100%);
  border-bottom: 1px solid var(--border-soft);
}

.page-hero .container {
  max-width: 40rem;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
}

.page-hero p {
  font-size: 1.15rem;
  color: var(--ink-muted);
  margin: 0;
}

.page-hero .cta-group {
  margin-top: 1.5rem;
}

.page-hero-product {
  padding-bottom: 4rem;
  overflow: hidden;
}

.page-hero-product .container,
.page-hero-product-inner {
  max-width: none;
  width: min(100% - 2.5rem, 1120px);
}

.page-hero-product-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 960px) {
  .page-hero-product-inner {
    grid-template-columns: minmax(260px, 0.9fr) minmax(340px, 1.2fr);
    gap: 3rem;
  }
}

.page-hero-copy {
  max-width: 34rem;
}

.eyebrow,
.page-hero .eyebrow,
.showcase-copy .eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 0.75rem;
}

/* ——— Sections ——— */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--surface-warm);
}

.section-texture {
  position: relative;
}

.section-texture::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 35, 64, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 35, 64, 0.035) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: linear-gradient(to bottom, black 10%, transparent 95%);
  pointer-events: none;
}

.section-texture > .container {
  position: relative;
  z-index: 1;
}

.section-panel {
  background:
    radial-gradient(ellipse 50% 40% at 0% 50%, rgba(242, 127, 12, 0.05), transparent 55%),
    linear-gradient(180deg, #f3f6fa 0%, #eef2f7 100%);
}

.section-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 700px) {
  .section-shell {
    padding: 2.75rem 2.5rem;
  }
}

.section-navy {
  background:
    linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: #e8edf4;
}

.section-navy h2,
.section-navy h3 {
  color: #fff;
}

.section-navy p {
  color: rgba(232, 237, 244, 0.78);
}

.section-head {
  max-width: 36rem;
  margin-bottom: 3rem;
}

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

.section-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
}

.section-head p {
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin: 0;
}

.accent {
  color: var(--orange);
}

/* Icons */
.icon-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #fff7ef 0%, #eef2f7 100%);
  border: 1px solid var(--border);
  color: var(--navy);
  margin-bottom: 1rem;
}

.icon-tile svg {
  width: 1.35rem;
  height: 1.35rem;
}

/* Product lineup (home) */
.product-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }
}

@media (min-width: 1000px) {
  .product-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.product-item {
  padding: 0;
  border: none;
}

.product-item h3 {
  font-size: 1.15rem;
  margin: 0 0 0.45rem;
}

.product-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Feature blocks (product page) */
.feature-blocks {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .feature-blocks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .feature-blocks {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.feature-block {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
  border-left: 3px solid var(--orange);
}

.feature-block .icon-tile {
  margin-bottom: 0.85rem;
}

.feature-block h3 {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.feature-block p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Feature list — no cards (legacy / about-compatible) */
.feature-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.feature-row {
  display: grid;
  gap: 0.75rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}

@media (min-width: 700px) {
  .feature-row {
    grid-template-columns: 12rem 1fr;
    gap: 2rem;
    align-items: baseline;
  }
}

.feature-row h3 {
  font-size: 1.15rem;
  margin: 0;
}

.feature-row p {
  margin: 0;
  color: var(--ink-muted);
}

/* Screenshots & showcases */
.shot-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.55rem;
  box-shadow: 0 10px 28px rgba(15, 35, 64, 0.08);
  overflow: hidden;
}

.shot-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 2px);
  border: 1px solid var(--border-soft);
}

.shot-frame-hero {
  box-shadow: 0 14px 36px rgba(15, 35, 64, 0.1);
}

.showcase {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .showcase {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
  }

  .showcase-reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .showcase-reverse .showcase-copy {
    order: 2;
  }

  .showcase-reverse .shot-frame {
    order: 1;
  }
}

.showcase-copy {
  max-width: 32rem;
}

.showcase-copy h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  margin-bottom: 0.85rem;
}

.showcase-copy p:not(.eyebrow) {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* How it works — numbered, not cards */
.steps {
  display: grid;
  gap: 2.5rem;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.step {
  position: relative;
  padding-top: 0.25rem;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Product spotlight */
.spotlight {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .spotlight {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.spotlight-lede {
  color: var(--ink-muted);
  font-size: 1.1rem;
}

.spotlight-list {
  margin: 1.5rem 0 2rem;
}

.spotlight-list li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.5rem;
  color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
}

.spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--orange);
}

.product-panel {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  color: #fff;
  overflow: hidden;
}

.product-panel-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-bright);
  margin-bottom: 0.75rem;
}

.product-panel h3 {
  color: #fff;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.product-panel p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.25rem;
}

/* Pricing — interactive containers OK */
.pricing-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 800px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.price-plan {
  display: flex;
  flex-direction: column;
  padding: 1.75rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s;
}

.price-plan:hover {
  border-color: var(--navy-soft);
}

.price-plan.is-featured {
  border-color: var(--orange);
  background: linear-gradient(180deg, #fffaf5 0%, #fff 40%);
}

.price-plan-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.price-plan-amount {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-plan-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.price-plan-desc {
  margin: 0.75rem 0 1.25rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.price-plan-features {
  flex: 1;
  margin-bottom: 1.5rem;
}

.price-plan-features li {
  padding: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--ink);
  padding-left: 1.25rem;
  position: relative;
}

.price-plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

.price-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange-deep);
  margin-bottom: 0.5rem;
}

/* Values — simple columns, no cards */
.values-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 700px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1000px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

/* Story layout */
.story-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 4rem;
    align-items: start;
  }
}

.story-grid .prose p {
  color: var(--ink-muted);
  font-size: 1.05rem;
}

.story-meta {
  padding: 1.75rem 0 0;
  border-top: 2px solid var(--navy);
}

.story-meta-year {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
}

.story-meta-label {
  color: var(--ink-muted);
  margin: 0.35rem 0 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.story-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--orange);
  letter-spacing: -0.02em;
}

.story-stats span {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 860px) {
  .contact-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
  }
}

.form-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 560px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
}

.form-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.contact-channels {
  margin: 1.5rem 0 2.5rem;
}

.contact-channel {
  display: block;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-channel .label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.2rem;
}

.contact-channel .value {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  font-size: 1.1rem;
}

.contact-channel:hover .value {
  color: var(--orange);
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
}

.faq-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.faq-item p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.98rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: var(--surface-cool);
  border-left: 3px solid var(--orange);
  color: var(--navy);
  font-size: 0.95rem;
}

.form-status.is-visible {
  display: block;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 5rem 0;
}

.cta-band h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  max-width: 18ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}

.section-navy .cta-band h2 {
  margin-inline: auto;
}

.cta-band p {
  max-width: 36ch;
  margin-inline: auto;
  margin-bottom: 1.75rem;
}

.cta-band .cta-group {
  justify-content: center;
}

.section-navy .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.section-navy .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 2rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col h3 {
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}

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

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
}

/* 404 */
.not-found {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 2rem) 1.25rem 3rem;
}

.not-found h1 {
  font-size: 5rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.hero-copy .hero-brand {
  animation: rise 0.8s var(--ease) both;
}

.hero-copy h1 {
  animation: rise 0.8s var(--ease) 0.12s both;
}

.hero-copy .hero-lede {
  animation: rise 0.8s var(--ease) 0.22s both;
}

.hero-copy .cta-group {
  animation: rise 0.8s var(--ease) 0.32s both;
}

.hero-visual {
  animation: rise-soft 1s var(--ease) 0.2s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise-soft {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
