@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --green: #0f8f62;
  --green-dark: #064d38;
  --gold: #d6a338;
  --navy: #071321;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e8edf3;
  --soft: #f7faf8;
  --white: #ffffff;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(15, 143, 98, .18);
}

.luxury-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 40%, #ffffff, #f3f7f4);
  transition: opacity .8s var(--ease), visibility .8s var(--ease);
}

.luxury-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
  transform: translateY(0);
  animation: loaderFloat 1.8s var(--ease) infinite alternate;
}

.loader-mark {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
  letter-spacing: -.5px;
  box-shadow: 0 24px 60px rgba(15, 143, 98, .22);
}

.loader-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--green-dark);
}

.loader-line {
  width: 240px;
  height: 6px;
  margin: 22px auto 0;
  background: #dbe6df;
  border-radius: 999px;
  overflow: hidden;
}

.loader-line span {
  display: block;
  width: 48%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  animation: loadingLine 1.15s var(--ease) infinite;
}

.ambient-light {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .24;
  animation: ambientDrift 12s var(--ease) infinite alternate;
}

.ambient-one {
  width: 380px;
  height: 380px;
  background: var(--green);
  left: -140px;
  top: 16%;
}

.ambient-two {
  width: 420px;
  height: 420px;
  background: var(--gold);
  right: -180px;
  bottom: 12%;
  animation-delay: 1s;
}

.cursor-aura {
  position: fixed;
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,143,98,.13), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: .9;
  will-change: transform;
}

.premium-nav {
  z-index: 1000;
  padding: 15px 0;
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(232,237,243,.76);
  backdrop-filter: blur(22px);
  transition: padding .4s var(--ease), box-shadow .4s var(--ease), background .4s var(--ease);
}

.premium-nav.scrolled {
  padding: 9px 0;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 54px rgba(7,19,33,.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--navy);
  font-weight: 900;
  letter-spacing: -.4px;
}

.navbar-brand:hover { color: var(--navy); }

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-size: 13px;
  box-shadow: 0 14px 30px rgba(15,143,98,.22);
}

.nav-link {
  color: var(--ink);
  font-weight: 700;
  margin: 0 4px;
  position: relative;
  transition: color .3s var(--ease);
}

.nav-link:hover { color: var(--green); }

.nav-link::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 4px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

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

.btn-premium,
.btn-soft {
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  border: 0;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease);
}

.btn-premium {
  color: #fff !important;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 18px 46px rgba(15,143,98,.25);
}

.btn-premium:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 62px rgba(15,143,98,.32);
}

.btn-soft {
  background: rgba(7,19,33,.055);
  color: var(--navy);
  border: 1px solid rgba(7,19,33,.08);
}

.btn-soft:hover {
  background: rgba(7,19,33,.09);
  transform: translateY(-3px);
}

.premium-section {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 16%, rgba(15,143,98,.12), transparent 30%),
    radial-gradient(circle at 80% 20%, rgba(214,163,56,.12), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbf9 100%);
}

.hero-container { position: relative; z-index: 3; }

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .45;
  background-image:
    linear-gradient(rgba(7,19,33,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,19,33,.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 88%);
  transform-origin: center;
  animation: gridBreath 12s var(--ease) infinite alternate;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background:
    repeating-radial-gradient(circle at 20% 20%, rgba(15,143,98,.04) 0 1px, transparent 1px 5px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(15,143,98,.09);
  border: 1px solid rgba(15,143,98,.13);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 13px;
}

.hero-title {
  margin-top: 22px;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: .92;
  letter-spacing: -5px;
  font-weight: 900;
  color: var(--navy);
}

.hero-title span {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text {
  max-width: 600px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 1.22rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

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

.micro-trust span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  border: 1px solid var(--line);
  font-weight: 800;
  font-size: 13px;
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(7,19,33,.05);
}

.premium-dashboard {
  border-radius: 38px;
  padding: 32px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(232,237,243,.95);
  backdrop-filter: blur(28px);
  box-shadow:
    0 40px 110px rgba(7,19,33,.13),
    inset 0 1px 0 rgba(255,255,255,.9);
  transform-style: preserve-3d;
  animation: dashboardFloat 6s var(--ease) infinite;
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-kicker {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.dashboard-top h4 {
  font-weight: 900;
  margin: 4px 0 0;
  letter-spacing: -.5px;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(15,143,98,.08);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 13px;
}

.live-badge span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 7px rgba(34,197,94,.13);
  animation: livePulse 1.8s ease-in-out infinite;
}

.route-canvas {
  position: relative;
  height: 285px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 22% 76%, rgba(15,143,98,.14), transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(214,163,56,.16), transparent 24%),
    linear-gradient(135deg, #fbfdfb, #f3f8f5);
}

.route-svg {
  width: 100%;
  height: 100%;
}

.route-path {
  fill: none;
  stroke-linecap: round;
}

.route-shadow {
  stroke: rgba(15,143,98,.12);
  stroke-width: 12;
}

.route-main {
  stroke: url(#routeGradient);
  stroke-width: 4;
  stroke-dasharray: 820;
  stroke-dashoffset: 820;
  animation: drawRoute 2.4s var(--ease) forwards .9s, routePulse 4s ease-in-out infinite 3s;
}

.node {
  fill: #fff;
  stroke: var(--green);
  stroke-width: 5;
  opacity: 0;
  animation: nodePop .7s var(--ease) forwards 1.7s;
}

.node-b { stroke: var(--gold); animation-delay: 1.9s; }
.node-c { animation-delay: 2.1s; }

.route-svg text {
  font-size: 18px;
  font-weight: 900;
  fill: var(--navy);
  opacity: 0;
  animation: fadeUp .8s var(--ease) forwards 2s;
}

.cargo-chip {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 18px 38px rgba(7,19,33,.08);
  font-weight: 900;
  font-size: 13px;
  animation: chipFloat 4s var(--ease) infinite;
}

.chip-a { left: 26px; top: 28px; }
.chip-b { right: 28px; top: 108px; animation-delay: .5s; }
.chip-c { left: 52%; bottom: 26px; animation-delay: 1s; }

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.metric-card {
  padding: 18px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(7,19,33,.08);
}

.metric-card small {
  display: block;
  color: var(--muted);
  font-weight: 700;
}

.metric-card strong {
  display: block;
  margin-top: 5px;
  font-size: .95rem;
}

.readiness {
  margin-top: 22px;
  font-weight: 800;
}

.premium-progress {
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: #dce7e1;
  overflow: hidden;
}

.premium-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  animation: progressFill 1.8s var(--ease) forwards 1.5s;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 28px;
  width: 26px;
  height: 42px;
  border-radius: 999px;
  border: 2px solid rgba(7,19,33,.2);
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
  animation: scrollCue 1.8s var(--ease) infinite;
}

.brand-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  padding: 20px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.ticker-flow {
  display: flex;
  width: max-content;
  gap: 52px;
  animation: tickerMove 28s linear infinite;
}

.ticker-flow span {
  color: rgba(7,19,33,.35);
  font-weight: 900;
  font-size: 22px;
  white-space: nowrap;
}

.stats {
  padding: 70px 0;
  background: #fff;
}

.stat-panel {
  padding: 34px 24px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 24px 70px rgba(7,19,33,.055);
  transition: box-shadow .45s var(--ease);
}

.stat-panel h3 {
  font-weight: 900;
  color: var(--green);
  font-size: 2.4rem;
  letter-spacing: -1px;
}

.stat-panel p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.products,
.markets,
.documents {
  padding: 110px 0;
  background: #fff;
}

.process,
.contact {
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fbf9, #fff);
}

.section-head {
  max-width: 780px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-head h2,
.markets h2,
.contact h2 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -2.5px;
  color: var(--navy);
}

.section-head p,
.markets p,
.contact p {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
  margin-top: 18px;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
}

.product-feature {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 520px;
  padding: 42px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 10%, rgba(214,163,56,.18), transparent 30%),
    linear-gradient(135deg, #0b3b2b, #0f8f62);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(15,143,98,.20);
}

.product-feature::after {
  content: "";
  position: absolute;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 50%;
  right: -150px;
  bottom: -150px;
  animation: rotateSlow 28s linear infinite;
}

.feature-label {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.18);
  font-weight: 900;
  font-size: 13px;
}

.product-feature h3 {
  margin-top: 26px;
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -2px;
}

.product-feature p {
  margin-top: 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.75;
}

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

.product-feature li {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.13);
  font-weight: 800;
}

.product-list {
  display: grid;
  gap: 16px;
}

.product-row {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 28px;
  min-height: 95px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(7,19,33,.045);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.product-row:hover {
  transform: translateY(-7px) scale(1.01);
  border-color: rgba(15,143,98,.26);
  box-shadow: 0 28px 74px rgba(7,19,33,.08);
}

.product-row span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(15,143,98,.09);
  color: var(--green-dark);
  font-weight: 900;
}

.product-row strong {
  font-size: 1.1rem;
  font-weight: 900;
}

.product-row small {
  color: var(--muted);
  font-weight: 800;
}

.workflow-board {
  display: grid;
  grid-template-columns: 1fr 44px 1fr 44px 1fr 44px 1fr;
  align-items: center;
  gap: 10px;
}

.workflow-card {
  min-height: 250px;
  padding: 30px;
  border-radius: 32px;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  box-shadow: 0 24px 64px rgba(7,19,33,.06);
  backdrop-filter: blur(16px);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}

.workflow-card:hover {
  transform: translateY(-9px);
  box-shadow: 0 34px 90px rgba(7,19,33,.09);
}

.workflow-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
  margin-bottom: 24px;
}

.workflow-card h4 {
  font-weight: 900;
  letter-spacing: -.5px;
}

.workflow-card p {
  color: var(--muted);
  line-height: 1.65;
}

.workflow-line {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  position: relative;
  overflow: hidden;
}

.workflow-line::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 100%;
  background: rgba(255,255,255,.9);
  filter: blur(5px);
  animation: shineLine 2s linear infinite;
}

.market-orb {
  position: relative;
  height: 500px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15,143,98,.12), transparent 32%),
    linear-gradient(135deg, #fbfdfb, #f4f8f5);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(7,19,33,.07);
  overflow: hidden;
}

.market-orb::before,
.market-orb::after {
  content: "";
  position: absolute;
  inset: 75px;
  border: 1px dashed rgba(15,143,98,.22);
  border-radius: 50%;
  animation: rotateSlow 35s linear infinite;
}

.market-orb::after {
  inset: 130px;
  animation-direction: reverse;
  animation-duration: 25s;
}

.market-center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 138px;
  border-radius: 42px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 28px 70px rgba(15,143,98,.26);
}

.market-dot {
  position: absolute;
  z-index: 4;
  padding: 13px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  font-weight: 900;
  box-shadow: 0 18px 46px rgba(7,19,33,.08);
  animation: marketFloat 5s var(--ease) infinite;
}

.md1 { left: 12%; top: 16%; }
.md2 { right: 12%; top: 19%; animation-delay: .4s; }
.md3 { left: 8%; bottom: 18%; animation-delay: .8s; }
.md4 { right: 14%; bottom: 18%; animation-delay: 1.2s; }
.md5 { left: 50%; top: 8%; transform: translateX(-50%); animation-delay: 1.6s; }
.md6 { left: 50%; bottom: 8%; transform: translateX(-50%); animation-delay: 2s; }

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

.doc-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(7,19,33,.045);
  font-weight: 900;
  transition: transform .45s var(--ease), border-color .45s var(--ease);
}

.doc-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15,143,98,.22);
}

.contact-shell {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  padding: 48px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 10% 12%, rgba(15,143,98,.12), transparent 30%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: 0 34px 100px rgba(7,19,33,.08);
}

.contact-lines {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-lines span {
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fbf9;
  border: 1px solid var(--line);
  font-weight: 800;
}

.premium-form input,
.premium-form select,
.premium-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 17px 18px;
  outline: 0;
  background: #fbfdfb;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
}

.premium-form input:focus,
.premium-form select:focus,
.premium-form textarea:focus {
  border-color: rgba(15,143,98,.42);
  box-shadow: 0 0 0 6px rgba(15,143,98,.09);
  background: #fff;
}

footer {
  position: relative;
  z-index: 2;
  background: var(--navy);
  color: #fff;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(62px) scale(.985);
  filter: blur(8px);
  transition:
    opacity 1.05s var(--ease),
    transform 1.05s var(--ease),
    filter 1.05s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stagger-1 { transition-delay: .08s; }
.stagger-2 { transition-delay: .16s; }
.stagger-3 { transition-delay: .24s; }
.stagger-4 { transition-delay: .32s; }

.magnetic { display: inline-flex; will-change: transform; }
.tilt-panel { will-change: transform; }

@keyframes loaderFloat {
  from { transform: translateY(4px); }
  to { transform: translateY(-8px); }
}

@keyframes loadingLine {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(230%); }
}

@keyframes ambientDrift {
  0% { transform: translate3d(0,0,0) scale(1); }
  100% { transform: translate3d(40px,-35px,0) scale(1.12); }
}

@keyframes gridBreath {
  0% { transform: scale(1); opacity: .36; }
  100% { transform: scale(1.05); opacity: .55; }
}

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

@keyframes livePulse {
  0%,100% { box-shadow: 0 0 0 7px rgba(34,197,94,.13); }
  50% { box-shadow: 0 0 0 15px rgba(34,197,94,.03); }
}

@keyframes drawRoute {
  to { stroke-dashoffset: 0; }
}

@keyframes routePulse {
  0%,100% { filter: drop-shadow(0 0 0 rgba(15,143,98,0)); }
  50% { filter: drop-shadow(0 0 10px rgba(15,143,98,.25)); }
}

@keyframes nodePop {
  from { opacity: 0; transform: scale(.6); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes progressFill {
  to { width: 94%; }
}

@keyframes scrollCue {
  0% { transform: translate(-50%,0); opacity: .3; }
  40% { opacity: 1; }
  100% { transform: translate(-50%,18px); opacity: 0; }
}

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

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

@keyframes shineLine {
  from { left: -90px; }
  to { left: 100%; }
}

@keyframes marketFloat {
  0%,100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

@media (max-width: 991px) {
  .hero { padding-top: 90px; }
  .hero-title { letter-spacing: -2.5px; }
  .dashboard-metrics,
  .product-showcase,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .product-feature {
    position: relative;
    top: 0;
    min-height: auto;
  }

  .workflow-board {
    grid-template-columns: 1fr;
  }

  .workflow-line {
    width: 4px;
    height: 40px;
    margin: auto;
  }

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

  .market-orb {
    height: 430px;
  }
}

@media (max-width: 575px) {
  .cursor-aura { display: none; }
  .hero-title {
    font-size: 3.2rem;
    letter-spacing: -2px;
  }

  .premium-dashboard,
  .contact-shell {
    padding: 24px;
    border-radius: 30px;
  }

  .route-canvas {
    height: 230px;
  }

  .dashboard-metrics,
  .doc-grid {
    grid-template-columns: 1fr;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .market-dot {
    font-size: 12px;
    padding: 10px 12px;
  }

  .market-center {
    width: 110px;
    height: 110px;
    border-radius: 32px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

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

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


/* =========================================================
   FIXED HERO SPACING - PREVENT NAVBAR OVERLAP
   Updated for Indus Roots Global
   ========================================================= */

.hero {
  min-height: 100vh !important;
  padding-top: 128px !important;
  padding-bottom: 72px !important;
  display: flex !important;
  align-items: center !important;
}

.hero-container {
  width: 100%;
}

.hero-row {
  min-height: calc(100vh - 200px) !important;
  align-items: center !important;
}

.hero-copy {
  padding-top: 0 !important;
}

.hero .eyebrow {
  margin-top: 0 !important;
  margin-bottom: 8px !important;
}

.hero-title {
  margin-top: 20px !important;
  font-size: clamp(3rem, 5.45vw, 5.55rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -4px !important;
}

.hero-text {
  margin-top: 24px !important;
}

.premium-dashboard {
  margin-top: 0 !important;
}

.scroll-cue {
  bottom: 18px !important;
}

/* Desktop height safety for laptop screens */
@media (min-width: 992px) and (max-height: 820px) {
  .hero {
    padding-top: 118px !important;
    padding-bottom: 55px !important;
  }

  .hero-title {
    font-size: clamp(3rem, 5vw, 5.15rem) !important;
    line-height: 0.97 !important;
  }

  .route-canvas {
    height: 250px !important;
  }

  .premium-dashboard {
    padding: 28px !important;
  }

  .hero-text {
    font-size: 1.08rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    margin-top: 24px !important;
  }

  .micro-trust {
    margin-top: 22px !important;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 70px !important;
    display: block !important;
  }

  .hero-row {
    min-height: auto !important;
  }

  .hero-title {
    font-size: clamp(3rem, 9vw, 5rem) !important;
    line-height: 1 !important;
    letter-spacing: -3px !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .hero {
    padding-top: 110px !important;
    padding-bottom: 55px !important;
  }

  .hero-title {
    font-size: 3rem !important;
    line-height: 1.02 !important;
    letter-spacing: -2px !important;
  }

  .hero-text {
    font-size: 1rem !important;
  }
}

/* =========================================================
   2026 SEO + EXPORT COMPANY REFRESH
   Broader export-company look, richer motion, cursor effects
   ========================================================= */

html {
  scroll-padding-top: 110px;
}

body {
  cursor: none;
}

a, button, .magnetic, .tilt-panel, input, select, textarea {
  cursor: none !important;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 99998;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(15, 143, 98, .55);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 143, 98, .45);
  border-radius: 50%;
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}

body.cursor-active .cursor-ring {
  width: 58px;
  height: 58px;
  border-color: rgba(214, 163, 56, .65);
  background: rgba(214, 163, 56, .08);
}

.hero {
  min-height: 100vh !important;
  padding-top: 128px !important;
  padding-bottom: 72px !important;
  display: flex !important;
  align-items: center !important;
}

.hero-container { width: 100%; }
.hero-row { min-height: calc(100vh - 200px) !important; align-items: center !important; }
.hero-copy { padding-top: 0 !important; }
.hero .eyebrow { margin-top: 0 !important; margin-bottom: 8px !important; }
.hero-title { margin-top: 20px !important; font-size: clamp(3rem, 5.25vw, 5.4rem) !important; line-height: 0.98 !important; letter-spacing: -4px !important; }
.hero-text { margin-top: 24px !important; }

.hero-orb {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  pointer-events: none;
  border: 1px solid rgba(15, 143, 98, .12);
  animation: rotateSlow 42s linear infinite;
}

.hero-orb::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--gold);
  left: 50%;
  top: -6px;
  box-shadow: 0 0 22px rgba(214, 163, 56, .45);
}

.hero-orb-a { width: 560px; height: 560px; right: -230px; top: 120px; }
.hero-orb-b { width: 360px; height: 360px; left: -160px; bottom: 70px; animation-direction: reverse; }

.premium-dashboard {
  margin-top: 0 !important;
  overflow: hidden;
}

.portfolio-canvas {
  position: relative;
  height: 340px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 50%, rgba(15,143,98,.16), transparent 25%),
    radial-gradient(circle at 18% 18%, rgba(214,163,56,.12), transparent 22%),
    linear-gradient(135deg, #fbfdfb, #f3f8f5);
}

.portfolio-center {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 36px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 26px 70px rgba(15,143,98,.26);
}

.portfolio-center strong,
.portfolio-center small { display: block; }
.portfolio-center small { color: rgba(255,255,255,.78); font-weight: 800; margin-top: -28px; }

.route-web {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.route-web path {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  animation: drawRoute 2.8s var(--ease) forwards .75s, routePulse 4s ease-in-out infinite 3s;
  opacity: .7;
}

.product-bubble {
  position: absolute;
  z-index: 6;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(7,19,33,.08);
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  animation: bubbleFloat 5s var(--ease) infinite;
}

.bubble-1 { left: 7%; top: 18%; }
.bubble-2 { right: 9%; top: 18%; animation-delay: .35s; }
.bubble-3 { left: 8%; bottom: 19%; animation-delay: .7s; }
.bubble-4 { right: 8%; bottom: 20%; animation-delay: 1.05s; }
.bubble-5 { left: 50%; top: 7%; transform: translateX(-50%); animation-delay: 1.4s; }
.bubble-6 { left: 50%; bottom: 7%; transform: translateX(-50%); animation-delay: 1.75s; }

@keyframes bubbleFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -12px; }
}

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

.product-card-v2 {
  position: relative;
  min-height: 310px;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 8%, rgba(15,143,98,.12), transparent 28%),
    linear-gradient(180deg, #fff, #f8fbf9);
  box-shadow: 0 18px 54px rgba(7,19,33,.045);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}

.product-card-v2::before {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(214,163,56,.12);
  transition: transform .55s var(--ease);
}

.product-card-v2:hover {
  border-color: rgba(15,143,98,.28);
  box-shadow: 0 32px 84px rgba(7,19,33,.09);
}

.product-card-v2:hover::before { transform: scale(1.45); }

.product-card-v2 span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(15,143,98,.09);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 24px;
}

.product-card-v2 h3 {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -.65px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.product-card-v2 p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 18px;
}

.product-card-v2 small {
  display: inline-block;
  font-weight: 900;
  color: var(--green-dark);
  background: rgba(15,143,98,.08);
  border: 1px solid rgba(15,143,98,.12);
  border-radius: 999px;
  padding: 8px 11px;
}

.quality {
  padding: 120px 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(15,143,98,.09), transparent 28%),
    linear-gradient(180deg, #f8fbf9, #fff);
}

.sticky-copy {
  position: sticky;
  top: 130px;
}

.sticky-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -2px;
}

.sticky-copy p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

.quality-stack {
  display: grid;
  gap: 22px;
}

.quality-card {
  min-height: 220px;
  padding: 34px;
  border-radius: 34px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--line);
  box-shadow: 0 22px 70px rgba(7,19,33,.055);
  backdrop-filter: blur(16px);
}

.quality-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  font-weight: 900;
  margin-bottom: 22px;
}

.quality-card h3 {
  font-weight: 900;
  letter-spacing: -.7px;
}

.quality-card p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0;
}

.reveal {
  transform: translateY(72px) scale(.98);
  filter: blur(10px);
}

.reveal.in-view {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.scroll-story .quality-card:nth-child(2) { transition-delay: .12s; }
.scroll-story .quality-card:nth-child(3) { transition-delay: .24s; }
.scroll-story .quality-card:nth-child(4) { transition-delay: .36s; }

@media (min-width: 992px) and (max-height: 820px) {
  .hero { padding-top: 118px !important; padding-bottom: 55px !important; }
  .hero-title { font-size: clamp(3rem, 4.8vw, 5rem) !important; line-height: .99 !important; }
  .portfolio-canvas { height: 285px; }
  .premium-dashboard { padding: 28px !important; }
  .hero-text { font-size: 1.05rem !important; line-height: 1.65 !important; }
  .hero-actions { margin-top: 24px !important; }
  .micro-trust { margin-top: 22px !important; }
}

@media (max-width: 1199px) {
  .product-grid-v2 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  body, a, button, .magnetic, .tilt-panel, input, select, textarea { cursor: auto !important; }
  .cursor-dot, .cursor-ring, .cursor-aura { display: none; }
  .hero { min-height: auto !important; padding-top: 120px !important; padding-bottom: 70px !important; display: block !important; }
  .hero-row { min-height: auto !important; }
  .hero-title { font-size: clamp(3rem, 9vw, 5rem) !important; line-height: 1 !important; letter-spacing: -3px !important; }
  .product-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .sticky-copy { position: relative; top: 0; }
  .portfolio-canvas { height: 300px; }
}

@media (max-width: 575px) {
  .hero { padding-top: 110px !important; padding-bottom: 55px !important; }
  .hero-title { font-size: 2.72rem !important; line-height: 1.03 !important; letter-spacing: -2px !important; }
  .hero-text { font-size: 1rem !important; }
  .product-grid-v2 { grid-template-columns: 1fr; }
  .portfolio-canvas { height: 270px; }
  .product-bubble { font-size: 11px; padding: 8px 10px; }
  .portfolio-center { width: 96px; height: 96px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  body, a, button, .magnetic, .tilt-panel, input, select, textarea { cursor: auto !important; }
  .cursor-dot, .cursor-ring, .cursor-aura { display: none; }
}


/* ===== MULTI-PAGE SEO WEBSITE STYLES ===== */
.sub-hero{min-height:520px;padding-top:150px;padding-bottom:80px;display:flex;align-items:center;overflow:hidden;background:radial-gradient(circle at 20% 16%,rgba(15,143,98,.12),transparent 30%),radial-gradient(circle at 80% 20%,rgba(214,163,56,.12),transparent 28%),linear-gradient(180deg,#ffffff 0%,#f8fbf9 100%)}
.sub-hero-inner{max-width:920px;position:relative;z-index:3}
.sub-hero h1{margin-top:22px;font-size:clamp(2.8rem,6vw,5.8rem);line-height:.98;letter-spacing:-4px;font-weight:900;color:var(--navy)}
.sub-hero p{max-width:760px;margin-top:24px;color:var(--muted);font-size:1.18rem;line-height:1.75}
.text-link{display:inline-block;margin-top:18px;color:var(--green-dark);font-weight:900;text-decoration:none}
.text-link:hover{color:var(--green)}
.detail-layout{display:grid;grid-template-columns:1.05fr .95fr;gap:34px;align-items:start}
.detail-panel{padding:42px;border-radius:38px;background:radial-gradient(circle at 85% 10%,rgba(214,163,56,.18),transparent 30%),linear-gradient(135deg,#0b3b2b,#0f8f62);color:#fff;box-shadow:0 34px 90px rgba(15,143,98,.20)}
.detail-panel h2{font-size:clamp(2.2rem,4vw,4rem);line-height:1;letter-spacing:-2px;font-weight:900;margin-top:22px}
.detail-panel p{color:rgba(255,255,255,.85);line-height:1.75;margin-top:18px}
.detail-panel ul{list-style:none;padding:0;margin:28px 0;display:grid;gap:12px}
.detail-panel li{padding:15px 16px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.13);font-weight:800}
@media(max-width:991px){.sub-hero{min-height:auto;padding-top:125px}.detail-layout{grid-template-columns:1fr}.sub-hero h1{letter-spacing:-2px}}
