:root {
  --ink: #0c1b2a;
  --ink-soft: #163047;
  --paper: #f4f7fa;
  --white: #ffffff;
  --amber: #fe9900;
  --amber-deep: #e88700;
  --seafoam: #1ec8b0;
  --muted: #5b6b7c;
  --line: rgba(12, 27, 42, 0.12);
  --shadow: 0 24px 60px rgba(12, 27, 42, 0.18);
  --font-display: "Syne", "Noto Sans SC", sans-serif;
  --font-body: "Noto Sans SC", system-ui, sans-serif;
  --radius: 18px;
  --max: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  color: #fff;
  transition: background 0.35s ease, backdrop-filter 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

/* Over dark hero: light text for contrast */
.site-header .brand-text strong {
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.site-header .brand-text small {
  color: rgba(255, 255, 255, 0.85);
}

.site-header .nav a {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 600;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.site-header .nav a:hover {
  color: #ffd089;
}

.site-header .btn-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.site-header .menu-toggle {
  background: rgba(255, 255, 255, 0.18);
}

.site-header .menu-toggle span {
  background: #fff;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}

.site-header.is-scrolled .brand-text strong {
  color: var(--ink);
  text-shadow: none;
}

.site-header.is-scrolled .brand-text small {
  color: var(--muted);
}

.site-header.is-scrolled .nav a {
  color: var(--ink);
  text-shadow: none;
}

.site-header.is-scrolled .nav a:hover {
  color: var(--amber-deep);
}

.site-header.is-scrolled .btn-ghost {
  color: var(--ink);
  border-color: transparent;
  background: transparent;
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(12, 27, 42, 0.06);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--ink);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(254, 153, 0, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.72rem;
}

.nav {
  display: none;
  gap: 1.6rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a {
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background: var(--amber);
  transition: width 0.25s ease;
}

.nav a:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.7rem 1.15rem;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--amber);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(254, 153, 0, 0.35);
}

.btn-primary:hover {
  background: var(--amber-deep);
}

.btn-ghost {
  display: none;
  background: transparent;
  color: var(--ink);
}

/* Mobile: keep header light — CTA lives in hero */
.header-actions .btn-primary {
  display: none;
}

@media (min-width: 860px) {
  .header-actions .btn-primary {
    display: inline-flex;
  }
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.16);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

.btn-lg {
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: rgba(12, 27, 42, 0.06);
  display: grid;
  place-content: center;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-content: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.1) translate3d(-1.5%, -1%, 0); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 27, 42, 0.25) 0%, rgba(12, 27, 42, 0.55) 42%, rgba(12, 27, 42, 0.92) 100%),
    radial-gradient(80% 60% at 15% 20%, rgba(254, 153, 0, 0.28), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 5.5rem;
  padding-top: 7rem;
}

.hero-recruit {
  align-content: end;
}

.hero-recruit .hero-content {
  margin-bottom: 4.5rem;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  padding: 0;
  margin: 1.4rem 0 0;
}

.hero-pills li {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(254, 153, 0, 0.45);
  background: rgba(254, 153, 0, 0.12);
  color: #ffe0a8;
  font-size: 0.82rem;
  font-weight: 700;
}

.apply-section {
  background:
    radial-gradient(60% 50% at 100% 0%, rgba(254, 153, 0, 0.14), transparent 55%),
    var(--paper);
}

.apply-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.apply-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.9rem;
}

.apply-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 22px;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.apply-card-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.apply-card-head p {
  margin: 0.35rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.entity-type {
  border: 0;
  margin: 0 0 0.9rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.entity-type legend {
  width: 100%;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  font-weight: 700;
}

.entity-type legend span,
.field i {
  color: #e11d48;
  font-style: normal;
}

.chip {
  cursor: pointer;
}

.chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.chip span {
  display: inline-block;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 600;
  background: #f3f6f9;
}

.chip input:checked + span {
  background: rgba(254, 153, 0, 0.16);
  border-color: var(--amber);
  color: var(--ink);
}

.field {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  font-weight: 500;
  background: #fff;
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  outline: 2px solid rgba(254, 153, 0, 0.35);
  border-color: var(--amber);
}

.btn-block {
  width: 100%;
  margin-top: 0.35rem;
}

.form-hint,
.form-success {
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.form-success {
  color: #0f766e;
  font-weight: 700;
}

.hero-recruit + .hero-strip {
  background: var(--ink);
  border-top: 0;
}

.hero-brand {
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--amber);
  margin: 0 0 1rem;
}

.hero h1 {
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.hero-word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.hero-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.6rem);
  font-weight: 700;
  max-width: 14ch;
  line-height: 1.2;
}

.hero-sub {
  max-width: 36rem;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.hero-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 27, 42, 0.55);
  backdrop-filter: blur(10px);
}

.ticker {
  overflow: hidden;
  padding: 0.9rem 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 2rem;
  animation: ticker 28s linear infinite;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.78);
}

.ticker-track span::after {
  content: "◆";
  margin-left: 2rem;
  color: var(--amber);
  font-size: 0.65rem;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.12s; }
.delay-2 { animation-delay: 0.24s; }
.delay-3 { animation-delay: 0.36s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Sections */
.section {
  padding: clamp(4.5rem, 8vw, 7rem) 0;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin: 0 0 0.8rem;
  font-weight: 700;
}

.eyebrow.light {
  color: #ffd089;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.8rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head h2,
.platform h2,
.audience h2,
.about h2,
.warehouse h2,
.cod h2,
.faq h2,
.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.9rem;
}

/* About page */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  padding: 8rem 0 3.5rem;
}

.page-hero-media {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 27, 42, 0.45), rgba(12, 27, 42, 0.9)),
    radial-gradient(70% 50% at 20% 20%, rgba(254, 153, 0, 0.28), transparent 60%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.page-hero-content > p:last-child {
  margin: 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.about-story-grid {
  display: grid;
  gap: 1.5rem;
}

.about-story h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 0;
  max-width: 12ch;
}

.about-mission {
  background: var(--white);
}

.mission-grid {
  display: grid;
  gap: 1rem;
}

.mission-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.35rem;
  background: var(--paper);
}

.mission-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.mission-card p:last-child {
  margin: 0;
  color: var(--muted);
}

.site-header .nav a[aria-current="page"] {
  color: #ffd089;
}

.site-header.is-scrolled .nav a[aria-current="page"] {
  color: var(--amber-deep);
}

/* Company logo */
.company-logo-badge {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: #fff;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.company-logo-badge img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.company-title-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.company-title-row h2 {
  margin: 0;
}

.company-logo-block {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 24px rgba(12, 27, 42, 0.08);
}

.company-logo-block img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

/* Company profile */
.company-profile {
  background: var(--white);
}

.profile-table {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: var(--paper);
}

.profile-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.profile-row:last-child {
  border-bottom: 0;
}

.profile-row span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.profile-row strong {
  font-weight: 700;
  color: var(--ink);
}

.company-model {
  background: var(--paper);
}

.model-flow {
  display: grid;
  gap: 0.9rem;
}

.model-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
}

.model-step b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.model-step p {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 860px) {
  .profile-row {
    grid-template-columns: 10rem 1fr;
    padding: 1.15rem 1.5rem;
  }

  .model-flow {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Mobile menu panel stays high-contrast */
body.nav-open .nav {
  color: var(--ink);
}

body.nav-open .nav a {
  color: var(--ink) !important;
  text-shadow: none !important;
}

.market {
  background: var(--white);
}

/* Core services */
.services {
  background: var(--paper);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.45rem 1.35rem;
  box-shadow: 0 10px 28px rgba(12, 27, 42, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(254, 153, 0, 0.35);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: #1f4e79;
  background: rgba(31, 78, 121, 0.08);
}

.service-icon svg {
  width: 22px;
  height: 22px;
}

.service-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (min-width: 860px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

/* Pain / advantages */
.pain-grid {
  display: grid;
  gap: 1rem;
}

.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem 1.4rem;
  display: grid;
  gap: 0.7rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pain-tag {
  margin: 0;
  width: fit-content;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(225, 29, 72, 0.1);
  color: #be123c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pain-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.pain-card > p {
  margin: 0;
  color: var(--muted);
}

.pain-answer {
  margin-top: 0.4rem;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: 0.25rem;
}

.pain-answer strong {
  color: var(--amber-deep);
  font-family: var(--font-display);
}

.pain-answer span {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Warehouse */
.warehouse {
  background:
    radial-gradient(50% 50% at 0% 0%, rgba(254, 153, 0, 0.12), transparent 55%),
    var(--white);
}

.warehouse-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.feature-rows {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.feature-rows li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.3rem;
}

.feature-rows li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-rows strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.feature-rows span {
  color: var(--muted);
}

.warehouse-panel {
  display: grid;
  gap: 0.9rem;
}

.stat-block {
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem;
  background: var(--ink);
  color: var(--white);
}

.stat-block.accent {
  background: linear-gradient(135deg, var(--amber), #ffb53d);
  color: var(--ink);
}

.stat-block b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.stat-block p {
  margin: 0;
  opacity: 0.85;
  font-size: 0.95rem;
}

/* COD */
.cod {
  background: var(--paper);
}

.cod-layout {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.cod-visual {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.cod-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.cod-points {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 1.6rem;
}

.cod-points h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.cod-points p {
  margin: 0;
  color: var(--muted);
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-layout {
  display: grid;
  gap: 2rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fafcfd;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item.active {
  border-color: rgba(254, 153, 0, 0.55);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(12, 27, 42, 0.08);
}

.faq-q {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  padding: 1.1rem 1.15rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}

.faq-q i {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.25s ease, border-color 0.25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-q i {
  transform: rotate(225deg);
  border-color: var(--amber);
}

.faq-a {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
  padding: 0 1.15rem;
}

.faq-item.active .faq-a {
  max-height: 240px;
  opacity: 1;
  padding: 0 1.15rem 1.15rem;
}

.faq-a p {
  margin: 0;
  color: var(--muted);
}

.section-head p,
.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.lead strong {
  color: var(--ink);
}

/* Platform split */
.platform {
  background:
    radial-gradient(50% 40% at 90% 10%, rgba(30, 200, 176, 0.12), transparent 60%),
    var(--paper);
}

.split {
  display: grid;
  gap: 2.5rem;
}

.split-sticky h2 {
  max-width: 12ch;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0;
  display: grid;
  gap: 1rem;
}

.plain-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.plain-list span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--seafoam);
}

.text-link {
  font-weight: 700;
  color: var(--ink);
  border-bottom: 2px solid var(--amber);
  padding-bottom: 0.15rem;
}

.text-link:hover {
  color: var(--amber-deep);
}

/* Capability */
.capability {
  background: var(--ink);
  color: var(--white);
}

.capability .eyebrow {
  color: var(--amber);
}

.capability .section-head p {
  color: rgba(255, 255, 255, 0.68);
}

.cap-grid {
  display: grid;
  gap: 1rem;
}

.cap-item {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1rem 1.2rem;
  align-items: start;
  transition: padding 0.25s ease;
}

.cap-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cap-item:hover {
  padding-left: 0.4rem;
}

.cap-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.cap-item h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  grid-column: 2;
}

.cap-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  grid-column: 2;
}

/* Audience */
.audience {
  background: var(--paper);
}

.audience-wrap {
  display: grid;
  gap: 1rem;
}

.aud-panel {
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  min-height: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.aud-panel::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  right: -60px;
  top: -70px;
  background: radial-gradient(circle, rgba(254, 153, 0, 0.28), transparent 70%);
}

.aud-buyer {
  background: linear-gradient(145deg, #163047, #0c1b2a 70%);
  color: var(--white);
}

.aud-merchant {
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.aud-panel ul {
  margin: 0.4rem 0 1rem;
  padding-left: 1.1rem;
  color: inherit;
  opacity: 0.88;
}

.aud-panel .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Journey */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem 1.4rem 1.4rem 4.4rem;
  position: relative;
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 1.2rem;
  top: 1.35rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--amber);
  font-size: 1.1rem;
}

.steps strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
}

/* Trust */
.trust {
  background: linear-gradient(90deg, rgba(254, 153, 0, 0.14), rgba(30, 200, 176, 0.12));
  border-block: 1px solid var(--line);
  padding: 1.6rem 0;
}

.trust-row {
  display: grid;
  gap: 1rem;
}

.trust-row div {
  display: grid;
}

.trust-row b {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.85rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

.about-note {
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  padding: 1.6rem;
}

.about-note h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
}

.muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Closing */
.closing {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.closing-bg {
  position: absolute;
  inset: 0;
}

.closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
}

.closing-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 42, 0.55), rgba(12, 27, 42, 0.88));
}

.closing-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 1.25rem;
  max-width: 40rem;
}

.closing-inner p:not(.hero-brand) {
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 1.4rem;
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 2.4rem 0 2rem;
}

.footer-row {
  display: grid;
  gap: 1.4rem;
}

.footer-brand {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
}

.footer-brand span {
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.4rem;
}

.footer-links a:hover {
  color: var(--amber);
}

.copyright {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

/* Mobile nav open */
body.nav-open .nav {
  display: flex;
  position: fixed;
  inset: 68px 1rem auto;
  flex-direction: column;
  background: rgba(244, 247, 250, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  z-index: 60;
}

body.nav-open .nav a {
  padding: 0.55rem 0;
}

/* Desktop */
@media (min-width: 860px) {
  .nav {
    display: flex;
  }

  .btn-ghost {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .apply-layout {
    grid-template-columns: 1fr 0.95fr;
    gap: 3rem;
    align-items: center;
  }

  .about-story-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: start;
  }

  .mission-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pain-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .warehouse-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
  }

  .cod-layout {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2.5rem;
  }

  .cod-points {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }

  .split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 4rem;
    align-items: start;
  }

  .split-sticky {
    position: sticky;
    top: 6.5rem;
  }

  .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0 2.5rem;
  }

  .audience-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps li {
    padding: 1.5rem 1.2rem 1.5rem 1.2rem;
    min-height: 100%;
  }

  .steps li::before {
    position: static;
    display: block;
    margin-bottom: 1rem;
  }

  .trust-row {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-grid {
    grid-template-columns: 1.3fr 0.9fr;
    align-items: center;
  }

  .footer-row {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

.will-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .will-reveal {
    opacity: 1;
    transform: none;
  }
}
