:root {
  --ink: #12301d;
  --ink-2: #1d4930;
  --leaf: #2e7d42;
  --lime: #75c866;
  --mint: #dff2df;
  --cream: #fffaf0;
  --paper: #ffffff;
  --gold: #f5c84b;
  --cyan: #38c6cb;
  --pink: #ed4e86;
  --orange: #e96c2d;
  --muted: #637566;
  --line: rgba(18, 48, 29, 0.14);
  --shadow: 0 24px 70px rgba(18, 48, 29, 0.16);
  --radius: 8px;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(18, 48, 29, 0.04) 1px, transparent 1px),
    linear-gradient(var(--cream), #f4fbef 55%, var(--cream));
  background-size: 72px 72px, auto;
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

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

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

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

svg {
  width: 1em;
  height: 1em;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 200;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 12px 36px rgba(18, 48, 29, 0.1);
  backdrop-filter: blur(18px);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 250, 240, 0.72);
  font-size: 12px;
}

.utility-bar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint);
}

.utility-bar svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
}

.brand-mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid rgba(245, 200, 75, 0.7);
  border-radius: 50%;
  box-shadow: 0 10px 28px rgba(18, 48, 29, 0.12);
}

.brand-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-mark circle:first-child {
  fill: rgba(245, 200, 75, 0.18);
}

.brand-word {
  color: var(--paper);
  font-size: 22px;
  line-height: 1;
}

.brand-word span {
  color: var(--lime);
}

.site-header.is-scrolled .brand-word {
  color: var(--ink);
}

.site-header.is-scrolled .brand-word span {
  color: var(--leaf);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 250, 240, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.site-header.is-scrolled .nav-menu {
  color: rgba(18, 48, 29, 0.74);
}

.nav-menu a {
  position: relative;
}

.nav-menu a.active {
  color: var(--gold);
}

.site-header.is-scrolled .nav-menu a.active {
  color: var(--leaf);
}

.nav-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-signin {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 6px;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta,
.button.primary {
  background: var(--gold);
  color: #192115;
  box-shadow: 0 12px 28px rgba(245, 200, 75, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--paper);
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  min-height: 100vh;
  padding: 178px clamp(20px, 5vw, 72px) 70px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 52%) minmax(420px, 48%);
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(18, 48, 29, 0.97), rgba(22, 75, 42, 0.92)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 92px 92px, 92px 92px;
  color: var(--paper);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
    linear-gradient(90deg, rgba(245, 200, 75, 0.16), transparent 44%),
    linear-gradient(315deg, transparent, rgba(56, 198, 203, 0.15)),
    linear-gradient(90deg, rgba(255, 250, 240, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 96px 96px, 96px 96px;
  mix-blend-mode: screen;
  opacity: 0.78;
  z-index: -2;
  animation: hero-field-drift 18s linear infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(transparent, var(--cream));
  z-index: -1;
}

.hero-text {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero .eyebrow {
  color: var(--gold);
}

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

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 680px;
  font-size: clamp(46px, 5.25vw, 68px);
  line-height: 0.98;
}

h1 em {
  display: block;
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-size: 1.15em;
  font-style: italic;
  font-weight: 900;
  line-height: 0.82;
  margin: 0.05em 0 0.03em;
}

.no-wrap {
  white-space: nowrap;
}

.hero-lede {
  max-width: 500px;
  margin-bottom: 32px;
  color: rgba(255, 250, 240, 0.74);
  font-size: 17px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.trust-row {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 700;
}

.trust-row li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-row svg {
  flex: 0 0 auto;
  color: var(--lime);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
}

.hero-product-stage {
  position: relative;
  min-height: 650px;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 0;
  top: 9%;
  bottom: 7%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px);
  transform: skewY(-4deg);
  animation: hero-stage-drift 12s ease-in-out infinite;
}

.hero-pack {
  position: absolute;
  width: clamp(150px, 21vw, 280px);
  filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.34));
  will-change: transform;
  transition: transform 220ms ease;
}

.hero-pack-a {
  right: 28%;
  top: 7%;
  z-index: 4;
  animation: hero-pack-float-a 7s ease-in-out infinite;
}

.hero-pack-b {
  right: 0;
  top: 19%;
  z-index: 3;
  animation: hero-pack-float-b 8s ease-in-out infinite;
}

.hero-pack-c {
  left: 10%;
  bottom: 11%;
  z-index: 2;
  width: clamp(135px, 17vw, 230px);
  animation: hero-pack-float-c 8.5s ease-in-out infinite;
}

.hero-pack-d {
  right: 20%;
  bottom: 1%;
  z-index: 5;
  width: clamp(138px, 18vw, 235px);
  animation: hero-pack-float-d 7.5s ease-in-out infinite;
}

.hero-stat {
  position: absolute;
  z-index: 6;
  max-width: 185px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.93);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--pink);
}

.hero-stat span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-stat-a {
  left: 5%;
  top: 20%;
}

.hero-stat-b {
  right: 5%;
  bottom: 21%;
}

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

.proof-strip div {
  padding: 34px clamp(18px, 4vw, 52px);
  border-right: 1px solid var(--line);
}

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

.proof-strip strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  color: var(--orange);
}

.proof-strip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee {
  overflow: hidden;
  background: var(--gold);
  color: #172212;
  border-bottom: 1px solid rgba(18, 48, 29, 0.2);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 26s linear infinite;
}

.marquee span {
  padding: 14px 22px;
  font-family: "Syne", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.marquee span::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 22px;
  background: var(--pink);
  transform: rotate(45deg);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.section,
.page-band,
.page-hero {
  scroll-margin-top: 112px;
}

.section {
  padding: 92px clamp(20px, 5vw, 72px);
}

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

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

.section-heading h2,
.product-toolbar h2,
.reach-copy h2,
.contact-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.reach-copy p,
.contact-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.category-card,
.product-card,
.why-item,
.process-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.category-card {
  min-height: 322px;
  padding: 20px;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(46, 125, 66, 0.35);
  box-shadow: var(--shadow);
}

.category-card img {
  height: 152px;
  width: 100%;
  object-fit: contain;
  margin-bottom: 18px;
  transition: transform 260ms ease;
}

.category-card:hover img {
  transform: rotate(-3deg) scale(1.08);
}

.category-card span,
.product-card span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.category-card h3,
.product-card h3,
.why-item h3,
.process-step h3 {
  margin: 8px 0 8px;
  font-size: 19px;
}

.category-card p,
.product-card p,
.why-item p,
.process-step p {
  color: var(--muted);
  line-height: 1.55;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin: 76px 0 28px;
}

.filter-group {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.filter {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  background: var(--ink);
  color: var(--paper);
}

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

.product-card {
  overflow: hidden;
  transition: transform 200ms ease, opacity 180ms ease, box-shadow 200ms ease;
}

.product-card.is-hidden {
  display: none;
}

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

.product-card img {
  height: 225px;
  width: 100%;
  padding: 20px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 58%, rgba(245, 200, 75, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.26), rgba(255, 250, 240, 0.04));
  transition: transform 260ms ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card div {
  padding: 18px;
}

.reach-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 54px;
  align-items: center;
  background: var(--ink);
  color: var(--paper);
}

.world-card {
  position: relative;
  width: 100%;
  min-height: 440px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 68% 62%, rgba(245, 200, 75, 0.2), transparent 18%),
    radial-gradient(circle at 24% 52%, rgba(56, 198, 203, 0.18), transparent 24%),
    linear-gradient(135deg, #1a442a, #0a1d12);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
}

.world-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 55%, rgba(245, 200, 75, 0.14), transparent 18%),
    radial-gradient(circle at 24% 46%, rgba(56, 198, 203, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(8, 26, 15, 0.1), transparent 32%, transparent 66%, rgba(8, 26, 15, 0.2));
  opacity: 1;
  pointer-events: none;
}

.world-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.06), transparent 22%, rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.map-status,
.map-note,
.world-illustration,
.map-marker {
  position: absolute;
  z-index: 3;
}

.map-status {
  left: 20px;
  top: 18px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.map-status span {
  color: rgba(255, 250, 240, 0.54);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-status strong {
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-size: 15px;
}

.world-illustration {
  inset: 5% 2% 9%;
  width: 96%;
  height: 86%;
  filter: saturate(1.08);
}

.map-grid path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.land {
  fill: rgba(255, 250, 240, 0.13);
  stroke: rgba(255, 250, 240, 0.28);
  stroke-width: 1.5;
}

.land-a,
.land-b,
.land-c,
.land-d {
  animation: map-breathe 4s ease-in-out infinite;
}

.route-path {
  fill: none;
  stroke: url("#landGlow");
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-dasharray: 10 12;
  animation: route-flow 1.9s linear infinite;
  filter: drop-shadow(0 0 9px rgba(56, 198, 203, 0.45));
}

.route-delay-2 {
  animation-delay: -0.5s;
}

.route-delay-3 {
  animation-delay: -1s;
}

.route-delay-4 {
  animation-delay: -1.4s;
}

.route-delay-5 {
  animation-delay: -0.9s;
}

.origin-ring {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  transform-origin: 626px 315px;
  animation: pulse-ring 1.8s ease-out infinite;
}

.origin-dot {
  fill: var(--gold);
}

.map-marker {
  left: var(--x);
  top: var(--y);
  width: 0;
  height: 0;
  color: transparent;
  font-size: 0;
}

.map-marker::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(56, 198, 203, 0.14);
  transform: translate(-50%, -50%);
}

.map-marker::after {
  content: attr(data-label);
  position: absolute;
  left: var(--label-left, 0);
  top: var(--label-top, -14px);
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(11, 32, 19, 0.72);
  color: rgba(255, 250, 240, 0.84);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
  transform: translate(var(--label-shift, -50%), -100%);
}

.map-marker.origin::after {
  background: var(--gold);
  color: #172212;
}

.map-marker.origin::before {
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(237, 78, 134, 0.18);
}

.marker-china {
  --label-left: -12px;
}

.marker-japan {
  --label-left: 20px;
  --label-top: -10px;
}

.marker-korea {
  --label-left: 5px;
  --label-top: -10px;
}

.marker-vietnam {
  --label-left: 12px;
  --label-top: -10px;
}

.marker-singapore {
  --label-left: 12px;
  --label-top: -10px;
}

.map-note {
  left: 20px;
  right: 20px;
  bottom: 18px;
  max-width: 520px;
  color: rgba(255, 250, 240, 0.58);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5;
}

@keyframes slow-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes hero-field-drift {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 220px 0, 0 0, 0 0, 96px 0, 0 96px;
  }
}

@keyframes visual-grid-drift {
  to {
    background-position: 44px 0, 0 44px;
  }
}

@keyframes visual-sheen {
  0%, 100% {
    opacity: 0.9;
  }
  50% {
    opacity: 0.58;
  }
}

@keyframes soft-float {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes soft-float-offset {
  0%, 100% {
    translate: 0 28px;
  }
  50% {
    translate: 0 18px;
  }
}

@keyframes route-breathe {
  0%, 100% {
    opacity: 0.48;
    filter: none;
  }
  50% {
    opacity: 0.9;
    filter: drop-shadow(0 0 8px rgba(245, 200, 75, 0.3));
  }
}

@keyframes bar-pulse {
  0%, 100% {
    transform: scaleY(0.86);
  }
  50% {
    transform: scaleY(1);
  }
}

@keyframes route-shimmer {
  to {
    background-position: 180% 0;
  }
}

@keyframes hero-stage-drift {
  0%, 100% {
    transform: skewY(-4deg) translate3d(0, 0, 0);
    opacity: 1;
  }
  50% {
    transform: skewY(-4deg) translate3d(0, -10px, 0);
    opacity: 0.86;
  }
}

@keyframes hero-pack-float-a {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -12px;
  }
}

@keyframes hero-pack-float-b {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 10px;
  }
}

@keyframes hero-pack-float-c {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -9px;
  }
}

@keyframes hero-pack-float-d {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 11px;
  }
}

@keyframes route-flow {
  to {
    stroke-dashoffset: -44;
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 0.95;
    transform: scale(0.8);
  }

  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

@keyframes map-breathe {
  50% {
    fill: rgba(255, 250, 240, 0.18);
  }
}

.reach-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.66);
}

.market-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.market-chips span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 240, 0.78);
  font-weight: 800;
  font-size: 13px;
}

.why-section {
  background: #f4fbef;
}

.why-section .section-heading h2 span {
  color: var(--pink);
}

.why-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 26px;
  align-items: stretch;
}

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

.why-item {
  padding: 26px;
}

.why-item svg {
  width: 42px;
  height: 42px;
  padding: 9px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--leaf);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.capability-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(245, 200, 75, 0.18), transparent 34%),
    linear-gradient(135deg, #173d26, #0c2114);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.capability-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-35deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 16px);
  pointer-events: none;
}

.capability-panel > * {
  position: relative;
}

.capability-panel h3 {
  margin-bottom: 24px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}

.capability-grid div {
  min-height: 106px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

.capability-grid div:nth-child(2n) {
  border-right: 0;
}

.capability-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.capability-grid strong,
.capability-grid span {
  display: block;
}

.capability-grid strong {
  font-family: "Syne", sans-serif;
  margin-bottom: 6px;
}

.capability-grid span {
  color: rgba(255, 250, 240, 0.56);
  font-size: 12px;
}

.process-section {
  background:
    linear-gradient(90deg, rgba(18, 48, 29, 0.05) 1px, transparent 1px),
    var(--cream);
  background-size: 56px 56px;
}

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

.process-step {
  position: relative;
  padding: 30px;
  border-radius: 0;
  border-right: 0;
}

.process-step:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.process-step:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.process-step span {
  display: block;
  margin-bottom: 40px;
  color: rgba(237, 78, 134, 0.68);
  font-family: "Syne", sans-serif;
  font-size: 48px;
  font-weight: 800;
}

.testimonials-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(56, 198, 203, 0.24), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(245, 200, 75, 0.2), transparent 28%),
    #173d26;
  color: var(--paper);
}

.testimonials-section .eyebrow {
  color: var(--gold);
}

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

.testimonial-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  right: 20px;
  bottom: -38px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Playfair Display", serif;
  font-size: 170px;
  line-height: 1;
}

.stars {
  margin-bottom: 18px;
  color: var(--gold);
  letter-spacing: 0.12em;
}

.testimonial-card p {
  color: rgba(255, 250, 240, 0.78);
  font-size: 15px;
  font-style: italic;
  line-height: 1.75;
}

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

.testimonial-card strong {
  color: var(--cyan);
  font-family: "Syne", sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-card span {
  margin-top: 4px;
  color: rgba(255, 250, 240, 0.54);
  font-size: 12px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 46px;
  background:
    radial-gradient(circle at 75% 45%, rgba(255, 255, 255, 0.24), transparent 34%),
    var(--gold);
  color: #1a1a14;
}

.contact-section .eyebrow {
  color: rgba(18, 48, 29, 0.62);
}

.contact-copy h2 {
  max-width: 560px;
}

.contact-section .button.primary {
  background: #1a1a14;
  color: var(--paper);
  box-shadow: 0 18px 34px rgba(26, 26, 20, 0.18);
}

.contact-copy p:not(.eyebrow) {
  color: rgba(26, 26, 20, 0.66);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: rgba(255, 250, 240, 0.72);
  font-weight: 800;
}

.contact-details a {
  color: var(--gold);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(26, 26, 20, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.4);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(26, 26, 20, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 200, 75, 0.2);
}

.full {
  grid-column: 1 / -1;
}

.inquiry-form .button {
  width: 100%;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(26, 26, 20, 0.58);
  font-size: 13px;
}

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 148px clamp(20px, 5vw, 72px) 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 22%, rgba(245, 200, 75, 0.18), transparent 25%),
    radial-gradient(circle at 16% 70%, rgba(56, 198, 203, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(18, 48, 29, 0.99), rgba(18, 57, 34, 0.96)),
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 18px);
  color: var(--paper);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 18px),
    radial-gradient(circle at 78% 26%, rgba(245, 200, 75, 0.16), transparent 24%),
    radial-gradient(circle at 24% 74%, rgba(56, 198, 203, 0.13), transparent 28%),
    linear-gradient(90deg, rgba(255, 250, 240, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 250, 240, 0.035) 1px, transparent 1px);
  background-size: auto, auto, auto, 96px 96px, 96px 96px;
  opacity: 0.96;
  animation: hero-field-drift 18s linear infinite;
  pointer-events: none;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62px;
  background: linear-gradient(transparent, var(--cream));
  z-index: 0;
}

.shop-hero {
  background:
    linear-gradient(135deg, rgba(16, 46, 28, 0.99), rgba(30, 72, 36, 0.96));
}

.about-hero {
  background:
    linear-gradient(135deg, rgba(13, 38, 26, 0.99), rgba(34, 69, 39, 0.94));
}

.blog-hero {
  background:
    linear-gradient(135deg, rgba(17, 44, 32, 0.99), rgba(49, 71, 39, 0.95));
}

.contact-hero {
  background:
    linear-gradient(135deg, rgba(15, 41, 29, 0.99), rgba(31, 78, 51, 0.94));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.58fr);
  gap: 48px;
  align-items: center;
  width: 100%;
}

.page-hero h1 {
  margin: 0;
  max-width: 790px;
  font-size: clamp(44px, 5vw, 74px);
  line-height: 0.96;
}

.page-hero p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.crumb {
  display: inline-flex;
  width: fit-content;
  gap: 8px;
  margin-bottom: 20px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 250, 240, 0.62);
  font-size: 12px;
  font-weight: 800;
}

.page-hero-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 74% 18%, rgba(245, 200, 75, 0.24), transparent 30%),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.page-hero-card img {
  position: absolute;
  width: 42%;
  height: 72%;
  padding: 18px;
  object-fit: contain;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, 0.3));
}

.page-hero-card img:nth-child(1) {
  left: 8%;
  top: 18%;
  transform: rotate(-8deg);
}

.page-hero-card img:nth-child(2) {
  right: 8%;
  bottom: 10%;
  transform: rotate(8deg);
}

.page-visual {
  position: relative;
  min-height: 438px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 75% 18%, rgba(245, 200, 75, 0.2), transparent 27%),
    radial-gradient(circle at 20% 75%, rgba(56, 198, 203, 0.15), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
  transform-style: preserve-3d;
}

.page-visual::before,
.page-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-visual::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 52% 48%, #000, transparent 78%);
  animation: visual-grid-drift 16s linear infinite;
}

.page-visual::after {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.08), transparent 48%, rgba(0, 0, 0, 0.18));
  animation: visual-sheen 8s ease-in-out infinite;
}

.page-visual > * {
  position: relative;
  z-index: 1;
}

.visual-badge {
  position: absolute;
  left: 22px;
  top: 22px;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 30, 18, 0.55);
  backdrop-filter: blur(14px);
}

.visual-badge span,
.visual-badge strong,
.network-node span,
.network-core span,
.insight-card span,
.inquiry-card span,
.contact-route span,
.contact-metrics span {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-badge span,
.network-node span,
.network-core span,
.insight-card span,
.inquiry-card span,
.contact-route span,
.contact-metrics span {
  color: rgba(255, 250, 240, 0.58);
}

.visual-badge strong {
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-size: 18px;
}

.catalog-shelf {
  position: absolute;
  inset: 82px 26px 82px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 14px;
}

.catalog-shelf figure {
  display: grid;
  align-content: end;
  justify-items: center;
  min-height: 250px;
  margin: 0;
  padding: 18px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 68%, rgba(245, 200, 75, 0.16), transparent 40%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.18), rgba(255, 250, 240, 0.06));
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
}

.catalog-shelf figure:nth-child(2),
.catalog-shelf figure:nth-child(4) {
  translate: 0 28px;
}

.catalog-shelf figure:nth-child(1),
.catalog-shelf figure:nth-child(3) {
  animation: soft-float 7s ease-in-out infinite;
}

.catalog-shelf figure:nth-child(2),
.catalog-shelf figure:nth-child(4) {
  animation: soft-float-offset 8s ease-in-out infinite;
}

.catalog-shelf img {
  width: 100%;
  height: 178px;
  object-fit: contain;
  filter: drop-shadow(0 18px 20px rgba(18, 48, 29, 0.22));
}

.catalog-shelf figcaption {
  margin-top: 12px;
  color: rgba(255, 250, 240, 0.84);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.category-ticker {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-ticker span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 250, 240, 0.78);
  font-size: 12px;
  font-weight: 900;
}

.network-visual {
  background:
    radial-gradient(circle at 50% 48%, rgba(245, 200, 75, 0.2), transparent 25%),
    radial-gradient(circle at 24% 22%, rgba(56, 198, 203, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.network-core {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 148px;
  height: 148px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 250, 240, 0.82));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  transform: translate(-50%, -50%);
}

.network-core img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.network-core strong {
  color: var(--ink);
  font-family: "Syne", sans-serif;
  font-size: 15px;
}

.network-core span {
  color: rgba(18, 48, 29, 0.54);
}

.network-node {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 126px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(9, 30, 18, 0.62);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.network-node strong {
  color: var(--paper);
  font-family: "Syne", sans-serif;
  font-size: 17px;
}

.node-a {
  left: 32px;
  top: 56px;
}

.node-b {
  right: 32px;
  top: 76px;
}

.node-c {
  left: 54px;
  bottom: 58px;
}

.node-d {
  right: 42px;
  bottom: 48px;
}

.network-line {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 210px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 200, 75, 0), rgba(245, 200, 75, 0.9), rgba(56, 198, 203, 0));
  transform-origin: left center;
  opacity: 0.78;
  animation: route-breathe 3.8s ease-in-out infinite;
}

.line-a {
  transform: rotate(213deg);
}

.line-b {
  transform: rotate(326deg);
}

.line-c {
  transform: rotate(146deg);
}

.line-d {
  transform: rotate(37deg);
}

.insight-visual {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-content: end;
  padding: 28px;
}

.insight-card,
.inquiry-card,
.contact-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

.insight-card {
  min-height: 112px;
  padding: 18px;
}

.primary-note {
  grid-row: span 2;
  min-height: 260px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.18), rgba(255, 250, 240, 0.08)),
    radial-gradient(circle at 80% 18%, rgba(245, 200, 75, 0.22), transparent 34%);
}

.insight-card strong,
.inquiry-card strong {
  display: block;
  margin-top: 8px;
  color: var(--paper);
  font-family: "Syne", sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.insight-card p,
.inquiry-card p {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.62);
  line-height: 1.55;
}

.insight-chart {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 82px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(8, 26, 15, 0.34);
}

.insight-chart i {
  display: block;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, var(--gold), var(--cyan));
  transform-origin: bottom;
  animation: bar-pulse 4.6s ease-in-out infinite;
}

.insight-chart i:nth-child(1) {
  height: 34px;
}

.insight-chart i:nth-child(2) {
  height: 58px;
}

.insight-chart i:nth-child(3) {
  height: 42px;
}

.insight-chart i:nth-child(4) {
  height: 72px;
}

.contact-visual {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 30px;
}

.inquiry-card {
  max-width: 330px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.18), rgba(255, 250, 240, 0.08)),
    rgba(255, 250, 240, 0.08);
}

.contact-route {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(9, 30, 18, 0.48);
}

.contact-route i {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  background-size: 180% 100%;
  animation: route-shimmer 3.4s linear infinite;
}

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

.contact-metrics div {
  padding: 18px;
}

.contact-metrics strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Syne", sans-serif;
  font-size: 26px;
}

.page-band {
  padding: 78px clamp(20px, 5vw, 72px);
}

.page-band.alt {
  background: #f4fbef;
}

.page-band.dark {
  background:
    radial-gradient(circle at 15% 20%, rgba(237, 78, 134, 0.18), transparent 30%),
    linear-gradient(135deg, #173d26, #0b1f13);
  color: var(--paper);
}

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

.page-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.74)),
    var(--paper);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset, 0 18px 42px rgba(18, 48, 29, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

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

.page-card.padded {
  padding: 26px;
}

.shop-categories .page-grid {
  grid-template-columns: 1.1fr 0.9fr 1fr;
  align-items: stretch;
}

.shop-categories .page-card:nth-child(1) {
  grid-row: span 2;
  min-height: 330px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 80% 18%, rgba(245, 200, 75, 0.18), transparent 30%),
    linear-gradient(145deg, rgba(18, 48, 29, 0.96), rgba(46, 125, 66, 0.72));
  color: var(--paper);
}

.shop-categories .page-card:nth-child(1) p,
.shop-categories .page-card:nth-child(1) span {
  color: rgba(255, 250, 240, 0.72);
}

.catalog-showcase .catalog-page-grid {
  grid-template-columns: repeat(12, 1fr);
  align-items: stretch;
}

.catalog-showcase .catalog-product {
  grid-column: span 3;
  min-height: 430px;
}

.catalog-showcase .catalog-product:nth-child(1),
.catalog-showcase .catalog-product:nth-child(7) {
  grid-column: span 4;
}

.catalog-showcase .catalog-product:nth-child(3),
.catalog-showcase .catalog-product:nth-child(10) {
  grid-column: span 5;
}

.catalog-showcase .catalog-product:nth-child(6) {
  grid-column: span 4;
  transform: translateY(34px);
}

.catalog-showcase .catalog-product:nth-child(8) {
  transform: translateY(-24px);
}

.page-card.dark-card {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

.page-card.dark-card p,
.page-card.dark-card li {
  color: rgba(255, 250, 240, 0.66);
}

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

.catalog-product img {
  width: 100%;
  height: 258px;
  padding: 22px;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 58%, rgba(46, 125, 66, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.42), rgba(255, 250, 240, 0.08));
}

.catalog-product div {
  padding: 18px;
}

.catalog-product span,
.article-card span,
.info-stack span {
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalog-product h3,
.article-card h3,
.info-stack h3 {
  margin: 8px 0 8px;
}

.catalog-product p,
.article-card p,
.info-stack p,
.page-card p,
.page-card li {
  color: var(--muted);
  line-height: 1.65;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.statement {
  max-width: 640px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.04;
}

.image-mosaic {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
}

.image-mosaic img {
  width: 100%;
  height: 238px;
  object-fit: contain;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 58%, rgba(245, 200, 75, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 250, 240, 0.5), rgba(255, 250, 240, 0.12));
  box-shadow: 0 18px 48px rgba(18, 48, 29, 0.12);
}

.image-mosaic img:nth-child(2) {
  margin-top: 42px;
}

.image-mosaic img:nth-child(3) {
  grid-column: 1 / -1;
  height: 230px;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.feature-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(245, 200, 75, 0.18);
}

.article-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 20px;
}

.blog-journal .article-grid {
  grid-template-columns: minmax(360px, 1.25fr) repeat(2, minmax(220px, 0.8fr));
  align-items: stretch;
}

.blog-journal .article-card:nth-child(3) {
  transform: translateY(42px);
}

.blog-journal .article-card:nth-child(5) {
  grid-column: 2 / span 2;
  min-height: 230px;
}

.blog-compass .split-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(440px, 1fr);
}

.blog-compass .page-grid {
  grid-template-columns: 1fr 1fr;
}

.blog-compass .page-card:first-child {
  grid-column: 1 / -1;
}

.article-card {
  min-height: 320px;
  padding: 26px;
}

.article-card.featured {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(18, 48, 29, 0.92), rgba(46, 125, 66, 0.84)),
    url("assets/cutouts/official/cocobites-original.png") center / cover;
  color: var(--paper);
}

.article-card.featured p,
.article-card.featured span {
  color: rgba(255, 250, 240, 0.72);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-workspace {
  background:
    linear-gradient(90deg, rgba(18, 48, 29, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(18, 48, 29, 0.04) 1px, transparent 1px),
    var(--cream);
  background-size: 72px 72px;
}

.contact-workspace .contact-page-grid {
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
}

.contact-workspace .info-stack {
  position: sticky;
  top: 118px;
}

.contact-workspace .inquiry-form {
  padding: clamp(24px, 4vw, 42px);
  border-color: rgba(18, 48, 29, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 250, 240, 0.62));
  box-shadow: 0 30px 80px rgba(18, 48, 29, 0.1);
}

.faq-panel .faq-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.faq-panel .faq-grid .page-card:nth-child(1),
.faq-panel .faq-grid .page-card:nth-child(4) {
  transform: translateY(24px);
}

.info-stack {
  display: grid;
  gap: 16px;
}

.dossier-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.48fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.dossier-intro {
  position: sticky;
  top: 118px;
}

.dossier-intro h2,
.timeline-copy h2,
.footprint-panel h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
}

.dossier-board {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.dossier-card {
  grid-column: span 3;
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.7));
  box-shadow: 0 18px 48px rgba(18, 48, 29, 0.08);
}

.dossier-card.wide {
  grid-column: 1 / -1;
  min-height: 260px;
  display: grid;
  align-content: end;
  background:
    radial-gradient(circle at 86% 20%, rgba(245, 200, 75, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(18, 48, 29, 0.96), rgba(46, 125, 66, 0.82));
  color: var(--paper);
}

.dossier-card span,
.dossier-card p,
.process-rail p,
.office-list span {
  color: var(--muted);
  line-height: 1.65;
}

.dossier-card.wide span,
.dossier-card.wide p {
  color: rgba(255, 250, 240, 0.68);
}

.dossier-card > span,
.process-rail span {
  display: block;
  margin-bottom: 10px;
  color: var(--pink);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dossier-card.metric {
  min-height: 180px;
  align-content: end;
  background:
    radial-gradient(circle at 82% 22%, rgba(56, 198, 203, 0.16), transparent 32%),
    rgba(255, 255, 255, 0.7);
}

.dossier-card.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-family: "Syne", sans-serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
}

.timeline-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) minmax(0, 1fr);
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.process-rail article {
  min-height: 280px;
  padding: 24px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 250, 240, 0.46));
}

.process-rail article:nth-child(even) {
  transform: translateY(28px);
  background:
    radial-gradient(circle at 80% 20%, rgba(245, 200, 75, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 250, 240, 0.4));
}

.process-rail article:last-child {
  border-right: 0;
}

.about-footprint {
  padding-top: 0;
}

.footprint-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 85% 30%, rgba(245, 200, 75, 0.16), transparent 26%),
    linear-gradient(135deg, #143623, #0b1f13);
  color: var(--paper);
}

.footprint-panel p,
.footprint-panel h2 {
  color: var(--paper);
}

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

.office-list span {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 240, 0.76);
  font-weight: 900;
}

.info-stack .page-card {
  padding: 22px;
}

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

.quote-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.quote-strip p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.7;
}

.footer {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 34px;
  padding: 58px clamp(20px, 5vw, 72px);
  background: #0c2114;
  color: rgba(255, 250, 240, 0.7);
}

.footer h2 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
}

.footer a,
.footer span {
  display: block;
  margin: 10px 0;
}

.footer p {
  max-width: 360px;
  color: rgba(255, 250, 240, 0.56);
  line-height: 1.65;
}

.footer .brand-word {
  color: var(--paper);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px clamp(20px, 5vw, 72px);
  background: #07160d;
  color: rgba(255, 250, 240, 0.42);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-product-stage {
    min-height: 520px;
  }

  .category-grid,
  .product-grid,
  .why-grid,
  .testimonial-grid,
  .catalog-page-grid,
  .page-grid,
  .article-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reach-section,
  .why-layout,
  .contact-section,
  .page-hero-content,
  .split-layout,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .page-hero-content {
    gap: 34px;
  }

  .dossier-grid,
  .timeline-layout,
  .footprint-panel,
  .blog-compass .split-layout {
    grid-template-columns: 1fr;
  }

  .dossier-intro,
  .contact-workspace .info-stack {
    position: static;
  }

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

  .process-rail article:nth-child(even) {
    transform: none;
  }

  .catalog-showcase .catalog-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-showcase .catalog-product,
  .catalog-showcase .catalog-product:nth-child(1),
  .catalog-showcase .catalog-product:nth-child(3),
  .catalog-showcase .catalog-product:nth-child(6),
  .catalog-showcase .catalog-product:nth-child(7),
  .catalog-showcase .catalog-product:nth-child(8),
  .catalog-showcase .catalog-product:nth-child(10) {
    grid-column: auto;
    transform: none;
  }

  .page-visual {
    min-height: 390px;
  }

  .catalog-shelf {
    inset: 78px 22px 78px;
  }

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

  .process-step,
  .process-step:first-child,
  .process-step:last-child {
    border-radius: var(--radius);
    border: 1px solid var(--line);
  }

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

@media (max-width: 980px) {
  .utility-bar {
    display: none;
  }

  .nav {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .nav-toggle {
    display: block;
    z-index: 1001;
  }

  .nav-toggle.is-open {
    position: fixed;
    top: 14px;
    right: 20px;
    background: var(--cream);
    box-shadow: 0 14px 34px rgba(18, 48, 29, 0.18);
  }

  .nav-menu {
    position: fixed;
    inset: 0 !important;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 92px clamp(28px, 7vw, 64px) 42px;
    background: var(--cream);
    color: var(--ink);
    font-size: 26px;
    box-shadow: none;
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .nav-menu.is-open {
    transform: translateX(0);
  }

  .nav-menu a {
    width: 100%;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .page-hero {
    min-height: 100vh;
    padding-top: 108px;
    padding-bottom: 54px;
  }

  .page-hero h1 {
    font-size: 38px;
    line-height: 1;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 16px;
  }

  .page-hero-card {
    min-height: 242px;
  }

  .page-hero-card img {
    height: 68%;
    padding: 12px;
  }

  .page-visual {
    min-height: 380px;
  }

  .catalog-shelf {
    grid-template-columns: repeat(2, 1fr);
    inset: 72px 18px 72px;
  }

  .catalog-shelf figure {
    min-height: 130px;
    padding: 12px 10px 10px;
  }

  .catalog-shelf figure:nth-child(2),
  .catalog-shelf figure:nth-child(4) {
    transform: none;
  }

  .catalog-shelf figure {
    animation: none;
    translate: 0 0;
  }

  .catalog-shelf img {
    height: 90px;
  }

  .category-ticker {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .network-core {
    width: 124px;
    height: 124px;
  }

  .network-node {
    min-width: 108px;
    padding: 10px 11px;
  }

  .network-node strong {
    font-size: 14px;
  }

  .node-a {
    left: 18px;
    top: 48px;
  }

  .node-b {
    right: 18px;
    top: 58px;
  }

  .node-c {
    left: 24px;
    bottom: 52px;
  }

  .node-d {
    right: 22px;
    bottom: 44px;
  }

  .network-line {
    width: 155px;
  }

  .insight-visual,
  .contact-visual {
    padding: 20px;
  }

  .insight-visual {
    grid-template-columns: 1fr;
  }

  .primary-note {
    min-height: 170px;
  }

  .contact-route {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .contact-route i {
    width: 2px;
    height: 28px;
    justify-self: center;
  }

  .hero-product-stage {
    min-height: 430px;
  }

  .hero-pack {
    width: 170px;
  }

  .hero-stat {
    padding: 12px;
  }

  .hero-stat strong {
    font-size: 28px;
  }

  .proof-strip,
  .category-grid,
  .product-grid,
  .why-grid,
  .process-grid,
  .testimonial-grid,
  .catalog-page-grid,
  .page-grid,
  .article-grid,
  .faq-grid,
  .contact-page-grid,
  .shop-categories .page-grid,
  .catalog-showcase .catalog-page-grid,
  .blog-journal .article-grid,
  .blog-compass .page-grid,
  .faq-panel .faq-grid,
  .dossier-board,
  .process-rail,
  .office-list,
  .inquiry-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .shop-categories .page-card:nth-child(1),
  .blog-journal .article-card:nth-child(5),
  .dossier-card,
  .dossier-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: auto;
  }

  .blog-journal .article-card:nth-child(3),
  .faq-panel .faq-grid .page-card:nth-child(1),
  .faq-panel .faq-grid .page-card:nth-child(4) {
    transform: none;
  }

  .process-rail article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-rail article:last-child {
    border-bottom: 0;
  }

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

  .product-toolbar,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .quote-strip,
  .split-layout,
  .page-hero-content,
  .contact-workspace .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .image-mosaic {
    grid-template-columns: 1fr;
  }

  .image-mosaic img,
  .image-mosaic img:nth-child(2),
  .image-mosaic img:nth-child(3) {
    height: 210px;
    margin-top: 0;
    grid-column: auto;
  }

  .filter-group {
    justify-content: flex-start;
  }

  .world-card {
    aspect-ratio: auto;
    min-height: 340px;
  }

  .map-status {
    left: 14px;
    top: 14px;
    padding: 10px 12px;
  }

  .map-marker {
    font-size: 10px;
  }

  .map-marker::after {
    padding: 6px 8px;
    font-size: 10px;
  }

  .marker-thailand {
    --x: 72% !important;
    --y: 58% !important;
  }

  .marker-china {
    --x: 72% !important;
    --y: 35% !important;
    --label-left: -10px;
  }

  .marker-north-america {
    --label-left: 20px;
  }

  .marker-japan {
    --x: 88% !important;
    --y: 42% !important;
    --label-left: 16px;
  }

  .marker-korea {
    --x: 80% !important;
    --y: 49% !important;
    --label-left: 4px;
  }

  .marker-vietnam {
    --x: 76% !important;
    --y: 66% !important;
  }

  .marker-singapore {
    --x: 74% !important;
    --y: 76% !important;
  }

  .map-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    font-size: 11px;
  }

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

  .capability-grid div,
  .capability-grid div:nth-child(2n),
  .capability-grid div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .capability-grid div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 500px) {
  .no-wrap {
    white-space: normal;
  }

  .brand-mark {
    display: none;
  }

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

  .page-hero {
    padding-top: 96px;
  }

  .page-visual {
    min-height: 340px;
  }

  .shop-visual {
    min-height: 420px;
  }

  .visual-badge {
    left: 14px;
    top: 14px;
  }

  .catalog-shelf {
    inset: 102px 14px 52px;
    gap: 10px;
  }

  .shop-visual .category-ticker {
    display: none;
  }

  .catalog-shelf figcaption {
    font-size: 11px;
  }

  .network-core {
    width: 112px;
    height: 112px;
    padding: 16px;
  }

  .network-core img {
    width: 42px;
    height: 42px;
  }

  .node-a,
  .node-c {
    left: 12px;
  }

  .node-b,
  .node-d {
    right: 12px;
  }

  .network-line {
    width: 126px;
  }

  .contact-metrics {
    grid-template-columns: 1fr;
  }

  .hero-pack-a {
    right: 28%;
  }

  .hero-pack-b {
    right: -15%;
  }

  .hero-pack-c {
    left: -8%;
  }

  .hero-pack-d {
    right: 7%;
  }

  .hero-stat-a {
    top: 4%;
  }

  .hero-stat-b {
    right: 0;
    bottom: 5%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
