:root {
  --bg: #f8faf5;
  --bg-soft: #edf8e8;
  --card: #ffffff;
  --ink: #050505;
  --muted: #5c6259;
  --line: rgba(5, 5, 5, 0.1);
  --primary: #b9ef9d;
  --primary-dark: #4f8e32;
  --blue: #dff4d6;
  --navy: #050505;
  --navy-2: #dff4d6;
  --shadow: 0 24px 80px rgba(38, 57, 31, 0.11);
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1160px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 0%, rgba(185, 239, 157, 0.32), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 46%, #ffffff 100%);
  font-family: "Inter", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: flex;
  width: min(1180px, calc(100% - 32px));
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px 12px 16px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(5, 5, 5, 0.12);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(37, 55, 30, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  padding: 6px 14px 6px 8px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(233, 249, 224, 0.58));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 12px 30px rgba(38, 57, 31, 0.08);
}

.brand-logo-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 128px;
  height: 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}

.brand-logo {
  display: block;
  width: 112px;
  height: auto;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-copy strong {
  color: #050505;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: rgba(5, 5, 5, 0.48);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  color: rgba(5, 5, 5, 0.66);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-nav a:not(.nav-cta):hover {
  background: rgba(185, 239, 157, 0.32);
  color: var(--ink);
}

.site-nav a:not(.nav-cta).active {
  background: #050505;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(5, 5, 5, 0.14);
}

.site-nav a:not(.nav-cta).active:hover {
  background: #050505;
  color: #ffffff;
}

.site-nav .nav-cta {
  margin-left: 6px;
  background: #050505;
  color: #ffffff;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.active:hover {
  background: var(--primary);
  color: #050505;
}

.site-nav .nav-cta.active {
  background: #050505;
  color: #ffffff;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #050505;
  transition: transform 0.2s ease;
}

.section {
  padding: 110px 0;
}

section[id] {
  scroll-margin-top: 116px;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(185, 239, 157, 0.58), transparent 36%),
    radial-gradient(circle at 10% 28%, rgba(255, 255, 255, 0.92), transparent 42%),
    linear-gradient(115deg, #ffffff 0%, #f4f7f1 48%, #dff4d6 100%);
  color: var(--ink);
}

.section-soft {
  background:
    radial-gradient(circle at 85% 6%, rgba(185, 239, 157, 0.55), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.2)),
    var(--bg-soft);
}

.hero {
  min-height: 100vh;
  padding: 170px 0 96px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background-image:
    radial-gradient(120% 70% at 95% 55%, rgba(185, 239, 157, 0.42), transparent 44%),
    radial-gradient(100% 80% at -10% 30%, rgba(255, 255, 255, 0.98), transparent 50%),
    linear-gradient(135deg, transparent 0 45%, rgba(5, 5, 5, 0.04) 45.2%, transparent 45.8%),
    linear-gradient(155deg, transparent 0 52%, rgba(5, 5, 5, 0.06) 52.15%, transparent 52.55%);
  background-size: auto, auto, 100% 100%, 100% 100%;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.75fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: #050505;
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(5, 5, 5, 0.16);
}

.button-ghost {
  border-color: rgba(5, 5, 5, 0.14);
  background: rgba(255, 255, 255, 0.58);
  color: #050505;
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.orbital-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  background:
    radial-gradient(circle at 78% 40%, rgba(185, 239, 157, 0.62), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 248, 240, 0.7));
  box-shadow: inset 0 0 70px rgba(255, 255, 255, 0.42), 0 32px 90px rgba(45, 65, 36, 0.14);
}

.orbital-card img,
.orbital-card video {
  position: relative;
  z-index: 2;
  width: min(92%, 360px);
  aspect-ratio: 4 / 3;
  margin: 28px auto 22px;
  border-radius: 22px;
  filter: drop-shadow(0 28px 40px rgba(38, 57, 31, 0.18));
  object-fit: cover;
}

.orbital-card video {
  display: block;
  aspect-ratio: auto;
  height: auto;
  max-height: 260px;
  background: #ffffff;
  object-fit: contain;
}

.orbital-card::before,
.orbital-card::after {
  position: absolute;
  inset: 50%;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 44% 56% 58% 42%;
  content: "";
  transform: translate(-50%, -50%) rotate(18deg);
}

.orbital-card::after {
  width: 310px;
  height: 310px;
  border-color: rgba(79, 142, 50, 0.3);
  transform: translate(-50%, -50%) rotate(-22deg);
}

.orbital-card p,
.orbital-card strong,
.orbital-card small {
  position: relative;
  z-index: 2;
  display: block;
}

.orbital-card p {
  color: rgba(5, 5, 5, 0.52);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.orbital-card strong {
  margin-top: 0;
  font-size: 34px;
}

.orbital-card small {
  color: rgba(5, 5, 5, 0.56);
}

.scan-line {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent, rgba(185, 239, 157, 0.34), transparent);
  animation: scan 5s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    transform: translateY(-60%);
  }
  50% {
    transform: translateY(60%);
  }
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.metric-row div {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  background: rgba(255, 255, 255, 0.68);
}

.metric-row strong {
  font-size: 36px;
  line-height: 1;
}

.metric-row span {
  color: var(--primary-dark);
  font-size: 22px;
  font-weight: 800;
}

.metric-row p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.market-strip {
  margin-top: -1px;
  padding: 28px 0;
  background: #ffffff;
  box-shadow: var(--shadow);
}

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

.strip-grid div {
  border-right: 1px solid var(--line);
  padding: 8px 28px 8px 0;
}

.strip-grid div:last-child {
  border-right: 0;
}

.strip-grid span {
  display: block;
  color: var(--primary-dark);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.strip-grid p {
  margin: 6px 0 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.section-copy > p,
.section-heading > p,
.process > div > p {
  color: var(--muted);
  font-size: 18px;
}

.culture-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.culture-grid article,
.tech-grid article,
.solution-grid article,
.timeline article,
.result-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 50px rgba(8, 31, 45, 0.06);
}

.culture-grid article {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
}

.culture-grid span,
.product-card > span,
.solution-grid span,
.result-grid span,
.timeline span,
.tech-grid span {
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

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

.tech-grid article {
  padding: 28px;
}

.tech-grid p,
.product-card p,
.product-card li,
.solution-grid p,
.timeline p,
.result-grid p,
.value-band p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  gap: 22px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-card-wide {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.product-card.featured {
  background: linear-gradient(180deg, #ffffff, #f2faee);
}

.product-visual {
  position: relative;
  min-height: 100%;
  height: auto;
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 24px;
  background-color: #eef4ea;
  background-image:
    radial-gradient(circle at 30% 25%, rgba(185, 239, 157, 0.84), transparent 11%),
    radial-gradient(circle at 70% 55%, rgba(5, 5, 5, 0.12), transparent 14%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(185, 239, 157, 0.24));
}

.product-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-visual img,
.media-gallery article:hover img,
.case-images img:hover,
.retail-gallery img:hover {
  transform: scale(1.035);
}

.product-slider {
  background: #f8faf5;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.slider-track img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.slider-track img.active {
  opacity: 1;
  transform: scale(1);
}

.slider-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  gap: 8px;
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
}

.slider-controls button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(5, 5, 5, 0.28);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.slider-controls button.active {
  width: 24px;
  background: #050505;
}

.product-card-wide .product-visual {
  margin-bottom: 0;
}

.visual-box {
  clip-path: none;
}

.visual-foam {
  border-radius: 32px;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(185, 239, 157, 0.28)),
    repeating-linear-gradient(45deg, rgba(5, 5, 5, 0.06) 0 8px, transparent 8px 18px);
}

.visual-bag {
  border-radius: 48px 48px 24px 24px;
  background-image:
    radial-gradient(circle at 55% 20%, rgba(255, 255, 255, 0.95), transparent 22%),
    linear-gradient(135deg, rgba(185, 239, 157, 0.42), rgba(235, 242, 231, 0.8));
}

.product-card h3,
.product-card p,
.product-card ul,
.product-content > span {
  margin-right: 10px;
  margin-left: 10px;
}

.product-card ul {
  padding-left: 18px;
}

.product-card li + li {
  margin-top: 8px;
}

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

.spec-grid div {
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 16px;
  padding: 16px;
  background: rgba(248, 250, 245, 0.78);
}

.spec-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}

.produce-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 10px 8px;
}

.produce-tags span {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(185, 239, 157, 0.22);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-selector {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
  margin-top: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(237, 248, 232, 0.74));
}

.product-selector h3 {
  margin-bottom: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.selector-grid {
  display: grid;
  gap: 12px;
}

.selector-grid article {
  border-left: 3px solid var(--primary);
  border-radius: 16px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
}

.selector-grid strong {
  display: block;
  margin-bottom: 6px;
}

.selector-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.media-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.media-gallery article {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.media-gallery img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.media-gallery article::after {
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.72));
  content: "";
}

.media-gallery article > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  color: #ffffff;
}

.media-gallery span,
.case-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.media-gallery span {
  color: rgba(255, 255, 255, 0.72);
}

.media-gallery strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.media-gallery p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.results .section-heading p,
.results .result-grid p,
.results .value-band p {
  color: var(--muted);
}

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

.result-grid article {
  border-color: rgba(5, 5, 5, 0.1);
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(38, 57, 31, 0.08);
}

.result-grid strong {
  display: block;
  margin: 14px 0 10px;
  color: #050505;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.05em;
}

.data-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.data-panel,
.case-showcase {
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(38, 57, 31, 0.08);
}

.data-panel {
  padding: 26px;
}

.panel-head {
  margin-bottom: 18px;
}

.panel-head h3 {
  margin-bottom: 0;
}

.data-list {
  display: grid;
  gap: 10px;
}

.data-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(248, 250, 245, 0.82);
}

.data-list span {
  color: var(--muted);
  font-weight: 700;
}

.data-list p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.data-list strong {
  color: var(--ink);
  font-size: 20px;
}

.case-showcase {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 28px;
  margin-top: 22px;
  padding: 30px;
}

.case-showcase > div > p {
  color: var(--muted);
}

.case-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.case-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(38, 57, 31, 0.12);
  transition: transform 0.45s ease;
}

.case-stack {
  display: grid;
  gap: 12px;
}

.case-stack article {
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 18px;
  padding: 18px;
  background: rgba(248, 250, 245, 0.72);
}

.case-stack span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-stack p {
  margin-bottom: 0;
  color: var(--muted);
}

.profit-card {
  background: #050505 !important;
  color: #ffffff;
}

.profit-card strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.profit-card p,
.profit-card span {
  color: rgba(255, 255, 255, 0.7);
}

.retail-showcase {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 28px;
  margin-top: 22px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(38, 57, 31, 0.08);
}

.retail-showcase p {
  color: var(--muted);
}

.retail-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 12px;
}

.retail-gallery img {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.retail-gallery img:first-child {
  object-position: center top;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.58);
}

.value-band strong {
  display: block;
  margin-bottom: 6px;
  color: #050505;
  font-size: 20px;
}

.value-band p {
  margin-bottom: 0;
}

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

.solution-grid article {
  padding: 30px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.timeline::before {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 25px;
  width: 2px;
  background: linear-gradient(var(--primary), transparent);
  content: "";
}

.timeline article {
  position: relative;
  padding: 24px 24px 24px 74px;
}

.timeline span {
  position: absolute;
  top: 24px;
  left: 16px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--primary);
}

.contact {
  padding-bottom: 90px;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 46px;
  align-items: center;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 58px);
  background: rgba(255, 255, 255, 0.72);
}

.contact-card > div > p {
  color: var(--muted);
  font-size: 18px;
}

.contact-info-card {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(5, 5, 5, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 40px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(233, 249, 224, 0.78));
  box-shadow: 0 22px 52px rgba(38, 57, 31, 0.1);
}

.contact-info-card h3 {
  margin: 0;
  font-size: clamp(24px, 4vw, 36px);
}

.contact-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-label {
  color: var(--primary-dark) !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-phone {
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  color: #050505;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.contact-person {
  color: rgba(5, 5, 5, 0.72) !important;
  font-size: 18px;
  font-weight: 800;
}

.site-footer {
  padding: 28px 0;
  background: #020b11;
  color: rgba(255, 255, 255, 0.62);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0;
}

.footer-inner a {
  color: #ffffff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .site-header {
    top: 10px;
    border-radius: 26px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    visibility: hidden;
    padding: 14px;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

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

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    text-align: center;
  }

  .hero-grid,
  .split,
  .contact-card,
  .product-card-wide,
  .product-selector,
  .data-showcase,
  .case-showcase,
  .retail-showcase,
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .tech-grid,
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .solution-grid,
  .strip-grid,
  .value-band,
  .retail-gallery {
    grid-template-columns: 1fr;
  }

  .strip-grid div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 8px 0 18px;
  }

  .strip-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 28px, 1160px);
  }

  .site-header {
    width: calc(100% - 20px);
    padding: 10px;
  }

  .brand {
    gap: 8px;
    padding: 6px 10px 6px 8px;
  }

  .brand-logo-shell {
    width: 96px;
    height: 30px;
  }

  .brand-logo {
    width: 84px;
  }

  .brand-copy {
    display: grid;
  }

  .brand-copy strong {
    font-size: 12px;
  }

  .brand-copy small {
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    padding: 124px 0 72px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 32px;
  }

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

  .metric-row,
  .tech-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .orbital-card {
    min-height: 330px;
    padding: 24px;
  }

  .orbital-card strong {
    margin-top: 0;
  }

  .culture-grid article {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 180px;
    height: 180px;
  }

  .product-visual img,
  .media-gallery img,
  .slider-track {
    min-height: 180px;
  }

  .spec-grid,
  .case-images {
    grid-template-columns: 1fr;
  }

  .media-gallery article {
    min-height: 280px;
  }

  .retail-gallery img {
    height: 260px;
  }

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