:root {
  --navy: #07111f;
  --navy-2: #0c1b2d;
  --navy-3: #0a1626;
  --graphite: #151a21;
  --ink: #17202b;
  --muted: #667085;
  --muted-light: rgba(255, 255, 255, 0.72);
  --line: #dfe5ec;
  --soft: #eef3f7;
  --white: #ffffff;
  --gold: #c99b45;
  --cyan: #38bdf8;
  --steel: #496d93;
  --shadow: 0 22px 70px rgba(7, 17, 31, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: #081320;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled {
  background: rgba(7, 17, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(var(--container), calc(100% - 40px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  min-width: max-content;
}

.brand-logo {
  width: 58px;
  height: 48px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(201, 155, 69, 0.42);
  background: #000;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark {
  position: relative;
  width: 52px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201, 155, 69, 0.62);
  background: linear-gradient(145deg, rgba(201, 155, 69, 0.22), rgba(56, 189, 248, 0.08));
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
}

.brand-mark b {
  position: relative;
  z-index: 2;
  font-size: 13px;
}

.brand-mark i {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 9px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
}

.brand-mark i::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 7px solid var(--cyan);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.15;
}

.brand small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

.nav-dropdown button::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 11, 20, 0.96);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
  transform: translate(-50%, -8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-menu a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}

.nav-dropdown:hover button,
.nav-dropdown:focus-within button,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 96vh;
  padding: 154px 0 86px;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 8, 15, 0.99) 0%, rgba(7, 17, 31, 0.91) 38%, rgba(7, 17, 31, 0.32) 76%),
    linear-gradient(180deg, rgba(2, 7, 13, 0.24), rgba(3, 8, 15, 0.94));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 72px;
  align-items: end;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--steel);
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.5vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-copy {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.hero-actions,
.cta-box .btn,
.offer-copy .btn {
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.2;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

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

.btn.primary {
  background: var(--gold);
  color: #121820;
  box-shadow: 0 18px 34px rgba(201, 155, 69, 0.24);
}

.btn.primary::after {
  content: "->";
  margin-left: 10px;
  font-weight: 900;
}

.btn.secondary {
  margin-left: 10px;
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(201, 155, 69, 0.28);
  background: rgba(4, 12, 22, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.founder-thumb {
  width: 88px;
  height: 88px;
  margin-bottom: 18px;
  border: 2px solid rgba(201, 155, 69, 0.72);
  object-fit: cover;
  object-position: center 28%;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.route-card {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 12px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.route-card div {
  min-width: 0;
}

.route-card span,
.market-map span,
.why-answer span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.route-card strong {
  display: block;
  margin-top: 5px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
}

.route-card em {
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  position: relative;
}

.route-card em::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -5px;
  border-left: 8px solid var(--cyan);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

.panel-kicker {
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel h2 {
  font-size: 28px;
}

.hero-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.metric-row div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--gold);
  font-size: 26px;
  line-height: 1;
}

.metric-row span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  line-height: 1.35;
}

.section {
  padding: 104px 0;
}

.about-band,
#problems,
#materials,
#services,
#why,
.contact-section {
  background: #f8fafc;
}

.about-band .split {
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
}

.founder-portrait {
  position: relative;
  padding: 16px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.94)),
    var(--navy);
  box-shadow: var(--shadow);
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
  filter: saturate(0.96) contrast(1.04);
}

.portrait-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 11, 20, 0.82);
  backdrop-filter: blur(16px);
}

.portrait-caption span {
  display: block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.portrait-caption strong {
  display: block;
  margin-top: 4px;
  color: var(--white);
  font-size: 24px;
}

.portrait-caption p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 76px;
  align-items: start;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.body-copy,
.section-copy p,
.section-head p,
.offer-copy p,
.cta-box p {
  color: var(--muted);
  font-size: 17px;
}

.body-copy p:last-child,
.section-copy p:last-child {
  margin-bottom: 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

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

.problem-card,
.service-card,
.why-item {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
}

.problem-card {
  min-height: 150px;
  padding: 24px;
  color: #263241;
  font-weight: 700;
}

.problem-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.material-section {
  background:
    linear-gradient(180deg, #f8fafc, #eef3f7);
}

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

.material-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(73, 109, 147, 0.2);
  background:
    linear-gradient(180deg, #ffffff, #f4f8fb);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
}

.material-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.material-card h3 {
  font-size: 23px;
}

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

.solution-band,
.process-band {
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.96)),
    var(--navy);
  color: var(--white);
}

.insights-section {
  background: #f8fafc;
}

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

.insight-card {
  min-height: 305px;
  padding: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff, #f2f6fa);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.insight-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 155, 69, 0.38);
  box-shadow: var(--shadow);
}

.insight-card span {
  display: block;
  margin-bottom: 24px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.insight-card h3 {
  font-size: 24px;
}

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

.map-section {
  background:
    radial-gradient(circle at 74% 18%, rgba(56, 189, 248, 0.14), transparent 26%),
    linear-gradient(145deg, #050b14, #0b1a2d 62%, #050b14);
  color: var(--white);
}

.map-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 60px;
  align-items: center;
}

.map-copy p {
  color: var(--muted-light);
  font-size: 17px;
}

.market-map {
  position: relative;
  min-height: 460px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 17% 28%, rgba(201, 155, 69, 0.16), transparent 18%),
    radial-gradient(circle at 82% 68%, rgba(56, 189, 248, 0.14), transparent 22%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: 36px 36px;
  overflow: hidden;
}

.live-trade-map::before {
  content: "";
  position: absolute;
  left: 17%;
  right: 17%;
  top: 51%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: translateY(-50%);
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.42);
}

.live-trade-map::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 31%;
  height: 158px;
  border-top: 2px solid rgba(201, 155, 69, 0.48);
  border-radius: 50%;
}

.map-bg-label {
  position: absolute;
  z-index: 1;
  color: rgba(255, 255, 255, 0.055);
  font-size: clamp(34px, 6vw, 68px);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.asia-label {
  left: 20px;
  bottom: 24px;
}

.europe-label {
  right: 18px;
  top: 26px;
  text-align: right;
}

.map-point {
  position: absolute;
  z-index: 4;
  width: 232px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 11, 20, 0.86);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.22);
}

.map-point strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  line-height: 1.3;
}

.map-point.asia {
  left: 28px;
  top: 36px;
}

.map-point.europe {
  right: 28px;
  bottom: 36px;
}

.trade-route {
  position: absolute;
  z-index: 3;
  left: 17%;
  right: 17%;
  top: 51%;
  height: 4px;
  transform: translateY(-50%);
  pointer-events: none;
}

.route-dot {
  position: absolute;
  top: -6px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.12), 0 0 26px rgba(56, 189, 248, 0.65);
  animation: routePulse 2.4s ease-in-out infinite;
}

.dot-one {
  left: 22%;
}

.dot-two {
  left: 50%;
  animation-delay: 0.45s;
}

.dot-three {
  left: 78%;
  animation-delay: 0.9s;
}

.strength-marker {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 170px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(8, 20, 35, 0.9);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
  animation: markerFloat 4.2s ease-in-out infinite;
}

.strength-marker span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 1px solid rgba(201, 155, 69, 0.7);
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
}

.strength-marker strong {
  font-size: 12px;
  line-height: 1.25;
}

.marker-one {
  left: 31%;
  top: 24%;
}

.marker-two {
  left: 45%;
  top: 14%;
  animation-delay: 0.35s;
}

.marker-three {
  right: 26%;
  top: 33%;
  animation-delay: 0.7s;
}

.marker-four {
  left: 27%;
  bottom: 26%;
  animation-delay: 1.05s;
}

.marker-five {
  left: 45%;
  bottom: 14%;
  animation-delay: 1.4s;
}

.marker-six {
  right: 20%;
  bottom: 27%;
  animation-delay: 1.75s;
}

@keyframes routePulse {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.62;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}

@keyframes markerFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.solution-card {
  position: relative;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    radial-gradient(circle at 78% 12%, rgba(56, 189, 248, 0.18), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.solution-card h3 {
  position: relative;
  max-width: 340px;
  margin-top: 220px;
  font-size: 30px;
  color: var(--white);
}

.solution-card p {
  position: relative;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.7);
}

.global-desk-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(56, 189, 248, 0.13), transparent 26%),
    radial-gradient(circle at 18% 74%, rgba(201, 155, 69, 0.13), transparent 24%),
    linear-gradient(145deg, #050b14, #0b1a2d 58%, #050b14);
  color: var(--white);
}

.global-desk-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 64px;
  align-items: center;
}

.global-copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.global-proof {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.global-proof div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
}

.global-proof strong {
  color: var(--gold);
}

.global-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.world-desk {
  display: grid;
  gap: 18px;
}

.world-map {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.045);
  background-size: 38px 38px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.world-map::before {
  content: "";
  position: absolute;
  left: 47%;
  right: 27%;
  top: 37%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  transform: rotate(21deg);
  transform-origin: left;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.38);
}

.world-map::after {
  content: "Asia-Europe Polymer Corridor";
  position: absolute;
  left: 26px;
  bottom: 24px;
  color: rgba(255, 255, 255, 0.08);
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.world-map svg {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  fill: rgba(255, 255, 255, 0.085);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1;
}

.country-pin {
  position: absolute;
  z-index: 3;
  left: var(--x);
  top: var(--y);
  display: grid;
  justify-items: center;
  gap: 6px;
  width: 86px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--white);
  font: inherit;
  font-weight: 800;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.country-pin::before {
  content: "";
  position: absolute;
  top: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.14);
  animation: mapPing 2.6s ease-in-out infinite;
}

.country-pin img {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(201, 155, 69, 0.72);
  border-radius: 999px;
  object-fit: cover;
  background: #000;
  box-shadow: 0 0 22px rgba(201, 155, 69, 0.25);
}

.country-pin span {
  position: relative;
  z-index: 2;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 11, 20, 0.78);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1;
}

.country-pin.active img,
.country-pin:hover img,
.country-pin:focus-visible img {
  border-color: var(--cyan);
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.1), 0 0 26px rgba(56, 189, 248, 0.46);
}

.country-panel {
  min-height: 178px;
  padding: 24px;
  border: 1px solid rgba(201, 155, 69, 0.26);
  background:
    linear-gradient(135deg, rgba(201, 155, 69, 0.12), rgba(255, 255, 255, 0.055));
}

.country-panel span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.country-panel h3 {
  margin-top: 12px;
  color: var(--white);
  font-size: 28px;
}

.country-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.team-desk {
  margin-top: 72px;
}

.team-intro {
  max-width: 830px;
  margin-bottom: 30px;
}

.team-lanes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-lanes article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.team-lanes span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid rgba(201, 155, 69, 0.72);
  color: var(--gold);
  font-weight: 800;
}

.team-lanes h3 {
  color: var(--white);
}

.team-lanes p {
  color: rgba(255, 255, 255, 0.7);
}

@keyframes mapPing {
  0%,
  100% {
    transform: scale(0.72);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.9;
  }
}

.map-line {
  position: absolute;
  inset: 46px 34px auto 34px;
  height: 150px;
  border-top: 2px solid rgba(201, 155, 69, 0.78);
  border-right: 2px solid rgba(56, 189, 248, 0.5);
  transform: skewY(-8deg);
}

.map-line::before,
.map-line::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 9px rgba(201, 155, 69, 0.13);
}

.map-line::before {
  left: -2px;
  top: -10px;
}

.map-line::after {
  right: -10px;
  bottom: -10px;
  background: var(--cyan);
  box-shadow: 0 0 0 9px rgba(56, 189, 248, 0.13);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.76);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold);
}

.buyer-section {
  background: #ffffff;
}

.buyer-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
}

.buyer-list {
  display: grid;
  gap: 12px;
}

.buyer-list div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 68px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(7, 17, 31, 0.04), rgba(56, 189, 248, 0.035));
}

.buyer-list strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 155, 69, 0.62);
  color: var(--gold);
  font-size: 15px;
}

.buyer-list span {
  color: #243244;
  font-weight: 750;
  line-height: 1.35;
}

.service-card {
  min-height: 254px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f4f8fb);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(73, 109, 147, 0.42);
  box-shadow: var(--shadow);
}

.service-card span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  background: #edf4fa;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

.service-card p,
.why-item p,
.step p {
  color: var(--muted);
}

.offer-section {
  background:
    radial-gradient(circle at 18% 22%, rgba(201, 155, 69, 0.13), transparent 25%),
    linear-gradient(145deg, #050b14, var(--navy-2));
  color: var(--white);
}

.examples-section {
  background:
    radial-gradient(circle at 78% 18%, rgba(56, 189, 248, 0.13), transparent 24%),
    radial-gradient(circle at 18% 78%, rgba(201, 155, 69, 0.11), transparent 26%),
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.94)),
    var(--navy);
  color: var(--white);
}

.examples-section .section-head p,
.case-copy p,
.case-work li {
  color: var(--muted-light);
}

.example-casebook {
  display: grid;
  gap: 16px;
}

.case-row {
  display: grid;
  grid-template-columns: 138px 240px minmax(0, 1fr) 270px;
  gap: 22px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.case-index {
  display: grid;
  align-content: space-between;
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(201, 155, 69, 0.28);
  background: rgba(5, 11, 20, 0.58);
}

.case-index span {
  color: var(--gold);
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.case-index b {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
}

.case-visual {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #050b14;
}

.case-visual img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transform: scale(1.02);
  animation: caseImageBreath 8s ease-in-out infinite;
}

.case-visual::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.14) 45%, transparent 60%);
  transform: translateX(-130%);
  animation: caseScan 5.8s ease-in-out infinite;
  pointer-events: none;
}

.case-visual::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(56, 189, 248, 0.13), 0 0 24px rgba(56, 189, 248, 0.62);
  animation: routePulse 2.4s ease-in-out infinite;
}

.case-visual em {
  position: absolute;
  z-index: 3;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 10px 9px 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(5, 11, 20, 0.78);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.case-copy {
  display: grid;
  align-content: center;
}

.case-copy h3 {
  max-width: 720px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.case-copy p {
  max-width: 760px;
  margin-bottom: 0;
}

.case-work {
  padding: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(7, 17, 31, 0.46), rgba(7, 17, 31, 0.18));
}

.case-work strong {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 13px;
  text-transform: uppercase;
}

.case-work ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-work li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.35;
}

.case-work li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--gold);
}

@keyframes caseImageBreath {
  0%,
  100% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes caseScan {
  0%,
  42% {
    transform: translateX(-130%);
  }
  68%,
  100% {
    transform: translateX(130%);
  }
}

.offer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.offer-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.offer-list div {
  min-height: 84px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

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

.why-answer,
.better-panel {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
}

.why-answer h3 {
  margin-top: 22px;
  font-size: 24px;
}

.why-answer p,
.better-panel li {
  color: var(--muted);
}

.better-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  margin-top: 18px;
  border-color: rgba(201, 155, 69, 0.38);
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.98), rgba(10, 22, 38, 0.95)),
    var(--navy);
  color: var(--white);
}

.better-panel h3 {
  font-size: 30px;
}

.better-panel ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.better-panel li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.78);
}

.better-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  background: var(--gold);
}

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

.step {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
}

.step span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 48px;
  border: 1px solid rgba(201, 155, 69, 0.72);
  color: var(--gold);
  font-weight: 800;
}

.step p {
  color: rgba(255, 255, 255, 0.68);
}

.cta-section {
  padding: 86px 0;
  background: var(--soft);
}

.cta-box {
  padding: 60px;
  background:
    linear-gradient(120deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.9)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  max-width: 820px;
}

.cta-box p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 34px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.direct-founder {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(201, 155, 69, 0.28);
  background: #07111f;
  color: var(--white);
}

.direct-founder img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  object-position: center 28%;
}

.direct-founder strong,
.direct-founder span {
  display: block;
}

.direct-founder strong {
  font-size: 16px;
  line-height: 1.25;
}

.direct-founder span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.35;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd8e3;
  border-radius: var(--radius);
  padding: 14px 14px;
  font: inherit;
  color: var(--ink);
  background: #fbfcfe;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(56, 189, 248, 0.16);
  border-color: var(--steel);
}

.contact-form button {
  width: fit-content;
  cursor: pointer;
}

.email-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.email-note a {
  color: var(--steel);
  font-weight: 800;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-details a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(73, 109, 147, 0.2);
  background: #ffffff;
  color: var(--steel);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.footer {
  padding: 28px 0;
  background: #050b14;
  color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.footer p {
  margin: 0;
}

.footer-logo {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 36px;
  margin-right: 10px;
  border: 1px solid rgba(201, 155, 69, 0.58);
  overflow: hidden;
  vertical-align: middle;
  background: #000;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-result-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 72% 20%, rgba(56, 189, 248, 0.16), transparent 28%),
    linear-gradient(145deg, #050b14, #0b1a2d);
  color: var(--white);
}

.result-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}

.result-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid rgba(201, 155, 69, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.result-card h1 {
  font-size: clamp(38px, 7vw, 62px);
}

.result-card p {
  color: rgba(255, 255, 255, 0.74);
}

.result-card a:not(.btn) {
  color: var(--gold);
  font-weight: 800;
}

.founder-hero {
  padding: 148px 0 92px;
  background:
    radial-gradient(circle at 76% 20%, rgba(201, 155, 69, 0.16), transparent 28%),
    linear-gradient(145deg, #050b14, #0b1a2d);
  color: var(--white);
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 72px;
  align-items: center;
}

.founder-hero-copy p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 18px;
}

.founder-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0 0;
  max-width: 680px;
}

.founder-hero-stats div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.founder-hero-stats strong,
.founder-hero-stats span {
  display: block;
}

.founder-hero-stats strong {
  color: var(--gold);
  font-size: 22px;
  line-height: 1.1;
}

.founder-hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.35;
}

.founder-hero-image {
  padding: 16px;
  border: 1px solid rgba(201, 155, 69, 0.28);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

.founder-hero-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 24%;
}

.founder-story-section {
  background: #f8fafc;
}

.founder-story-section + .founder-story-section {
  background: #ffffff;
}

.founder-origin-section,
.virgin-polymer-section,
.philosophy-section {
  background: #f8fafc;
}

.founder-origin-grid,
.observation-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: center;
}

.origin-copy p,
.observation-main p {
  color: var(--muted);
  font-size: 17px;
}

.origin-market-board {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(7, 17, 31, 0.12);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.94));
  box-shadow: var(--shadow);
}

.origin-market-board span {
  min-height: 78px;
  display: flex;
  align-items: end;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.field-notes-section {
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.95)),
    var(--navy);
  color: var(--white);
}

.field-notes-section .section-head p {
  color: rgba(255, 255, 255, 0.72);
}

.field-gallery {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(3, minmax(220px, 1fr));
  gap: 18px;
}

.field-photo {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #050b14;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.field-photo.large {
  grid-row: span 3;
  min-height: 720px;
}

.field-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 600ms ease, filter 600ms ease;
  filter: saturate(0.95) contrast(1.04);
}

.field-photo:hover img {
  transform: scale(1.07);
  filter: saturate(1.04) contrast(1.06);
}

.field-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 35%, rgba(5, 11, 20, 0.88));
  pointer-events: none;
}

.field-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 22px;
}

.field-photo figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.field-photo figcaption strong {
  display: block;
  max-width: 620px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.28;
}

.founder-path-section,
.industry-exposure-section,
.ndc-focus-section {
  background: #ffffff;
}

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

.path-step {
  position: relative;
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, #ffffff, #f3f7fb);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
}

.path-step::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 76px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(73, 109, 147, 0.1));
}

.path-step span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 48px;
  border: 1px solid rgba(201, 155, 69, 0.72);
  color: var(--gold);
  font-weight: 800;
}

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

.polymer-observation-section {
  background:
    radial-gradient(circle at 80% 16%, rgba(56, 189, 248, 0.12), transparent 25%),
    linear-gradient(145deg, #050b14, #0b1a2d);
  color: var(--white);
}

.observation-main p {
  color: rgba(255, 255, 255, 0.72);
}

.polymer-gap-list {
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.polymer-gap-list h3 {
  color: var(--white);
  font-size: 30px;
}

.polymer-gap-list ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.polymer-gap-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.74);
}

.polymer-gap-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
}

.india-vision-section {
  background:
    radial-gradient(circle at 24% 28%, rgba(201, 155, 69, 0.12), transparent 25%),
    linear-gradient(145deg, #050b14, #0b1a2d);
  color: var(--white);
}

.vision-panel {
  padding: 56px;
  border: 1px solid rgba(201, 155, 69, 0.25);
  background:
    linear-gradient(135deg, rgba(201, 155, 69, 0.1), rgba(255, 255, 255, 0.055));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.vision-panel h2 {
  max-width: 920px;
}

.vision-panel p {
  max-width: 960px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
}

.founder-belief {
  padding: 34px;
  border: 1px solid rgba(201, 155, 69, 0.32);
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.95));
  color: var(--white);
  box-shadow: var(--shadow);
}

.founder-belief span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-belief h3 {
  margin-top: 20px;
  font-size: 32px;
}

.founder-belief p {
  color: rgba(255, 255, 255, 0.72);
}

.focus-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.focus-cloud span {
  padding: 12px 14px;
  border: 1px solid rgba(73, 109, 147, 0.18);
  background: #f8fafc;
  color: #263241;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.72fr;
  gap: 56px;
  align-items: start;
}

.story-grid.reverse {
  grid-template-columns: 0.72fr 1.08fr;
}

.story-main,
.journey-panel,
.value-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 42px rgba(16, 24, 40, 0.06);
}

.story-main {
  padding: 38px;
}

.story-main p {
  color: var(--muted);
  font-size: 17px;
}

.journey-panel {
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(7, 17, 31, 0.98), rgba(12, 27, 45, 0.95)),
    var(--navy);
  color: var(--white);
}

.journey-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.journey-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.journey-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.founder-values-section {
  background:
    radial-gradient(circle at 16% 24%, rgba(201, 155, 69, 0.12), transparent 27%),
    linear-gradient(145deg, #050b14, #0b1a2d);
  color: var(--white);
}

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

.value-card {
  min-height: 270px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.value-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border: 1px solid rgba(201, 155, 69, 0.72);
  color: var(--gold);
  font-weight: 800;
}

.value-card h3 {
  color: var(--white);
}

.value-card p {
  color: rgba(255, 255, 255, 0.7);
}

.founder-cta-section {
  background: var(--soft);
}

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(7, 17, 31, 0.97);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 12px;
  }

  .nav-dropdown button {
    width: 100%;
    justify-content: space-between;
    padding: 14px 12px;
    color: rgba(255, 255, 255, 0.78);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    padding: 0 0 8px 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-menu a {
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.62);
  }

  .hero {
    min-height: auto;
    padding-top: 132px;
  }

  .hero-grid,
  .founder-hero-grid,
  .story-grid,
  .story-grid.reverse,
  .split,
  .split.reverse,
  .about-band .split,
  .map-grid,
  .global-desk-grid,
  .founder-origin-grid,
  .observation-grid,
  .offer-grid,
  .contact-grid,
  .better-panel {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-panel {
    max-width: 520px;
  }

  .problem-grid,
  .material-grid,
  .service-grid,
  .why-answer-grid,
  .insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-row {
    grid-template-columns: 130px minmax(0, 1fr);
  }

  .case-visual {
    grid-column: 2;
    min-height: 260px;
  }

  .case-work {
    grid-column: 2;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .buyer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

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

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

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

  .field-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .field-photo.large {
    grid-row: auto;
  }
}

@media (max-width: 680px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--container));
  }

  .nav {
    height: 70px;
  }

  .brand small {
    display: none;
  }

  .nav-links {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 118px 0 58px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(7, 17, 31, 0.98), rgba(7, 17, 31, 0.76)),
      linear-gradient(180deg, rgba(7, 17, 31, 0.34), rgba(7, 17, 31, 0.92));
  }

  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-copy,
  .body-copy,
  .section-copy p,
  .section-head p,
  .offer-copy p,
  .cta-box p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .btn {
    width: 100%;
  }

  .btn.secondary {
    margin-left: 0;
  }

  .section {
    padding: 72px 0;
  }

  .problem-grid,
  .material-grid,
  .service-grid,
  .why-answer-grid,
  .insight-grid,
  .value-grid,
  .offer-list,
  .timeline {
    grid-template-columns: 1fr;
  }

  .founder-hero {
    padding: 118px 0 64px;
  }

  .story-main {
    padding: 24px;
  }

  .case-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 18px;
  }

  .case-visual,
  .case-work {
    grid-column: auto;
  }

  .case-visual,
  .case-visual img {
    min-height: 220px;
  }

  .case-index {
    min-height: auto;
    align-content: start;
    gap: 12px;
  }

  .case-work {
    grid-column: auto;
    padding: 18px 0 0;
    background: transparent;
  }

  .world-map {
    min-height: 520px;
  }

  .world-map::before {
    display: none;
  }

  .country-pin {
    width: 74px;
  }

  .country-pin img {
    width: 34px;
    height: 34px;
  }

  .global-proof div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .team-lanes {
    grid-template-columns: 1fr;
  }

  .founder-hero-stats,
  .origin-market-board,
  .founder-path {
    grid-template-columns: 1fr;
  }

  .vision-panel {
    padding: 32px 22px;
  }

  .field-photo,
  .field-photo.large {
    min-height: 420px;
  }

  .service-card,
  .problem-card,
  .why-answer,
  .contact-form {
    padding: 22px;
  }

  .market-map {
    min-height: 760px;
  }

  .live-trade-map::before {
    left: 50%;
    right: auto;
    top: 18%;
    bottom: 18%;
    width: 4px;
    height: auto;
    transform: translateX(-50%);
  }

  .live-trade-map::after,
  .trade-route,
  .map-bg-label {
    display: none;
  }

  .map-point,
  .strength-marker {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-width: 0;
  }

  .market-map {
    display: grid;
    align-content: start;
    gap: 12px;
  }

  .map-point.asia,
  .map-point.europe,
  .marker-one,
  .marker-two,
  .marker-three,
  .marker-four,
  .marker-five,
  .marker-six {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }

  .solution-card {
    min-height: 360px;
    padding: 24px;
  }

  .solution-card h3 {
    margin-top: 190px;
    font-size: 25px;
  }

  .cta-box {
    padding: 34px 22px;
  }

  .portrait-caption {
    position: static;
    margin-top: 12px;
  }

  .direct-founder {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
  }
}
