:root {
  --pomegranate: #7B0F1E;
  --garnet: #9E1B32;
  --seed: #C0393F;
  --rose: #F3D6DB;
  --ivory: #FAF7F2;
  --charcoal: #1F1F1F;
  --muted: #66717A;
  --line: rgba(123, 15, 30, 0.13);
  --shadow: 0 28px 80px rgba(62, 18, 24, 0.12);
  --radius: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 15, 30, 0.10);
}

.nav {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo img {
  width: 330px;
  max-width: 36vw;
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  gap: 27px;
  color: #111;
  font-size: 0.98rem;
  font-weight: 700;
  align-items: center;
}

.desktop-nav a:hover { color: var(--pomegranate); }

.nav-cta {
  background: var(--pomegranate);
  color: white;
  padding: 15px 22px;
  border-radius: 6px;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(123, 15, 30, 0.18);
  white-space: nowrap;
}

.hero {
  padding: 96px 0 86px;
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 72% 22%, rgba(192, 57, 63, 0.13), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(250,247,242,0.94));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 76px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--seed);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 900;
}

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

h1, h2, h3 {
  font-family: Inter, system-ui, sans-serif;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 7.2vw, 6.3rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
  font-weight: 900;
}

h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.075em;
  margin-bottom: 22px;
  font-weight: 900;
}

h3 {
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-lede {
  max-width: 620px;
  color: #2d2d2d;
  font-size: 1.25rem;
}

.hero-proof {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 30px 0 34px;
}

.hero-proof span {
  color: #222;
  font-weight: 650;
  font-size: 0.96rem;
  padding-right: 18px;
  border-right: 1px solid rgba(123, 15, 30, 0.16);
}

.hero-proof span:last-child {
  border-right: 0;
}

.hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 6px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--pomegranate), var(--garnet));
  box-shadow: 0 20px 44px rgba(123, 15, 30, 0.22);
}

.button.secondary {
  color: var(--pomegranate);
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--garnet);
}

.identity-panel {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.86), rgba(243,214,219,0.42)),
    radial-gradient(circle at 36% 32%, rgba(192,57,63,0.14), transparent 34%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.identity-panel::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 34px;
  border: 1px solid rgba(123, 15, 30, 0.10);
}

.seed-molecule {
  width: min(88%, 520px);
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
}

.seed-molecule line {
  stroke: rgba(123, 15, 30, 0.23);
  stroke-width: 4;
  stroke-linecap: round;
}

.seed-molecule .cluster circle,
.seed-molecule .network circle {
  fill: url(#seed);
}

.seed-molecule .cluster circle {
  filter: drop-shadow(0 15px 17px rgba(123,15,30,0.18));
}

.spec-card {
  position: absolute;
  width: 235px;
  padding: 17px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 64px rgba(62,18,24,0.12);
}

.spec-card.top { left: 32px; top: 34px; }
.spec-card.bottom { right: 32px; bottom: 34px; }

.spec-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--seed);
  font-size: 0.68rem;
  font-weight: 900;
}

.spec-card strong {
  display: block;
  margin-top: 6px;
}

.spec-card span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 3px;
}

.industry-strip {
  padding: 28px 0;
  background: rgba(255,255,255,0.72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.industries-visual-section {
  padding: 80px 0;
  background: #FAF7F2;
}

.industries-visual {
  width: 100%;
  display: block;
  border-radius: 28px;
  mix-blend-mode: multiply;
}

.industry-strip p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.industry-strip div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.industry-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pomegranate);
  background: rgba(243,214,219,0.45);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 0.88rem;
}

.section { padding: 100px 0; }

.section-head {
  max-width: 790px;
  margin-bottom: 44px;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.why-grid > div > p,
.quote-copy p {
  color: var(--muted);
  font-size: 1.07rem;
}

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

.product-card {
  min-height: 235px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.76);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  color: var(--pomegranate);
  font-weight: 900;
}

.product-card.custom {
  background: linear-gradient(145deg, var(--pomegranate), var(--seed));
  color: white;
}

.product-card.custom p,
.product-card.custom a {
  color: rgba(255,255,255,0.78);
}

.why-section {
  background: #1A1014;
  color: white;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.why-grid > div > p {
  color: rgba(255,255,255,0.68);
}

.why-cards {
  display: grid;
  gap: 16px;
}

.why-cards article {
  padding: 25px;
  border-radius: 26px;
  background: rgba(255,255,255,0.065);
  border: 1px solid rgba(255,255,255,0.12);
}

.why-cards span {
  color: #F3A5B0;
  font-weight: 900;
}

.why-cards p {
  color: rgba(255,255,255,0.66);
}

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

.timeline div {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255,255,255,0.74);
  border: 1px solid var(--line);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--pomegranate);
  color: white;
  font-weight: 900;
  margin-bottom: 38px;
}

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

.quote-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(192,57,63,0.10), transparent 28%),
    rgba(255,255,255,0.38);
}

.quote-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 50px;
  align-items: start;
  padding: 50px;
  border-radius: 42px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.request-builder {
  display: grid;
  gap: 15px;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

label {
  color: var(--pomegranate);
  font-weight: 850;
  font-size: 0.9rem;
}

input, textarea, select {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  background: rgba(250,247,242,0.62);
  color: var(--charcoal);
  border-radius: 18px;
  padding: 15px 16px;
  outline: none;
}

input:focus, textarea:focus, select:focus {
  border-color: rgba(192,57,63,0.48);
  box-shadow: 0 0 0 5px rgba(192,57,63,0.10);
}

textarea {
  min-height: 135px;
  resize: vertical;
}

.checks {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checks span {
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 9px 12px;
  font-weight: 800;
}

.checks input {
  width: auto;
  margin: 0 6px 0 0;
}

.request-builder button {
  min-height: 54px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pomegranate), var(--seed));
  color: white;
  font-weight: 900;
  cursor: pointer;
}

.request-builder small {
  color: var(--muted);
}

.site-footer {
  padding: 54px 0;
  background: #140C0F;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr 0.8fr;
  gap: 34px;
}

.footer-logo img {
  width: 280px;
  max-width: 100%;
  height: auto;
  background: white;
  border-radius: 10px;
  padding: 8px;
  margin-bottom: 16px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: rgba(255,255,255,0.64);
  margin: 5px 0;
}

.site-footer strong {
  display: block;
  margin-bottom: 12px;
}

@media (max-width: 1060px) {
  .brand-logo img {
    width: 265px;
  }

  .desktop-nav {
    gap: 18px;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .why-grid,
  .quote-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .industry-strip .container {
    align-items: flex-start;
    flex-direction: column;
  }

  .industry-strip div {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav {
    min-height: 88px;
  }

  .brand-logo img {
    width: 245px;
    max-width: 78vw;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero {
    padding: 62px 0 58px;
    min-height: auto;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  .hero-actions,
  .field-row,
  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof span {
    border-right: 0;
    background: rgba(255,255,255,0.66);
    border: 1px solid var(--line);
    padding: 8px 11px;
    border-radius: 999px;
  }

  .identity-panel {
    min-height: 430px;
    border-radius: 32px;
  }

  .spec-card {
    width: 195px;
    padding: 14px;
  }

  .spec-card.top {
    top: 20px;
    left: 18px;
  }

  .spec-card.bottom {
    bottom: 20px;
    right: 18px;
  }

  .section {
    padding: 74px 0;
  }

  .quote-grid {
    padding: 28px;
    border-radius: 30px;
  }
}
