/* ============================================================
   DESIGN TOKENS — Roll Labels (Blueprint Tech variant)
   ============================================================ */
:root {
  /* Primary brand */
  --la-navy: #0033a0;
  --la-navy-dark: #001f5c;
  --la-navy-deep: #0a1845;
  --la-navy-light: #1a4ed8;
  --la-navy-bright: #2e6fff;
  /* Secondary accent (sparingly) */
  --la-gold: #c9a961;
  --la-gold-light: #e0c989;
  /* Ink & neutral */
  --la-ink: #0b1228;
  --la-ink-2: #1e293b;
  --la-slate: #475569;
  --la-slate-2: #64748b;
  --la-cloud: #f6f8fc;
  --la-mist: #eaf0fa;
  --la-line: #e2e8f0;
  --la-line-2: #cbd5e1;
  --la-white: #fff;
  --la-success: #16a34a;
  --la-success-bg: #dcfce7;
  --la-amber: #d97706;
  --la-amber-bg: #fef3c7;
  /* Shadows */
  --sh-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --sh: 0 4px 14px rgba(15, 23, 42, 0.08);
  --sh-md: 0 10px 28px rgba(15, 23, 42, 0.1);
  --sh-lg: 0 18px 44px rgba(15, 23, 42, 0.14);
  --sh-navy: 0 14px 40px rgba(0, 31, 92, 0.22);
  /* Radius */
  --r-sm: 8px;
  --r: 12px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;
  --r-full: 999px;
  /* Layout */
  --container: 1200px;
  --container-narrow: 780px;
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--la-ink);
  background: var(--la-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Sora", "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--la-ink);
}
h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.45rem);
}
h3 {
  font-size: clamp(1.1rem, 1.7vw, 1.3rem);
}
p {
  color: var(--la-ink-2);
}
a {
  color: var(--la-navy);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--la-navy-dark);
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  padding-left: 1.25rem;
}
li {
  color: var(--la-ink-2);
  margin-bottom: 0.4rem;
}
strong {
  color: var(--la-ink);
}
button {
  font-family: inherit;
}

/* Skip link (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--la-navy);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 8px 0;
  z-index: 2000;
}
.skip-link:focus {
  left: 0;
  color: #fff;
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--container-narrow);
}
section {
  padding: 60px 0;
}
section.section--tight {
  padding: 42px 0;
}
section.section--alt {
  background: var(--la-cloud);
}
.section-head {
  text-align: center;
  max-width: 1080px;
  margin: 0 auto 48px;
}
.section-head h2 {
  margin-top: 10px;
}
.section-head p {
  margin-top: 14px;
  color: var(--la-slate);
  font-size: 1.05rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--la-navy);
  background: var(--la-mist);
  padding: 6px 14px;
  border-radius: var(--r-full);
}
.eyebrow i {
  width: 14px;
  height: 14px;
}
.accent {
  color: var(--la-navy);
}
.mono {
  font-family: "Inter", ui-monospace, monospace;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 24px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1.2;
  text-decoration: none;
}
.btn i {
  width: 17px;
  height: 17px;
}
.btn--primary {
  background: var(--la-navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 51, 160, 0.28);
}
.btn--primary:hover {
  background: var(--la-navy-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 51, 160, 0.38);
}
.btn--ghost {
  background: transparent;
  color: var(--la-ink);
  border-color: var(--la-line-2);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--la-navy);
  color: var(--la-navy);
  transform: translateY(-2px);
}
.btn--gold {
  background: var(--la-gold);
  color: var(--la-ink);
  box-shadow: 0 6px 18px rgba(201, 169, 97, 0.32);
}
.btn--gold:hover {
  background: var(--la-gold-light);
  color: var(--la-ink);
  transform: translateY(-2px);
}
.btn--lg {
  padding: 15px 28px;
  font-size: 1.02rem;
}
.btn--sm {
  padding: 9px 16px;
  font-size: 0.86rem;
}
.btn--block {
  display: flex;
  width: 100%;
}
.btn__group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--la-line);
  transition: box-shadow 0.2s;
}
.nav.is-scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--la-ink);
}
.nav__brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--la-navy), var(--la-navy-light));
  color: #fff;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.nav__brand:hover {
  color: var(--la-ink);
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__menu a {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--la-ink-2);
  transition: color 0.2s;
}
.nav__menu a:hover {
  color: var(--la-navy);
}
.nav__menu a.is-active {
  color: var(--la-navy);
}
.nav__menu a.is-active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--la-navy);
  margin-top: 4px;
  border-radius: 1px;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--la-ink);
}
.nav__toggle i {
  width: 24px;
  height: 24px;
}

/* ============================================================
   BREADCRUMBS
   ============================================================ */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--la-line);
  background: var(--la-cloud);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0;
  font-size: 0.85rem;
  color: var(--la-slate);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  color: var(--la-slate);
  margin: 0;
}
.breadcrumbs li::after {
  content: "/";
  margin: 0 8px;
  color: var(--la-line-2);
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs a {
  color: var(--la-slate);
}
.breadcrumbs a:hover {
  color: var(--la-navy);
}
.breadcrumbs li[aria-current="page"] {
  color: var(--la-ink);
  font-weight: 600;
}

/* ============================================================
   HERO — SPLIT BLUEPRINT LAYOUT
   ============================================================ */
.hero {
  position: relative;
  padding: 64px 0 56px;
  background:
    radial-gradient(
      ellipse 900px 500px at 78% 30%,
      rgba(26, 78, 216, 0.3),
      transparent 60%
    ),
    radial-gradient(
      ellipse 700px 420px at 12% 80%,
      rgba(201, 169, 97, 0.16),
      transparent 60%
    ),
    linear-gradient(135deg, #001f5c 0%, #0033a0 55%, #0a1845 100%);
  overflow: hidden;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.7;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 600px 300px at 50% 100%,
    rgba(0, 0, 0, 0.25),
    transparent 60%
  );
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.hero__lead-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--la-gold-light);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 169, 97, 0.45);
  padding: 7px 16px;
  border-radius: var(--r-full);
  backdrop-filter: blur(6px);
}
.hero__lead-eyebrow i {
  width: 14px;
  height: 14px;
}
.hero h1 {
  color: #fff;
  margin: 20px 0 16px;
}
.hero h1 .accent {
  color: var(--la-gold-light);
}
.hero__lead {
  font-size: clamp(1.02rem, 1.55vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.hero .btn--primary {
  background: var(--la-gold);
  color: var(--la-ink);
}
.hero .btn--primary:hover {
  background: var(--la-gold-light);
  color: var(--la-ink);
}
.hero .btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(6px);
}
.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

/* Hero trust ribbon */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.hero__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
}
.hero__trust-item i {
  width: 16px;
  height: 16px;
  color: var(--la-gold-light);
  flex-shrink: 0;
}

/* Hero visual — Roll SVG */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}
.hero__visual-frame {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.hero__visual-tag {
  position: absolute;
  top: -12px;
  left: 24px;
  background: var(--la-gold);
  color: var(--la-ink);
  font-family: "Inter", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
}
.hero__visual-title {
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__visual-title i {
  width: 15px;
  height: 15px;
  color: var(--la-gold-light);
}
.hero__visual-sub {
  font-family: "Inter", monospace;
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 14px;
}
.roll-svg {
  display: block;
  width: 100%;
  height: auto;
}
.roll-spec-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  font-family: "Inter", monospace;
  font-size: 0.74rem;
}
.roll-spec-row:first-of-type {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 14px;
}
.roll-spec-row span:first-child {
  color: rgba(255, 255, 255, 0.55);
}
.roll-spec-row span:last-child {
  color: var(--la-gold-light);
  font-weight: 600;
  text-align: right;
}

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.hero-stat {
  padding: 18px 16px;
  text-align: center;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, 0.16);
}
.hero-stat__num {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--la-gold-light);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero-stat__label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ============================================================
   TRUST BAR (logos / facts)
   ============================================================ */
.trust-bar {
  background: #fff;
  padding: 24px 0;
  border-bottom: 1px solid var(--la-line);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--la-slate);
  font-size: 0.86rem;
  font-weight: 600;
}
.trust-bar__item i {
  width: 20px;
  height: 20px;
  color: var(--la-navy);
}
.trust-bar__item strong {
  color: var(--la-ink);
  font-family: "Sora", sans-serif;
}

/* ============================================================
   GEO INTRO QUOTE
   ============================================================ */
.geo-quote {
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  line-height: 1.78;
  color: var(--la-ink-2);
  padding: 30px 34px;
  border-left: 4px solid var(--la-navy);
  background: linear-gradient(to right, var(--la-mist), transparent 85%);
  border-radius: 0 var(--r) var(--r) 0;
}
.geo-quote strong {
  color: var(--la-ink);
}

/* ============================================================
   SPEC GRID (6 configurator cards)
   ============================================================ */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
}
.spec-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-md);
  padding: 26px 24px 22px;
  transition: all 0.25s ease;
  overflow: hidden;
}
.spec-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--la-navy), var(--la-navy-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.spec-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--la-navy);
}
.spec-card:hover::before {
  transform: scaleX(1);
}
.spec-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.spec-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r);
  background: var(--la-mist);
  color: var(--la-navy);
  flex-shrink: 0;
}
.spec-card__icon i {
  width: 22px;
  height: 22px;
}
.spec-card h3 {
  margin: 0;
  font-size: 1.05rem;
  color: var(--la-ink);
}
.spec-card p {
  font-size: 0.92rem;
  color: var(--la-slate);
  margin: 0 0 12px;
}
.spec-card__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", monospace;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--la-navy);
  background: var(--la-mist);
  padding: 5px 10px;
  border-radius: var(--r-full);
}
.spec-card__chip i {
  width: 13px;
  height: 13px;
}

/* ============================================================
   REWIND DIRECTION VISUALIZER
   ============================================================ */
.wind {
  background: linear-gradient(180deg, #fff 0%, var(--la-cloud) 100%);
}
.wind__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
.wind__info h2 {
  margin: 8px 0 12px;
}
.wind__info p {
  color: var(--la-slate);
  margin-bottom: 24px;
  line-height: 1.7;
}
.wind__picker {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
.wind__opt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 14px 16px;
  background: #fff;
  border: 1.5px solid var(--la-line);
  border-radius: var(--r);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  text-align: left;
}
.wind__opt:hover {
  border-color: var(--la-navy);
  background: var(--la-mist);
}
.wind__opt.is-active {
  border-color: var(--la-navy);
  background: var(--la-mist);
  box-shadow: 0 4px 14px rgba(0, 51, 160, 0.12);
}
.wind__opt-code {
  font-family: "Inter", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--la-navy);
  letter-spacing: 0.05em;
}
.wind__opt-name {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--la-ink);
}
.wind__opt-desc {
  font-size: 0.78rem;
  color: var(--la-slate);
}
.wind__note {
  display: flex;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--la-slate);
  padding: 14px 16px;
  background: var(--la-mist);
  border-radius: var(--r);
  border-left: 3px solid var(--la-navy);
}
.wind__note i {
  width: 18px;
  height: 18px;
  color: var(--la-navy);
  flex-shrink: 0;
  margin-top: 2px;
}
.wind__viz {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 380px;
  position: relative;
}
.wind__viz-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: "Inter", monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--la-slate);
  background: var(--la-cloud);
  padding: 4px 10px;
  border-radius: var(--r-full);
}
.wind__viz-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
}
.wind__viz-img {
  display: block;
  width: 100%;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
}
.wind__viz-label {
  margin-top: 18px;
  text-align: center;
}
.wind__viz-label strong {
  display: block;
  font-family: "Sora", sans-serif;
  color: var(--la-ink);
  font-size: 1rem;
}
.wind__viz-label span {
  font-family: "Inter", monospace;
  font-size: 0.76rem;
  color: var(--la-slate);
}

/* ============================================================
   MATERIAL CARDS
   ============================================================ */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}
.mat-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: all 0.25s ease;
}
.mat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--la-navy);
}
.mat-card__swatch {
  height: 88px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px 14px;
  position: relative;
}
.mat-card__swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.18) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.mat-card__tag {
  position: relative;
  z-index: 2;
  font-family: "Inter", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.7);
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 8px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.mat-card__body {
  padding: 20px 22px 22px;
}
.mat-card__body h3 {
  margin: 0 0 6px;
  font-size: 1.08rem;
}
.mat-card__body p {
  font-size: 0.9rem;
  color: var(--la-slate);
  margin: 0 0 14px;
}
.mat-card__props {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}
.mat-card__prop {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--la-mist);
  color: var(--la-navy);
}
.mat-card__prop--ok {
  background: var(--la-success-bg);
  color: var(--la-success);
}
.mat-card__prop--warn {
  background: var(--la-amber-bg);
  color: var(--la-amber);
}
.mat-card__best {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--la-slate);
  padding-top: 12px;
  border-top: 1px solid var(--la-line);
}
.mat-card__best i {
  width: 14px;
  height: 14px;
  color: var(--la-navy);
}

/* swatch variants */
.sw--white-bopp {
  background: linear-gradient(135deg, #f8fafc, #dbe4ef);
}
.sw--clear-bopp {
  background: linear-gradient(
    135deg,
    rgba(220, 235, 250, 0.7),
    rgba(180, 210, 235, 0.7)
  );
}
.sw--white-pet {
  background: linear-gradient(135deg, #f1f5f9, #cfd8e3);
}
.sw--white-paper {
  background: linear-gradient(135deg, #fdfcf8, #f0ead8);
}
.sw--kraft {
  background: linear-gradient(135deg, #c9a87a, #a08560);
}
.sw--vinyl {
  background: linear-gradient(135deg, #475569, #334155);
}
.sw--estate {
  background: linear-gradient(135deg, #e8d8b8, #cdb88a);
}

/* ============================================================
   PRICING CHART
   ============================================================ */
.pricing {
  background: linear-gradient(180deg, var(--la-cloud) 0%, #fff 100%);
}
.pricing__layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: center;
}
.pricing__copy h2 {
  margin: 8px 0 12px;
}
.pricing__copy p {
  color: var(--la-slate);
  margin-bottom: 20px;
  line-height: 1.7;
}
.pricing__tiers {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
}
.pricing__tier {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r);
  font-size: 0.88rem;
}
.pricing__tier strong {
  font-family: "Sora", sans-serif;
  color: var(--la-ink);
}
.pricing__tier span:last-child {
  font-family: "Inter", monospace;
  font-weight: 600;
  color: var(--la-navy);
}
.pricing__chart-wrap {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--sh-md);
}
.pricing__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
  gap: 16px;
  flex-wrap: wrap;
}
.pricing__chart-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--la-ink);
  font-size: 1.05rem;
}
.pricing__chart-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--la-slate);
}
.pricing__chart-legend::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--la-navy);
}
.chart-canvas-wrap {
  position: relative;
  height: 300px;
  width: 100%;
}

/* ============================================================
   ADHESIVE GRID
   ============================================================ */
.adh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.adh-card {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-md);
  padding: 22px 20px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.adh-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
  border-color: var(--la-navy);
}
.adh-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.adh-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  background: var(--la-mist);
  color: var(--la-navy);
  flex-shrink: 0;
}
.adh-card__icon i {
  width: 20px;
  height: 20px;
}
.adh-card h3 {
  font-size: 1rem;
  margin: 0;
}
.adh-card p {
  font-size: 0.88rem;
  color: var(--la-slate);
  margin: 0;
}
.adh-card__use {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--la-navy);
  background: var(--la-mist);
  padding: 4px 10px;
  border-radius: var(--r-full);
  align-self: flex-start;
}

/* ============================================================
   APPLICATION GRID (with category accents)
   ============================================================ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}
.app-card {
  --accent: var(--la-navy);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-md);
  transition: all 0.25s ease;
  overflow: hidden;
}
.app-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.25s;
}
.app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--accent);
}
.app-card:hover::before {
  opacity: 1;
}
.app-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--r);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  color: var(--accent);
  margin-bottom: 12px;
}
.app-card__icon i {
  width: 22px;
  height: 22px;
}
.app-card h3 {
  margin: 0 0 4px;
  font-size: 1rem;
}
.app-card p {
  font-size: 0.86rem;
  color: var(--la-slate);
  margin: 0;
}
.app-card--beverage {
  --accent: #0891b2;
}
.app-card--cosmetic {
  --accent: #be185d;
}
.app-card--food {
  --accent: #16a34a;
}
.app-card--candle {
  --accent: #a16207;
}
.app-card--nutra {
  --accent: #15803d;
}
.app-card--industrial {
  --accent: #475569;
}
.app-card--pharma {
  --accent: #7c3aed;
}
.app-card--logistics {
  --accent: #0369a1;
}

/* ============================================================
   FORMAT COMPARISON
   ============================================================ */
.cmp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cmp-card {
  position: relative;
  background: #fff;
  border: 1.5px solid var(--la-line);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
}
.cmp-card--featured {
  border-color: var(--la-navy);
  box-shadow: 0 12px 32px rgba(0, 51, 160, 0.12);
  transform: scale(1.02);
}
.cmp-card--featured::before {
  content: "RECOMMENDED";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Inter", monospace;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--la-navy);
  padding: 5px 14px;
  border-radius: var(--r-full);
}
.cmp-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--r);
  background: var(--la-mist);
  color: var(--la-navy);
  margin-bottom: 14px;
}
.cmp-card__icon i {
  width: 28px;
  height: 28px;
}
.cmp-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.cmp-card__format {
  font-family: "Inter", monospace;
  font-size: 0.76rem;
  color: var(--la-slate);
  margin-bottom: 14px;
}
.cmp-card__use {
  font-size: 0.92rem;
  color: var(--la-slate);
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--la-line);
}
.cmp-card__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cmp-card__feats li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.86rem;
  color: var(--la-ink-2);
  margin: 0;
}
.cmp-card__feats li i {
  width: 16px;
  height: 16px;
  color: var(--la-success);
  flex-shrink: 0;
  margin-top: 3px;
}
.cmp-card__feats li.is-no i {
  color: var(--la-slate-2);
}
.cmp-card__cta {
  margin-top: auto;
}

/* ============================================================
   PRODUCTION TIMELINE
   ============================================================ */
.timeline {
  background: linear-gradient(135deg, #001f5c 0%, #0033a0 55%, #0a1845 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}
.timeline > .container {
  position: relative;
  z-index: 2;
}
.timeline .section-head h2 {
  color: #fff;
}
.timeline .section-head p {
  color: rgba(255, 255, 255, 0.78);
}
.timeline .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--la-gold-light);
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.tl-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
  margin-top: 8px;
}
.tl-steps::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 169, 97, 0.5),
    transparent
  );
  z-index: 0;
}
.tl-step {
  position: relative;
  text-align: center;
  padding: 0 8px;
  z-index: 1;
}
.tl-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--la-navy-light),
    var(--la-navy-dark)
  );
  border: 2px solid var(--la-gold);
  color: var(--la-gold-light);
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}
.tl-step__num::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(201, 169, 97, 0.4);
}
.tl-step h3 {
  color: #fff;
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.tl-step p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
  margin: 0 0 10px;
}
.tl-step__time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", monospace;
  font-size: 0.74rem;
  color: var(--la-gold-light);
  background: rgba(201, 169, 97, 0.1);
  padding: 4px 10px;
  border-radius: var(--r-full);
  border: 1px solid rgba(201, 169, 97, 0.3);
}
.tl-step__time i {
  width: 13px;
  height: 13px;
}

/* ============================================================
   SAMPLE OFFER
   ============================================================ */
.sample {
  background: var(--la-cloud);
}
.sample__card {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.sample__content {
  padding: 38px 36px;
}
.sample__content .eyebrow {
  margin-bottom: 12px;
}
.sample__content h2 {
  margin-bottom: 10px;
}
.sample__content p {
  color: var(--la-slate);
  margin-bottom: 22px;
}
.sample__list {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sample__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--la-ink-2);
  margin: 0;
}
.sample__list li i {
  width: 18px;
  height: 18px;
  color: var(--la-success);
  flex-shrink: 0;
  margin-top: 3px;
}
.sample__price {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 36px 28px;
  background: linear-gradient(
    135deg,
    var(--la-navy) 0%,
    var(--la-navy-dark) 100%
  );
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.sample__price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 300px 200px at 50% 30%,
    rgba(201, 169, 97, 0.25),
    transparent 60%
  );
}
.sample__price > * {
  position: relative;
  z-index: 1;
}
.sample__price-eyebrow {
  font-family: "Sora", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--la-gold-light);
  margin-bottom: 14px;
}
.sample__price-amt {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.03em;
}
.sample__price-amt span {
  font-size: 1.6rem;
  vertical-align: top;
  margin-right: 4px;
}
.sample__price-note {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  margin: 12px 0 22px;
  max-width: 240px;
}
.sample__price .btn {
  background: var(--la-gold);
  color: var(--la-ink);
}
.sample__price .btn:hover {
  background: var(--la-gold-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--la-line);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.2s;
}
.faq__item[open] {
  border-color: var(--la-navy);
  box-shadow: 0 6px 18px rgba(0, 51, 160, 0.08);
}
.faq__item[open] .faq__q-icon {
  transform: rotate(45deg);
}
.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  color: var(--la-ink);
  font-size: 1rem;
  list-style: none;
}
.faq__q::-webkit-details-marker {
  display: none;
}
.faq__q:focus-visible {
  outline: 2px solid var(--la-navy);
  outline-offset: -2px;
  border-radius: var(--r);
}
.faq__q-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--la-navy);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.25s;
}
.faq__a {
  padding: 0 22px 20px;
  color: var(--la-slate);
  font-size: 0.94rem;
  line-height: 1.7;
}
.faq__a p {
  margin: 0;
  color: var(--la-slate);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background:
    radial-gradient(
      ellipse 600px 280px at 20% 30%,
      rgba(201, 169, 97, 0.22),
      transparent 60%
    ),
    radial-gradient(
      ellipse 600px 280px at 80% 70%,
      rgba(26, 78, 216, 0.4),
      transparent 60%
    ),
    linear-gradient(135deg, #001f5c 0%, #0033a0 60%, #0a1845 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  opacity: 0.6;
}
.cta-band > .container {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.cta-band .eyebrow {
  background: rgba(255, 255, 255, 0.1);
  color: var(--la-gold-light);
  border: 1px solid rgba(201, 169, 97, 0.4);
}
.cta-band h2 {
  color: #fff;
  margin: 14px 0 12px;
}
.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
}
.cta-band .btn--primary {
  background: var(--la-gold);
  color: var(--la-ink);
}
.cta-band .btn--primary:hover {
  background: var(--la-gold-light);
  color: var(--la-ink);
}
.cta-band .btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.cta-band .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0a1230;
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 12px;
}
.footer-brand .mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--la-navy-light), var(--la-navy));
  color: #fff;
  border-radius: 7px;
  font-size: 0.78rem;
}
.site-footer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
}
.site-footer h4 {
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.site-footer li {
  margin: 0;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--la-gold-light);
}
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--la-line);
  padding: 10px 16px;
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.08);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta__inner {
  display: flex;
  gap: 10px;
  max-width: var(--container);
  margin: 0 auto;
}
.sticky-cta .btn {
  flex: 1;
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .nav__menu {
    display: none;
  }
  .nav__toggle {
    display: inline-flex;
  }
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 18px 24px;
    border-bottom: 1px solid var(--la-line);
    gap: 14px;
    align-items: flex-start;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero__visual {
    order: -1;
    min-height: auto;
  }
  .hero__visual-frame {
    max-width: 380px;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat:nth-child(2)::after {
    display: none;
  }
  .wind__layout,
  .pricing__layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .cmp-grid {
    grid-template-columns: 1fr;
  }
  .cmp-card--featured {
    transform: none;
  }
  .tl-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 18px;
  }
  .tl-steps::before {
    display: none;
  }
  .sample__card {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 620px) {
  section {
    padding: 56px 0;
  }
  .container {
    padding: 0 18px;
  }
  .hero {
    padding: 48px 0 40px;
  }
  .hero__cta {
    flex-direction: column;
    align: stretch;
  }
  .hero__cta .btn {
    width: 100%;
  }
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stat:nth-child(2)::after {
    display: none;
  }
  .trust-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .wind__picker {
    grid-template-columns: 1fr;
  }
  .tl-steps {
    grid-template-columns: 1fr;
  }
  .sample__content,
  .sample__price {
    padding: 28px 22px;
  }
  .sample__price-amt {
    font-size: 2.8rem;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .cta-band .btn__group {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-band .btn__group .btn {
    width: 100%;
  }
}
