﻿:root {
  --background: #f7fbfb;
  --foreground: #172125;
  --muted: #5f7075;
  --line: #d8e5e4;
  --teal: #007481;
  --teal-dark: #064c55;
  --coral: #ff6f61;
  --cream: #fff8ef;
  --ink: #11191d;
}

@theme inline {
  --color-background: var(--background);
  --color-foreground: var(--foreground);
  --font-sans: var(--font-geist-sans);
  --font-mono: var(--font-geist-mono);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

main {
  overflow: hidden;
}

.hero {
  min-height: 92vh;
  padding: 22px clamp(18px, 4vw, 56px) 64px;
  background:
    linear-gradient(90deg, rgba(247, 251, 251, 0.98) 0%, rgba(247, 251, 251, 0.88) 42%, rgba(247, 251, 251, 0.38) 100%),
    linear-gradient(135deg, #f7fbfb 0%, #eef8f6 52%, #fff2ea 100%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1180px;
  margin: 0 auto 54px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal-dark);
  color: white;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: #34484d;
  font-size: 0.94rem;
}

.nav-links a:hover {
  color: var(--teal);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  line-height: 0.91;
  letter-spacing: 0;
  max-width: 920px;
}

.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: #365056;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

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

.button,
.quote-form button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
}

.primary,
.quote-form button {
  background: var(--coral);
  color: #241513;
}

.secondary {
  border-color: #aac5c4;
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal-dark);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 660px;
  margin-top: 32px;
}

.stats span {
  min-height: 78px;
  padding: 14px;
  border: 1px solid rgba(6, 76, 85, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
  color: #50676c;
  font-size: 0.86rem;
}

.stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.3rem;
}

.hero-media {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(6, 76, 85, 0.16);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 56px);
}

.intro-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: end;
  max-width: none;
  background: var(--ink);
  color: white;
}

.intro-band > * {
  max-width: 540px;
}

.intro-band > div {
  justify-self: end;
}

.intro-band p:last-child {
  color: #c9d7d8;
  line-height: 1.7;
}

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

.section-heading.compact {
  margin-bottom: 20px;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.1rem, 4.5vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.intro-band h2,
.quote h2 {
  color: white;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 1.18rem;
}

.product-grid,
.process-grid,
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-card,
.process-grid article,
.seo-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
}

.product-card p,
.process-grid p,
.seo-grid p,
.split p,
.sustainability p,
.quote p,
.faq p {
  color: var(--muted);
  line-height: 1.65;
}

.product-card small {
  display: block;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 800;
  line-height: 1.5;
}

.swatch {
  height: 92px;
  margin-bottom: 20px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%) 0 0 / 14px 14px,
    linear-gradient(135deg, var(--teal) 0%, #0b3940 48%, var(--coral) 100%);
}

.product-card:nth-child(2) .swatch {
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.2) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #1b3550, #44a6a4);
}

.product-card:nth-child(3) .swatch {
  background:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,0.36), transparent 20%),
    linear-gradient(135deg, #6da67a, #0f6d73);
}

.product-card:nth-child(4) .swatch {
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.24) 0 6px, transparent 6px 13px),
    linear-gradient(135deg, #16191d, #82746a, #ff7b68);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.feature-list,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-list span,
.tag-cloud span {
  border: 1px solid #b9cecd;
  border-radius: 999px;
  background: white;
  padding: 12px 15px;
  color: #22363b;
  font-weight: 700;
}

.factory {
  max-width: none;
  background: #eef8f6;
}

.factory .section-heading,
.factory .process-grid {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.process-grid article span {
  display: block;
  margin-bottom: 28px;
  color: var(--coral);
  font-size: 2rem;
  font-weight: 900;
}

.sustainability {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.sustainability-panel {
  min-height: 360px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: 8px;
  background: var(--teal-dark);
  color: white;
}

.sustainability-panel h2 {
  color: white;
}

.sustainability-panel p {
  color: #d5e8e8;
}

.mini-metrics {
  display: grid;
  gap: 14px;
}

.mini-metrics div {
  display: grid;
  align-content: center;
  min-height: 110px;
  padding: 24px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}

.mini-metrics strong {
  color: var(--ink);
  font-size: 1.2rem;
}

.mini-metrics span {
  margin-top: 6px;
  color: var(--muted);
}

.use-cases {
  padding-top: 40px;
}

.seo-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: start;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.quote {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  max-width: 1180px;
  margin: 30px auto 0;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 8px;
  background: var(--ink);
  color: white;
}

.quote-copy p {
  max-width: 560px;
  color: #d1dddd;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #34484d;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #bfd1d0;
  border-radius: 8px;
  padding: 13px 12px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 40px clamp(18px, 4vw, 56px) 54px;
  color: var(--muted);
}

footer p {
  max-width: 560px;
  margin: 0;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-band,
  .split,
  .sustainability,
  .seo-section,
  .quote {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-media,
  .hero-media img {
    min-height: 420px;
  }

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

  .intro-band > div {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: auto;
    padding-bottom: 36px;
  }

  .nav {
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .nav-links {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

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

  .stats,
  .product-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media img {
    min-height: 310px;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .quote {
    margin-left: 18px;
    margin-right: 18px;
  }

  footer {
    display: grid;
  }

  footer p {
    text-align: left;
  }
}

