:root {
  color-scheme: light;
  --ink: #102131;
  --muted: #5c6972;
  --navy: #0e2638;
  --deep: #07131d;
  --green: #76b82a;
  --green-dark: #4f8d1f;
  --gold: #d2a04a;
  --cream: #f5f1e9;
  --paper: #ffffff;
  --line: rgba(16, 33, 49, 0.12);
  --glass: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(7, 19, 29, 0.2);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
select {
  cursor: pointer;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(360px, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 72px;
  padding: 14px clamp(22px, 4vw, 56px);
  color: #fff;
  background: linear-gradient(180deg, rgba(7, 19, 29, 0.74), rgba(7, 19, 29, 0.24));
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}

.brand-mark {
  color: var(--green);
  font-weight: 950;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--green);
  transition: width 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #fff;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.language-switcher {
  min-width: 96px;
}

.language-select {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  padding: 0 34px 0 15px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.language-select option {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 900;
}

.header-cta,
.button-primary {
  color: #fff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 34px rgba(118, 184, 42, 0.26);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle {
  display: none;
}

.nav-toggle__bars {
  display: grid;
  gap: 4px;
}

.nav-toggle__bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentcolor;
}

.nav-toggle__text {
  line-height: 1;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  background: var(--deep);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 29, 0.92) 0%, rgba(7, 19, 29, 0.72) 42%, rgba(7, 19, 29, 0.22) 72%, rgba(7, 19, 29, 0.42) 100%),
    radial-gradient(circle at 70% 48%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.18) 28%, rgba(7, 19, 29, 0) 54%),
    linear-gradient(135deg, #102b3e, #07131d);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 19, 29, 0.14), rgba(7, 19, 29, 0.34)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 48px));
  padding: clamp(132px, 17vh, 190px) 0 180px clamp(24px, 4vw, 58px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 950;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: #fff;
  font-size: clamp(48px, 5.5vw, 76px);
  overflow-wrap: break-word;
}

.hero-lede {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
}

.hero-product-stage {
  position: absolute;
  z-index: 2;
  right: clamp(120px, 10vw, 190px);
  bottom: clamp(96px, 9vh, 132px);
  width: min(31vw, 360px);
  padding: 0;
  filter: drop-shadow(0 34px 48px rgba(0, 0, 0, 0.36));
}

.hero-product-stage img {
  width: 100%;
  height: auto;
  max-height: 670px;
  object-fit: contain;
}

.hero-proof-cards {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 5vw, 70px);
  top: 18vh;
  display: grid;
  gap: 14px;
  width: min(310px, 25vw);
}

.hero-proof-card {
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(7, 19, 29, 0.18);
  backdrop-filter: blur(10px);
}

.hero-proof-card strong,
.hero-proof-card span {
  display: block;
}

.hero-proof-card strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 17px;
}

.hero-proof-card span {
  color: #43505b;
  font-size: 14px;
  line-height: 1.45;
}

.hero-rail {
  position: absolute;
  z-index: 3;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(22px, 4vh, 34px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(680px, 48vw);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(7, 19, 29, 0.72);
  backdrop-filter: blur(14px);
}

.hero-rail div {
  padding: 18px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-rail div:last-child {
  border-right: 0;
}

.hero-rail strong,
.hero-rail span {
  display: block;
}

.hero-rail strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 18px;
  font-weight: 950;
}

.hero-rail span {
  color: rgba(255, 255, 255, 0.78);
}

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.numbers div {
  min-height: 130px;
  padding: 28px clamp(18px, 3vw, 44px);
  border-right: 1px solid var(--line);
}

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

.numbers strong,
.numbers span {
  display: block;
}

.numbers strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1;
}

.numbers span {
  color: var(--muted);
  font-weight: 800;
}

.buyer-entry-section,
.full-image-section,
.topper-engine-section,
.process-section,
.quote-section,
.guide {
  padding: clamp(70px, 9vw, 118px) clamp(22px, 5vw, 72px);
}

.section-heading,
.section-copy {
  max-width: 960px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.guide h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
}

.section-heading p:not(.eyebrow),
.section-copy p,
.guide p,
.feature p,
.buyer-entry-card p,
.product-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.66;
}

.buyer-entry-section {
  background:
    linear-gradient(180deg, rgba(245, 241, 233, 0.96), rgba(255, 255, 255, 0.98)),
    var(--cream);
}

.buyer-entry-grid,
.product-grid,
.feature-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.buyer-entry-card,
.product-card,
.feature,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 58px rgba(16, 33, 49, 0.08);
}

.buyer-entry-card {
  min-height: 210px;
  padding: 24px;
}

.buyer-entry-card span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--green-dark);
  font-size: 18px;
  font-weight: 950;
}

.full-image-section {
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 19, 29, 0.94), rgba(14, 38, 56, 0.88)),
    var(--navy);
}

.full-image-section .section-copy h2,
.full-image-section .section-copy p:not(.eyebrow) {
  color: #fff;
}

.full-image-section .section-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
}

.full-image-section .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
  color: var(--ink);
}

.product-card__meta {
  align-self: flex-start;
  margin-bottom: 22px;
  padding: 7px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--green-dark);
  font-size: 13px;
  font-weight: 950;
}

.product-card h3,
.feature h3,
.process-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.product-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 24px;
  padding-left: 18px;
  color: #344555;
}

.text-link {
  margin-top: auto;
  color: var(--green-dark);
  font-weight: 950;
}

.topper-engine-section {
  background: #fff;
}

.feature {
  min-height: 220px;
  padding: 24px;
}

.process-section {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(14, 38, 56, 0.96), rgba(7, 19, 29, 0.96)),
    var(--navy);
}

.process-section .section-heading h2,
.process-section .section-heading p:not(.eyebrow),
.process-card h3,
.process-card p {
  color: #fff;
}

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

.process-card {
  min-height: 240px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.process-card span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--green);
  font-size: 28px;
  font-weight: 950;
}

.guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(24px, 6vw, 80px);
  align-items: start;
  background: var(--cream);
}

.guide p {
  margin: 0;
  font-size: clamp(18px, 2vw, 25px);
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  background: #fff;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 22px 70px rgba(16, 33, 49, 0.12);
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(16, 33, 49, 0.18);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.5;
}

.consent input {
  min-height: 18px;
  margin-top: 3px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.inquiry-form button {
  width: fit-content;
  min-width: 190px;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 24px;
  color: #fff;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  font-weight: 950;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  padding: 28px clamp(22px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.76);
  background: var(--deep);
}

.site-footer strong {
  color: #fff;
  font-size: 20px;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px;
  }

  .site-nav {
    gap: 13px;
  }

  .hero-product-stage {
    width: 330px;
    right: 44px;
  }

  .hero-proof-cards {
    display: none;
  }

  .hero-rail {
    width: min(440px, 44vw);
  }
}

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto 1fr;
    min-height: 68px;
  }

  .nav-toggle {
    display: inline-flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    width: auto;
    height: 44px;
    min-width: 92px;
    border: 1px solid rgba(118, 184, 42, 0.72);
    border-radius: 999px;
    padding: 0 15px;
    color: var(--green);
    background: rgba(7, 19, 29, 0.86);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 22px;
    right: 22px;
    z-index: 50;
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(16, 33, 49, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 0 12px;
    border-bottom: 1px solid rgba(16, 33, 49, 0.08);
    color: var(--ink);
  }

  .nav-language-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }

  .nav-language-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border-bottom: 0;
    border-radius: var(--radius);
    background: #edf4e5;
    color: var(--ink);
    font-size: 12px;
    text-transform: none;
  }

  .nav-language-links a[aria-current="page"] {
    color: #fff;
    background: var(--green-dark);
  }

  .site-nav a::after {
    display: none;
  }

  .language-switcher {
    justify-self: end;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(680px, calc(100vw - 44px));
    padding: 116px 22px 28px;
  }

  h1 {
    font-size: clamp(38px, 8vw, 64px);
  }

  .hero-product-stage {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
    width: min(66vw, 300px);
    margin: 0 auto 18px;
  }

  .hero-rail {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    width: auto;
    margin: 0 22px 26px;
  }

  .hero-rail div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-rail div:last-child {
    border-bottom: 0;
  }

  .numbers,
  .buyer-entry-grid,
  .product-grid,
  .feature-grid,
  .process-grid,
  .guide,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .numbers div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 12px 16px;
    justify-content: space-between;
    width: 100vw;
  }

  .brand {
    font-size: 18px;
  }

  .language-switcher {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    top: auto;
    right: auto;
    z-index: 60;
    justify-self: end;
    min-width: 84px;
    height: 40px;
    padding: 0 13px;
  }

  .site-nav {
    position: fixed;
    top: 66px;
    left: 16px;
    right: 16px;
  }

  .hero-content {
    width: 100vw;
    max-width: 360px;
    padding: 104px 20px 26px;
  }

  h1 {
    max-width: 340px;
    font-size: 32px;
    line-height: 1.14;
  }

  .hero-lede {
    max-width: 340px;
    font-size: 16px;
  }

  .hero__actions,
  .button,
  .inquiry-form button {
    width: 100%;
    max-width: 340px;
  }

  .hero-product-stage {
    width: min(54vw, 212px);
    max-height: none;
    padding: 0;
    overflow: visible;
    margin-bottom: 18px;
  }

  .hero-product-stage img {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .hero-rail div {
    padding: 13px 15px;
  }

  .hero-rail strong {
    font-size: 16px;
  }

  .buyer-entry-section,
  .full-image-section,
  .topper-engine-section,
  .process-section,
  .quote-section,
  .guide {
    padding: 58px 20px;
  }

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