:root {
  --bg: #111315;
  --bg-soft: #1a1f23;
  --panel: rgba(19, 23, 27, 0.9);
  --panel-strong: rgba(14, 17, 20, 0.96);
  --line: rgba(255, 255, 255, 0.08);
  --text: #f5f2ec;
  --muted: #cdbfaf;
  --accent: #d45f2c;
  --accent-light: #f0ab53;
  --active-blue: #1f7aff;
  --active-blue-light: #5ddcff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  --radius: 24px;
  --radius-sm: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 95, 44, 0.2), transparent 26%),
    radial-gradient(circle at top right, rgba(240, 171, 83, 0.16), transparent 24%),
    linear-gradient(180deg, #0d0f11 0%, #171c20 48%, #0f1215 100%);
  background-attachment: fixed, fixed, fixed;
  line-height: 1.6;
}
[data-company-age] {
  white-space: nowrap;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

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

body,
h1,
h2,
h3,
p,
a,
span,
li,
dt,
dd,
strong {
  overflow-wrap: break-word;
}

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

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

.site-header {
  width: min(calc(100% - 2rem), var(--max-width));
  max-width: var(--max-width);
  margin: 0.85rem auto 0;
  position: sticky;
  top: 0.85rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem clamp(1rem, 2.8vw, 2rem);
  backdrop-filter: blur(18px);
  overflow: hidden;
  border-radius: 999px;
  transition:
    padding 180ms ease,
    border-radius 180ms ease,
    transform 180ms ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.72);
  border: 1px solid var(--line);
  border-radius: inherit;
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: max-content;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.brand-logo {
  width: clamp(6.5rem, 20vw, 9rem);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
  transition: width 180ms ease;
}

.brand-text,
h1,
h2,
h3 {
  font-family: "Trebuchet MS", "Arial Narrow", sans-serif;
}

.brand-text {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.1rem;
  scrollbar-width: none;
  transition: gap 180ms ease;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    padding 180ms ease,
    font-size 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: #181818;
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  font-weight: 700;
}

.site-nav a.is-active,
.site-nav .nav-cta.is-active {
  color: #06121f;
  background: linear-gradient(135deg, var(--active-blue-light) 0%, var(--active-blue) 100%);
  font-weight: 700;
}

.site-header.is-compact {
  padding-block: 0.45rem;
  border-radius: 999px;
}

.site-header.is-compact .brand-logo {
  width: clamp(4.8rem, 12vw, 6rem);
}

.site-header.is-compact .site-nav {
  gap: 0.35rem;
}

.site-header.is-compact .site-nav a {
  padding: 0.5rem 0.7rem;
  font-size: 0.86rem;
}

main {
  padding-bottom: 3rem;
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: 6rem;
}

.hero {
  display: grid;
  gap: 1.5rem;
  padding-top: 5rem;
}

.hero-copy,
.hero-panel,
.product-card,
.story-highlights article,
.partner-card,
.site-footer {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.site-footer {
  padding: 1.6rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--accent-light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.3rem, 8vw, 4.8rem);
  line-height: 0.98;
  max-width: 12ch;
}

.hero-text {
  margin: 1.3rem 0 0;
  max-width: 62ch;
  color: #e6ded2;
  font-size: 1.04rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: #151515;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.hero-points {
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--muted);
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-light);
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 100%),
    var(--panel-strong);
}

.panel-logo,
.footer-logo {
  width: clamp(8.5rem, 28vw, 12rem);
  height: auto;
  object-fit: contain;
}

.panel-logo {
  margin-bottom: 1rem;
}

.footer-logo {
  margin-bottom: 0.8rem;
}

.panel-kicker {
  margin: 0;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
}

.hero-panel h2 {
  margin: 0.65rem 0 0;
  font-size: 1.5rem;
}

.hero-panel p {
  margin: 1rem 0 0;
  color: #ddd3c7;
}

.hero-stats {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

.hero-stats div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.hero-stats dt::before,
.hero-stats dt::after {
  content: none;
}

.hero-stats dt {
  white-space: nowrap;
  font-family: "Trebuchet MS", "Arial Narrow", sans-serif;
  font-size: 2rem;
  
  font-weight: 800;
  color: var(--muted);
}

.hero-stats dd {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.section-heading {
  max-width: 70ch;
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.08;
}

.section-heading p:last-child {
  margin-top: 1rem;
  color: #dfd5ca;
}

.product-grid,
.partner-grid,
.story-summary {
  display: grid;
  gap: 1.15rem;
}

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

.product-card {
  overflow: hidden;
}

.product-card figure {
  margin: 0;
  padding: 1.4rem 1.4rem 0;
}

.product-card img {
  width: 100%;
  aspect-ratio: 232 / 211;
  object-fit: contain;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.08), transparent 60%),
    rgba(255, 255, 255, 0.03);
}

.product-copy {
  padding: 1.2rem 1.4rem 1.5rem;
}

.product-price {
  display: inline-flex;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(240, 171, 83, 0.14);
  color: var(--accent-light);
  font-weight: 800;
}

.product-card h3,
.partner-card h3,
.story-card h3 {
  margin: 0.9rem 0 0.55rem;
  font-size: 1.35rem;
}

.product-card p:last-child,
.partner-card p:last-child,
.story-card p,
.story-metric p,
.site-footer p {
  color: #ddd2c7;
}

.story-summary {
  margin-bottom: 1.15rem;
}

.story-metric,
.story-card {
  padding: 1.35rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-value,
.story-label {
  margin: 0;
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-value {
  font-family: "Trebuchet MS", "Arial Narrow", sans-serif;
  font-size: 1.1rem;
}

.story-layout {
  display: grid;
  gap: 1.2rem;
}

.story-card h3 {
  margin-top: 0.7rem;
}

.story-card p {
  margin: 0 0 1rem;
}

.partner-card {
  padding: 1.35rem;
}

.story-card-accent {
  background:
    linear-gradient(180deg, rgba(240, 171, 83, 0.08), transparent 100%),
    var(--panel-strong);
}

.story-steps {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.story-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.story-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  background: rgba(240, 171, 83, 0.14);
  color: var(--accent-light);
  font-family: "Trebuchet MS", "Arial Narrow", sans-serif;
  font-weight: 800;
}

.story-step p {
  margin: 0;
}

.story-points {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
}

.story-points li + li {
  margin-top: 0.8rem;
}

.partner-tag {
  margin: 0;
  color: var(--accent-light);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: grid;
  gap: 1.3rem;
  margin-bottom: 2rem;
  scroll-margin-top: 6rem;
}

.site-footer h2 {
  margin: 0;
  font-size: 1.8rem;
}

.footer-stack {
  display: grid;
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.9rem;
  font-style: normal;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.95rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-list a:hover,
.contact-list a:focus-visible {
  border-color: rgba(240, 171, 83, 0.36);
}

.contact-note {
  max-width: 48ch;
}

.hours-card {
  padding: 1.1rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hours-label {
  margin: 0 0 0.75rem;
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hours-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  color: #ddd2c7;
}

.hours-row + .hours-row {
  border-top: 1px solid var(--line);
}

.hours-row strong {
  color: var(--text);
  white-space: nowrap;
}

.legal-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 700;
}

.legal-link:hover,
.legal-link:focus-visible {
  border-color: rgba(240, 171, 83, 0.36);
  color: var(--text);
}

.legal-page {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  padding: 5rem 0 4rem;
}

.legal-card {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.legal-card h1 {
  max-width: none;
  margin: 0 0 1.5rem;
  font-size: clamp(2.3rem, 7vw, 4rem);
  line-height: 1;
}

.legal-card article {
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.legal-card article + article {
  margin-top: 1.25rem;
}

.legal-card h2 {
  margin: 0 0 0.65rem;
  font-size: 1.35rem;
}

.legal-card p,
.legal-card address {
  margin: 0;
  color: #ddd2c7;
  font-style: normal;
}

.legal-card p + p,
.legal-card address + p {
  margin-top: 0.85rem;
}

.legal-card a {
  color: var(--accent-light);
  font-weight: 700;
}

.hero-copy,
.hero-panel,
.product-card,
.story-metric,
.story-card,
.partner-card,
.site-footer {
  animation: rise 700ms ease both;
}

.product-card:nth-child(2),
.story-metric:nth-child(2),
.partner-card:nth-child(2) {
  animation-delay: 90ms;
}

.product-card:nth-child(3),
.story-metric:nth-child(3) {
  animation-delay: 180ms;
}

.product-card:nth-child(4) {
  animation-delay: 270ms;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 900px) {
  .hero,
  .site-footer {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.9fr);
  }

  .hero-copy {
    min-width: 0;
  }

  .hero-copy h1 {
    max-width: 14ch;
  }

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

@media (min-width: 1100px) {
  .section {
    padding: 5.5rem 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
    align-items: start;
  }

  .hero-copy h1 {
    max-width: 16ch;
  }

  .story-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

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

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

@media (max-width: 560px) {
  :root {
    --radius: 18px;
    --radius-sm: 12px;
  }

  .section,
  .site-footer,
  .legal-page {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero-copy,
  .hero-panel,
  .site-footer {
    padding: 1.15rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .story-summary,
  .story-layout,
  .partner-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .product-card figure {
    padding: 0.75rem 0.75rem 0;
  }

  .product-card img {
    padding: 0.55rem;
  }

  .product-copy {
    padding: 0.85rem 0.75rem 1rem;
  }

  .product-price {
    padding: 0.28rem 0.55rem;
    font-size: 0.9rem;
  }

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

  .product-card p:last-child {
    font-size: 0.92rem;
    line-height: 1.45;
  }
}

@media (max-width: 699px) {
  html {
    scroll-padding-top: 4.75rem;
  }

  .site-header {
    width: min(calc(100% - 1rem), var(--max-width));
    max-width: calc(100% - 1rem);
    margin-top: 0.5rem;
    top: 0.5rem;
    flex-direction: column;
    align-items: stretch;
    padding: 0.85rem;
    border-radius: 1.6rem;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: clamp(5.2rem, 24vw, 7rem);
  }

  .site-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    overflow: visible;
    padding-bottom: 0;
  }

  .site-nav a {
    min-width: 0;
    padding-inline: 0.85rem;
    text-align: center;
  }

  .site-nav .nav-cta {
    grid-column: 1 / -1;
  }

  .site-header.is-compact {
    padding: 0.45rem 0.5rem;
    border-radius: 999px;
    gap: 0;
  }

  .site-header.is-compact .brand {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    transform: translateY(-0.5rem);
  }

  .site-header.is-compact .site-nav {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0;
  }

  .site-header.is-compact .site-nav a {
    flex: 0 0 auto;
    padding: 0.45rem 0.65rem;
    font-size: 0.82rem;
  }

  .site-header.is-compact .site-nav .nav-cta {
    grid-column: auto;
  }

  .section,
  .site-footer {
    scroll-margin-top: 4.75rem;
  }

  .contact-list a,
  .contact-list span {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}
