:root {
  --bg: #060b11;
  --bg-soft: #0b131c;
  --panel: rgba(9, 16, 24, 0.72);
  --panel-strong: rgba(11, 19, 28, 0.9);
  --panel-border: rgba(182, 255, 210, 0.14);
  --text: #f6f8fb;
  --text-muted: rgba(246, 248, 251, 0.72);
  --text-soft: rgba(246, 248, 251, 0.54);
  --accent: #7cffb2;
  --accent-strong: #45f08c;
  --accent-dim: rgba(124, 255, 178, 0.14);
  --danger: #ff7368;
  --danger-dim: rgba(255, 115, 104, 0.14);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(69, 240, 140, 0.16), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(62, 105, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(69, 240, 140, 0.1), transparent 30%),
    linear-gradient(180deg, #04070d 0%, #071019 44%, #050a10 100%);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.72), transparent 88%);
}

body::after {
  background:
    linear-gradient(180deg, rgba(8, 14, 21, 0.08) 0%, rgba(8, 14, 21, 0.44) 100%),
    radial-gradient(circle at center, transparent 54%, rgba(0, 0, 0, 0.36) 100%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.section {
  padding: 6rem 0;
  position: relative;
}

.section.compact {
  padding: 4.5rem 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.eyebrow::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(124, 255, 178, 0.9);
}

.eyebrow.alert::before {
  background: var(--danger);
  box-shadow: 0 0 14px rgba(255, 115, 104, 0.85);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(4, 8, 14, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-row {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  align-items: start;
  gap: 2rem;
  padding: 1rem 0 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(124, 255, 178, 0.2), rgba(69, 240, 140, 0.08)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 255, 178, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    0 12px 30px rgba(0, 0, 0, 0.26),
    0 0 30px rgba(124, 255, 178, 0.12);
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text);
}

.brand-mark--image {
  width: 92px;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  place-items: unset;
}

.brand-mark--image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.24));
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.brand-text small {
  display: block;
  max-width: 22rem;
  color: var(--text-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.product-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.15rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-brand-lockup img {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.product-brand-lockup span {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: end;
  align-self: start;
  padding-top: 0.35rem;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  box-shadow: 0 0 18px rgba(124, 255, 178, 0.6);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.active {
  color: var(--text);
  text-shadow: 0 0 12px rgba(124, 255, 178, 0.28);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.page-hero {
  position: relative;
  padding: 5rem 0 4rem;
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(9, 16, 24, 0.1) 0%, rgba(9, 16, 24, 0.68) 60%, rgba(9, 16, 24, 0.88) 100%),
    radial-gradient(circle at 18% 16%, rgba(124, 255, 178, 0.18), transparent 26%),
    radial-gradient(circle at 80% 22%, rgba(69, 240, 140, 0.1), transparent 20%);
  pointer-events: none;
}

.page-hero--home::before {
  background:
    linear-gradient(92deg, rgba(4, 8, 14, 0.92) 0%, rgba(4, 8, 14, 0.78) 32%, rgba(4, 8, 14, 0.58) 56%, rgba(4, 8, 14, 0.82) 100%),
    linear-gradient(180deg, rgba(8, 14, 21, 0.22) 0%, rgba(8, 14, 21, 0.48) 100%),
    radial-gradient(circle at 80% 14%, rgba(255, 255, 255, 0.18), transparent 18%),
    url("images/hero-maize-field.jpg") center center / cover no-repeat;
}

.page-hero--alert::before {
  background:
    linear-gradient(120deg, rgba(15, 11, 13, 0.1) 0%, rgba(15, 11, 13, 0.7) 60%, rgba(12, 8, 11, 0.88) 100%),
    radial-gradient(circle at 18% 16%, rgba(255, 115, 104, 0.16), transparent 26%),
    radial-gradient(circle at 80% 22%, rgba(255, 115, 104, 0.08), transparent 20%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 2rem;
  align-items: center;
}

.page-hero--home .hero-grid {
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.page-hero:not(.page-hero--home) .hero-grid {
  grid-template-columns: 1fr;
  gap: 1.8rem;
}

.hero-copy {
  max-width: 41rem;
}

.page-hero--home .hero-copy {
  max-width: 74rem;
  margin: 0 auto;
  padding: 1.25rem 0 0.6rem;
  text-align: center;
}

.page-hero:not(.page-hero--home) .hero-copy {
  max-width: 74rem;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  margin-top: 1.4rem;
  font-size: clamp(2.9rem, 7vw, 5.5rem);
  line-height: 0.96;
  color: var(--text);
  max-width: 12ch;
}

.hero-title.medium {
  font-size: clamp(2.6rem, 6vw, 4.9rem);
}

.page-hero:not(.page-hero--home) .hero-title.medium {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.hero-title--home {
  max-width: 11ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.hero-description {
  margin-top: 1.5rem;
  max-width: 40rem;
  font-size: 1.06rem;
}

.page-hero:not(.page-hero--home) .hero-description,
.page-hero:not(.page-hero--home) .hero-subheadline,
.page-hero:not(.page-hero--home) .hero-closure {
  margin-left: auto;
  margin-right: auto;
}

.page-hero--home .hero-description,
.page-hero--home .hero-subheadline,
.page-hero--home .hero-closure {
  margin-left: auto;
  margin-right: auto;
}

.hero-subheadline {
  margin-top: 1.3rem;
  max-width: 41rem;
  font-size: 1.16rem;
  line-height: 1.65;
  color: var(--text);
  font-weight: 600;
}

.hero-story {
  display: grid;
  gap: 1rem;
  margin-top: 1.45rem;
}

.hero-story .hero-description {
  margin-top: 0;
}

.hero-description--secondary {
  color: var(--text-muted);
}

.hero-closure {
  margin-top: 1.45rem;
  max-width: 34rem;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--text);
}

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

.page-hero:not(.page-hero--home) .hero-actions,
.page-hero:not(.page-hero--home) .hero-aside-note,
.page-hero:not(.page-hero--home) .signal-row {
  justify-content: center;
}

.page-hero--home .hero-actions,
.page-hero--home .hero-aside-note,
.page-hero--home .signal-row {
  justify-content: center;
}

.hero-aside-note {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.3rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.hero-aside-note span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-aside-note span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(124, 255, 178, 0.78);
  box-shadow: 0 0 12px rgba(124, 255, 178, 0.45);
}

.hero-panel,
.panel,
.card,
.product-card,
.recommendation-card,
.cta-strip,
.authority-block,
.form-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.hero-panel::before,
.panel::before,
.card::before,
.product-card::before,
.recommendation-card::before,
.cta-strip::before,
.authority-block::before,
.form-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124, 255, 178, 0.08), transparent 28%, transparent 62%, rgba(255, 255, 255, 0.04));
  pointer-events: none;
}

.hero-panel {
  padding: 1.75rem;
}

.page-hero:not(.page-hero--home) .hero-panel {
  width: min(100%, 980px);
  margin: 0 auto;
}

.page-hero--home .hero-panel {
  width: min(100%, 980px);
  margin: 0 auto;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 12, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.system-panel h3 {
  margin-top: 1rem;
  font-size: 1.26rem;
  line-height: 1.35;
}

.system-panel p {
  margin-top: 1rem;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.system-step {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0.9rem;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(124, 255, 178, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(124, 255, 178, 0.14);
}

.system-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(124, 255, 178, 0.12);
  border: 1px solid rgba(124, 255, 178, 0.2);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.system-step strong {
  color: var(--text);
  font-size: 1rem;
}

.system-step span:last-child {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.system-note {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 600;
}

.hero-panel h3,
.panel h3,
.card h3,
.cta-strip h3,
.authority-block h3,
.form-copy h3 {
  font-size: 1.12rem;
  line-height: 1.35;
  color: var(--text);
}

.status-stack,
.panel-stack {
  display: grid;
  gap: 1rem;
}

.status-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.status-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.status-line span:first-child {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.status-value {
  color: var(--text);
  font-weight: 700;
  font-size: 0.96rem;
  text-align: right;
}

.status-value.alert {
  color: #ffd1ca;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.signal-pill,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.signal-pill::before,
.badge::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(124, 255, 178, 0.5);
}

.badge.alert::before,
.signal-pill.alert::before {
  background: var(--danger);
  box-shadow: 0 0 12px rgba(255, 115, 104, 0.52);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.btn-primary {
  color: #04110a;
  background: linear-gradient(135deg, var(--accent) 0%, #aaffc8 100%);
  box-shadow: 0 18px 36px rgba(124, 255, 178, 0.24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 24px 44px rgba(124, 255, 178, 0.32);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(124, 255, 178, 0.38);
  box-shadow: 0 0 0 4px rgba(124, 255, 178, 0.08);
}

.btn-danger {
  color: #160707;
  background: linear-gradient(135deg, #ff887d 0%, #ffb2ab 100%);
  box-shadow: 0 18px 36px rgba(255, 115, 104, 0.22);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(124, 255, 178, 0.4);
  box-shadow: 0 0 24px rgba(124, 255, 178, 0.14);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  max-width: 14ch;
}

.section-copy {
  max-width: 34rem;
}

.grid-2,
.grid-3,
.grid-4,
.stats-grid,
.authority-grid,
.product-grid,
.recommendation-grid,
.pathway-grid,
.signal-grid,
.summary-grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

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

.panel,
.card,
.authority-block,
.form-shell {
  padding: 1.7rem;
}

.card p + p,
.panel p + p,
.product-card p + p {
  margin-top: 0.9rem;
}

.metric-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
  display: block;
  margin-top: 0.35rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text);
}

.metric-label {
  color: var(--text-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.feature-list,
.detail-list,
.footer-links,
.summary-list {
  display: grid;
  gap: 0.95rem;
}

.feature-item,
.detail-item,
.summary-list li {
  display: flex;
  gap: 0.85rem;
  color: var(--text-muted);
}

.feature-item::before,
.detail-item::before,
.summary-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.55rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(124, 255, 178, 0.4);
}

.detail-item.alert::before {
  background: var(--danger);
  box-shadow: 0 0 12px rgba(255, 115, 104, 0.44);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
  gap: 1.5rem;
  align-items: stretch;
}

.product-category {
  margin-top: 3.5rem;
}

.product-category:first-of-type {
  margin-top: 0;
}

.product-category-header {
  margin-bottom: 1.5rem;
}

.product-card {
  padding: 1.6rem;
}

.product-card h3 {
  font-size: 1.4rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.product-summary {
  margin-top: 1rem;
  color: var(--text);
  font-weight: 600;
}

.product-detail {
  margin-top: 1rem;
}

.product-lines {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.85rem;
}

.product-line {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-line strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.product-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.cta-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.4rem;
  align-items: center;
  padding: 1.8rem;
}

.cta-strip.alert {
  border-color: rgba(255, 115, 104, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 115, 104, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(13, 11, 14, 0.84);
}

.cta-strip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.quote-grid,
.dual-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.6rem;
}

.form-shell.compact {
  grid-template-columns: 1fr;
}

.form-copy {
  display: grid;
  align-content: start;
  gap: 1rem;
}

.lead-points {
  display: grid;
  gap: 0.8rem;
}

.lead-point {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.lead-point strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.9rem;
}

.lead-form,
.weather-form {
  display: grid;
  gap: 1rem;
}

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

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

.input-group {
  display: grid;
  gap: 0.45rem;
}

.input-group.full {
  grid-column: 1 / -1;
}

.input-group label {
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 10, 16, 0.82);
  color: var(--text);
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(246, 248, 251, 0.42);
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  border-color: rgba(124, 255, 178, 0.44);
  box-shadow: 0 0 0 4px rgba(124, 255, 178, 0.08);
  background: rgba(8, 14, 21, 0.92);
}

.input-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-top: 0.2rem;
}

.form-note {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(124, 255, 178, 0.1);
  border: 1px solid rgba(124, 255, 178, 0.2);
  color: #d7ffe7;
  font-size: 0.92rem;
  line-height: 1.6;
}

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

.danger-panel {
  border-color: rgba(255, 115, 104, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 115, 104, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(11, 10, 14, 0.84);
}

.danger-text {
  color: rgba(255, 214, 210, 0.9);
}

.reference-gallery {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.85rem;
}

.reference-thumb {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 115, 104, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(12, 10, 14, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reference-thumb:hover,
.reference-thumb:focus-within {
  transform: translateY(-2px);
  border-color: rgba(255, 115, 104, 0.22);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.reference-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.operation-map {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.operation-step {
  padding: 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.operation-step span {
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(124, 255, 178, 0.12);
  border: 1px solid rgba(124, 255, 178, 0.24);
  margin-bottom: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.summary-card,
.recommendation-card {
  padding: 1.5rem;
}

.summary-card h4,
.recommendation-card h4 {
  font-size: 1.15rem;
  line-height: 1.35;
}

.summary-value {
  display: block;
  margin-top: 0.55rem;
  font-size: 2rem;
  font-family: "Sora", sans-serif;
  color: var(--text);
}

.recommendation-card {
  display: grid;
  gap: 1rem;
}

.recommendation-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.severity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 82px;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.severity.high {
  color: #190606;
  background: linear-gradient(135deg, #ff8f86, #ffc4bd);
}

.severity.medium {
  color: #191106;
  background: linear-gradient(135deg, #ffd374, #ffe3a6);
}

.severity.low {
  color: #08170e;
  background: linear-gradient(135deg, #93ffbf, #c6ffd8);
}

.recommendation-meta {
  display: grid;
  gap: 0.85rem;
}

.meta-line {
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-line strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.recommendation-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.weather-shell {
  display: grid;
  gap: 1.5rem;
}

.weather-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: 1.5rem;
}

.weather-search-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(2, minmax(0, 0.6fr)) minmax(0, 0.9fr);
  gap: 1rem;
}

.weather-status {
  display: none;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.weather-status.visible {
  display: block;
}

.weather-status.error {
  background: rgba(255, 115, 104, 0.1);
  border-color: rgba(255, 115, 104, 0.2);
  color: #ffd1ca;
}

.results-header {
  display: none;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.results-header.visible {
  display: flex;
}

.results-location {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.authority-block h3,
.pathway-card h3 {
  font-size: 1.28rem;
}

.pathway-card {
  padding: 1.55rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 14, 21, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: var(--shadow);
}

.pathway-card p {
  margin-top: 0.85rem;
}

.pathway-card .btn {
  margin-top: 1.2rem;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 7, 12, 0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(220px, 0.7fr));
  gap: 1.5rem;
}

.footer-links a,
.footer-links span {
  color: var(--text-muted);
  transition: color 180ms ease;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
  font-size: 0.84rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .nav-row {
    gap: 1rem;
  }

  .nav-list {
    gap: 1rem;
  }

  .hero-grid,
  .section-head,
  .split-layout,
  .quote-grid,
  .dual-form-grid,
  .weather-intro,
  .form-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

@media (max-width: 920px) {
  :root {
    --header-height: 78px;
  }

  .nav-row {
    display: flex;
    align-items: center;
    padding: 0.85rem 0;
  }

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 1rem;
    left: 1rem;
    justify-self: auto;
    align-self: auto;
    padding-top: 0;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(6, 10, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow);
  }

  .nav-list.open {
    display: flex;
  }

  .nav-link {
    width: 100%;
    padding: 0.85rem 0.2rem;
  }

  .brand-text small {
    max-width: 18rem;
  }

  .grid-3,
  .grid-4,
  .stats-grid,
  .authority-grid,
  .pathway-grid,
  .product-grid,
  .recommendation-grid,
  .summary-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .weather-search-grid {
    grid-template-columns: 1fr;
  }

  .cta-strip {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .section {
    padding: 4.5rem 0;
  }

  .page-hero {
    padding: 4rem 0 3rem;
  }

  .hero-title,
  .hero-title.medium {
    max-width: none;
  }

  .hero-panel,
  .panel,
  .card,
  .product-card,
  .recommendation-card,
  .cta-strip,
  .authority-block,
  .form-shell,
  .pathway-card {
    border-radius: 24px;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-mark--image {
    width: 80px;
    height: auto;
  }

  .brand-text strong {
    font-size: 0.94rem;
  }

  .brand-text small {
    display: none;
  }

  .operation-map {
    grid-template-columns: 1fr;
  }

  .system-flow {
    grid-template-columns: 1fr;
  }

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

  .product-brand-lockup {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-brand-lockup img {
    width: 160px;
  }

  .form-actions,
  .cta-strip-actions,
  .hero-actions,
  .inline-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
