/* ===== VARIABLES ===== */
:root {
  --orange: #F5A623;
  --orange-dark: #E09010;
  --orange-glow: rgba(245,166,35,0.25);
  --teal: #5BBCAD;
  --teal-dark: #46A899;
  --teal-glow: rgba(91,188,173,0.25);
  --blue: #4A90D9;
  --blue-glow: rgba(74,144,217,0.25);
  --dark: #080C14;
  --dark-2: #0D1220;
  --dark-3: #111827;
  --dark-4: #1A2235;
  --dark-5: #232D42;
  --light: #F8FAFC;
  --white: #FFFFFF;
  --gray: #64748B;
  --gray-light: #94A3B8;
  --border-dark: rgba(255,255,255,0.07);
  --border-light: #E2E8F0;
  --font: 'Inter', -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: var(--dark); color: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--orange); color: var(--dark); }

/* ===== CONTAINER ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: 10px; font-weight: 600; font-size: 0.92rem;
  cursor: pointer; border: none; white-space: nowrap; transition: all 0.22s var(--ease);
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--orange); color: var(--dark);
  box-shadow: 0 0 0 0 var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--orange-glow);
}
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  background: rgba(255,255,255,0.06); color: var(--white);
  border: 1px solid rgba(255,255,255,0.1);
}
.btn-ghost:hover { background: rgba(255,255,255,0.11); border-color: rgba(255,255,255,0.2); }
.btn-nav {
  background: rgba(255,255,255,0.07); color: var(--white);
  border: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem; padding: 9px 18px;
}
.btn-nav:hover { background: rgba(255,255,255,0.13); border-color: var(--orange); color: var(--orange); }
.btn-outline-dark {
  background: transparent; color: var(--dark);
  border: 1.5px solid #D1D5DB;
}
.btn-outline-dark:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn-lg { padding: 15px 34px; font-size: 0.98rem; border-radius: 12px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION PILL / HEADER ===== */
.section-pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px; border-radius: 100px;
  background: rgba(245,166,35,0.12); color: var(--orange);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(245,166,35,0.2);
  margin-bottom: 18px;
}
.section-pill.light {
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.12);
}
.section-header { text-align: center; max-width: 640px; margin: 0 auto 72px; }
.section-header h2 { font-size: clamp(1.9rem, 3vw, 2.7rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-header p { color: var(--gray-light); font-size: 1.05rem; line-height: 1.7; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.55); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.3s var(--ease);
  padding: 12px 0;
}
.navbar.scrolled {
  background: rgba(8,12,20,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border-dark);
  padding: 8px 0;
}
.navbar-inner { display: flex; align-items: center; gap: 0; height: 52px; }
.brand { display: flex; align-items: center; margin-right: auto; }
.brand-logo { height: 38px; width: auto; }
.nav-links { display: flex; gap: 36px; margin-right: 32px; }
.nav-links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; letter-spacing: -0.01em; }
.nav-links a:hover { color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: 12px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: rgba(255,255,255,0.7); border-radius: 2px; transition: all 0.25s; }
.mobile-menu { display: none; flex-direction: column; gap: 4px; padding: 12px 28px 20px; background: var(--dark-2); border-bottom: 1px solid var(--border-dark); }
.mobile-menu a { padding: 11px 0; color: rgba(255,255,255,0.65); font-weight: 500; border-bottom: 1px solid var(--border-dark); font-size: 0.9rem; }
.mobile-menu a:last-child { border: none; margin-top: 10px; }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; padding: 140px 0 80px; position: relative; overflow: hidden;
  background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
/* Circuit board pattern overlay on hero */
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.6'%3E%3Ccircle cx='10' cy='10' r='2'/%3E%3Ccircle cx='70' cy='10' r='2'/%3E%3Ccircle cx='10' cy='70' r='2'/%3E%3Ccircle cx='70' cy='70' r='2'/%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3Ccircle cx='40' cy='10' r='1.2'/%3E%3Ccircle cx='10' cy='40' r='1.2'/%3E%3Ccircle cx='70' cy='40' r='1.2'/%3E%3Ccircle cx='40' cy='70' r='1.2'/%3E%3Cline x1='10' y1='10' x2='40' y2='10'/%3E%3Cline x1='40' y1='10' x2='40' y2='40'/%3E%3Cline x1='40' y1='40' x2='70' y2='40'/%3E%3Cline x1='70' y1='40' x2='70' y2='70'/%3E%3Cline x1='10' y1='40' x2='10' y2='70'/%3E%3Cline x1='10' y1='70' x2='40' y2='70'/%3E%3Cline x1='70' y1='10' x2='40' y2='10'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 70% at 70% 40%, black 0%, transparent 75%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 0%, transparent 80%);
}
.orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(80px);
}
.orb-1 { width: 500px; height: 500px; background: rgba(245,166,35,0.12); top: -100px; right: 5%; animation: drift 18s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; background: rgba(91,188,173,0.10); bottom: -50px; left: -100px; animation: drift 22s ease-in-out infinite reverse; }
.orb-3 { width: 300px; height: 300px; background: rgba(74,144,217,0.08); top: 40%; right: 20%; animation: drift 15s ease-in-out infinite 5s; }
@keyframes drift { 0%,100%{transform:translate(0,0)} 33%{transform:translate(30px,-30px)} 66%{transform:translate(-20px,20px)} }

.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 28px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px var(--teal); animation: pulse-dot 2.5s infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }

.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.08;
  letter-spacing: -0.04em; color: var(--white); margin-bottom: 22px;
}
.hero-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--orange) 0%, #F7C76D 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { color: rgba(255,255,255,0.55); font-size: 1.08rem; line-height: 1.75; max-width: 480px; margin-bottom: 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.4); font-size: 0.8rem; font-weight: 500; }
.trust-icon { width: 14px; height: 14px; stroke: var(--teal); }
.trust-sep { width: 1px; height: 16px; background: rgba(255,255,255,0.1); }

/* APP FRAME MOCKUP */
.app-frame {
  background: var(--dark-3); border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark);
  box-shadow: 0 40px 120px rgba(0,0,0,0.6), 0 0 0 1px var(--border-dark), inset 0 1px 0 rgba(255,255,255,0.04);
  overflow: visible; position: relative;
  animation: float-frame 8s ease-in-out infinite;
}
@keyframes float-frame { 0%,100%{transform:translateY(0) rotate(0deg)} 50%{transform:translateY(-8px) rotate(0.3deg)} }

.frame-bar {
  display: flex; align-items: center; gap: 10px; padding: 11px 16px;
  background: var(--dark-4); border-bottom: 1px solid var(--border-dark);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.frame-dots { display: flex; gap: 6px; }
.fd { width: 10px; height: 10px; border-radius: 50%; }
.fd.red { background: #FF5F57; } .fd.yellow { background: #FEBC2E; } .fd.green { background: #28C840; }
.frame-addr {
  flex: 1; text-align: center; display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.7rem; color: rgba(255,255,255,0.25); font-family: monospace;
}
.frame-addr svg { stroke: rgba(255,255,255,0.2); }
.frame-content { display: flex; height: 310px; }

/* Sidebar */
.app-sidebar { width: 60px; background: var(--dark-4); padding: 14px 8px; display: flex; flex-direction: column; gap: 4px; border-right: 1px solid var(--border-dark); }
.asb-logo { width: 36px; height: 36px; background: linear-gradient(135deg, var(--orange), #F7C76D); border-radius: 10px; margin-bottom: 16px; }
.asb-nav { display: flex; flex-direction: column; gap: 3px; }
.asb-item { display: flex; align-items: center; gap: 6px; padding: 6px; border-radius: 8px; }
.asb-item.act { background: rgba(245,166,35,0.15); }
.asb-icon { width: 16px; height: 16px; background: rgba(255,255,255,0.15); border-radius: 4px; flex-shrink: 0; }
.asb-item.act .asb-icon { background: var(--orange); }
.asb-label { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; width: 42px; }
.asb-label.short { width: 28px; }
.asb-item.act .asb-label { background: rgba(245,166,35,0.4); }

/* Main area */
.app-main { flex: 1; padding: 14px; display: flex; flex-direction: column; gap: 11px; overflow: hidden; }
.app-topbar { display: flex; justify-content: space-between; align-items: center; }
.atb-title { height: 12px; width: 90px; background: rgba(255,255,255,0.12); border-radius: 4px; }
.atb-actions { display: flex; gap: 6px; }
.atb-btn { height: 22px; border-radius: 6px; }
.atb-btn.teal { width: 44px; background: rgba(91,188,173,0.3); }
.atb-btn.orange { width: 58px; background: var(--orange); opacity: 0.9; }

.app-kpi { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.kpi-card { background: var(--dark-5); border-radius: 10px; padding: 10px; border: 1px solid var(--border-dark); }
.kpi-val { font-size: 0.95rem; font-weight: 700; color: var(--white); }
.kpi-val.orange { color: var(--orange); }
.kpi-val.teal { color: var(--teal); }
.kpi-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.35); margin-top: 3px; }
.kpi-trend { font-size: 0.58rem; margin-top: 5px; font-weight: 600; }
.kpi-trend.up { color: #4ADE80; }
.kpi-trend.down { color: #F87171; }

.app-table { background: var(--dark-5); border-radius: 10px; border: 1px solid var(--border-dark); overflow: hidden; flex: 1; }
.at-head { display: flex; gap: 4px; padding: 7px 10px; border-bottom: 1px solid var(--border-dark); }
.at-col { font-size: 0.58rem; color: rgba(255,255,255,0.2); font-weight: 600; text-transform: uppercase; }
.at-row { display: flex; gap: 4px; padding: 7px 10px; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.03); }
.at-row:last-child { border-bottom: none; }
.w35 { flex: 3.5; } .w20 { flex: 2; } .w25 { flex: 2.5; }
.at-name { height: 7px; background: rgba(255,255,255,0.12); border-radius: 3px; width: 80%; }
.at-name.long { width: 95%; }
.at-tag { height: 6px; background: rgba(255,255,255,0.08); border-radius: 10px; width: 70%; }
.at-tag.short { width: 50%; }
.at-badge { font-size: 0.55rem; font-weight: 700; padding: 2px 7px; border-radius: 100px; display: inline-block; }
.at-badge.teal { background: rgba(91,188,173,0.2); color: var(--teal); }
.at-badge.orange { background: rgba(245,166,35,0.2); color: var(--orange); }
.at-badge.blue { background: rgba(74,144,217,0.2); color: var(--blue); }
.at-mono { font-size: 0.62rem; font-family: monospace; color: rgba(255,255,255,0.4); }

/* Floating cards */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--dark-4); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.fc-1 { bottom: -20px; left: -40px; animation: float-card-1 6s ease-in-out infinite 1s; }
.fc-2 { top: -20px; right: -30px; animation: float-card-2 7s ease-in-out infinite 2s; }
@keyframes float-card-1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes float-card-2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }
.fc-icon-wrap {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fc-icon-wrap.teal { background: rgba(91,188,173,0.2); color: var(--teal); }
.fc-icon-wrap.orange { background: rgba(245,166,35,0.2); color: var(--orange); }
.fc-title { font-size: 0.75rem; font-weight: 700; color: var(--white); }
.fc-sub { font-size: 0.65rem; color: rgba(255,255,255,0.4); margin-top: 2px; }

/* Scroll hint */
.hero-scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 1; }
.scroll-mouse { width: 22px; height: 34px; border: 1.5px solid rgba(255,255,255,0.2); border-radius: 100px; display: flex; justify-content: center; padding-top: 6px; }
.scroll-wheel { width: 3px; height: 7px; background: rgba(255,255,255,0.4); border-radius: 3px; animation: scroll-anim 2s ease-in-out infinite; }
@keyframes scroll-anim { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }

/* ===== STATS BAND ===== */
.stats-band { background: var(--dark-2); border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark); padding: 40px 0; position: relative; overflow: hidden; }
.stats-band::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23F5A623' stroke-width='0.5'%3E%3Cline x1='0' y1='30' x2='60' y2='30'/%3E%3Cline x1='30' y1='0' x2='30' y2='60'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
}
.stats-band .container { position: relative; z-index: 1; }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 2.8rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.stat-suffix { font-size: 1.5rem; font-weight: 700; color: var(--orange); line-height: 1; margin-top: -8px; }
.stat-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 8px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-div { width: 1px; height: 60px; background: var(--border-dark); flex-shrink: 0; }

/* ===== FEATURES ===== */
.features { padding: 110px 0; background: var(--light); }
.features .section-header { margin-bottom: 64px; }
.features .section-header h2 { color: #0F1117; }
.features .section-header p { color: var(--gray); }

.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.feat-card {
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--border-light);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: all 0.3s var(--ease);
}
.feat-card:hover { border-color: rgba(91,188,173,0.4); box-shadow: 0 12px 40px rgba(0,0,0,0.08); transform: translateY(-3px); }
.feat-card.feat-large { grid-column: span 2; }
.feat-card.feat-dark { background: var(--dark-3); border-color: var(--border-dark); }
.feat-card.feat-dark h3 { color: var(--white); }
.feat-card.feat-dark p { color: rgba(255,255,255,0.5); }
.feat-card.feat-dark:hover { border-color: rgba(91,188,173,0.3); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.feat-card.feat-dark .feat-tag { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.08); }

.feat-glow {
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%; filter: blur(40px); pointer-events: none; opacity: 0;
  transition: opacity 0.4s;
}
.feat-card:hover .feat-glow { opacity: 1; }
.feat-glow.orange { background: var(--orange-glow); }
.feat-glow.teal { background: var(--teal-glow); }
.feat-glow.blue { background: var(--blue-glow); }

.feat-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 14px; }
.feat-badge { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: 100px; background: rgba(245,166,35,0.1); color: var(--orange-dark); border: 1px solid rgba(245,166,35,0.2); }
.feat-icon-box {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.feat-icon-box.orange { background: rgba(245,166,35,0.12); color: var(--orange-dark); }
.feat-icon-box.teal { background: rgba(91,188,173,0.12); color: var(--teal-dark); }
.feat-icon-box.blue { background: rgba(74,144,217,0.12); color: var(--blue); }
.feat-card.feat-dark .feat-icon-box.orange { background: rgba(245,166,35,0.15); color: var(--orange); }
.feat-card.feat-dark .feat-icon-box.teal { background: rgba(91,188,173,0.15); color: var(--teal); }
.feat-card.feat-dark .feat-icon-box.blue { background: rgba(74,144,217,0.15); color: var(--blue); }

.feat-card h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 10px; letter-spacing: -0.01em; }
.feat-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
.feat-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.feat-list li { font-size: 0.82rem; color: var(--gray); display: flex; align-items: flex-start; gap: 8px; }
.feat-list li::before { content: ''; width: 14px; height: 14px; flex-shrink: 0; margin-top: 1px; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235BBCAD' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain; }
.feat-footer { display: flex; flex-wrap: wrap; gap: 6px; }
.feat-tag-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.feat-tag { font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; background: #F1F5F9; color: #64748B; border: 1px solid #E2E8F0; }

/* ===== WORKFLOW ===== */
.workflow { padding: 110px 0; background: var(--dark-2); position: relative; overflow: hidden; }
/* Dot matrix pattern on workflow */
.workflow::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg width='32' height='32' viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='16' cy='16' r='1.2' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent 0%, black 15%, black 85%, transparent 100%);
}
.workflow .container { position: relative; z-index: 1; }
.workflow-track { margin-top: 20px; position: relative; }
.wt-line {
  position: absolute; top: 28px; left: calc(10% + 14px); right: calc(10% + 14px);
  height: 1px; background: linear-gradient(90deg, transparent, var(--border-dark) 20%, var(--border-dark) 80%, transparent);
}
.wt-steps { display: flex; align-items: flex-start; gap: 0; }
.wt-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 12px; position: relative; }
.wt-num { font-size: 0.68rem; font-weight: 800; color: var(--orange); letter-spacing: 0.05em; margin-bottom: 12px; }
.wt-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--dark-3); border: 1.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px; z-index: 1;
  transition: all 0.3s;
}
.wt-step:hover .wt-dot { background: var(--orange); border-color: var(--orange); box-shadow: 0 0 20px var(--orange-glow); }
.wt-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: rgba(255,255,255,0.5); transition: all 0.3s; }
.wt-step:hover .wt-icon { background: rgba(245,166,35,0.1); border-color: rgba(245,166,35,0.3); color: var(--orange); }
.wt-body h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 8px; letter-spacing: -0.01em; }
.wt-body p { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.55; }

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-text .section-pill { margin-bottom: 18px; background: rgba(245,166,35,0.1); color: var(--orange-dark); border-color: rgba(245,166,35,0.2); }
.about-text h2 { font-size: clamp(1.8rem, 2.6vw, 2.4rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; color: #0F1117; margin-bottom: 20px; }
.about-text p { color: var(--gray); font-size: 0.97rem; line-height: 1.8; margin-bottom: 16px; }
.about-text strong { color: #111827; }
.about-values { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.av { display: flex; align-items: flex-start; gap: 16px; }
.av-num { font-size: 1.1rem; font-weight: 900; min-width: 32px; margin-top: 1px; }
.av-num.orange { color: var(--orange); }
.av-num.teal { color: var(--teal); }
.av strong { display: block; font-size: 0.9rem; font-weight: 700; color: #111827; margin-bottom: 3px; }
.av span { font-size: 0.85rem; color: var(--gray); }

/* About visual cards */
.about-visual { position: relative; height: 340px; }
.av-card {
  position: absolute;
  background: var(--white); border: 1px solid var(--border-light);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.av-card:hover { transform: translateY(-4px) !important; box-shadow: 0 12px 36px rgba(0,0,0,0.1); }
.av-card-1 { top: 0; left: 0; right: 0; }
.av-card-2 { top: 140px; left: 20px; right: 20px; }
.av-card-3 { bottom: 0; left: 0; right: 0; }
.avc-top { display: flex; align-items: center; gap: 9px; margin-bottom: 10px; }
.avc-icon { width: 26px; height: 26px; border-radius: 7px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.avc-icon.teal { background: rgba(91,188,173,0.12); color: var(--teal-dark); }
.avc-icon.orange { background: rgba(245,166,35,0.12); color: var(--orange-dark); }
.avc-label { font-size: 0.78rem; font-weight: 600; color: var(--gray); }
.avc-val { font-size: 1.15rem; font-weight: 800; color: #111827; letter-spacing: -0.02em; margin-bottom: 10px; }
.avc-val.orange { color: var(--orange-dark); }
.avc-bar { height: 4px; background: #F1F5F9; border-radius: 4px; overflow: hidden; margin-bottom: 10px; }
.avc-fill { height: 100%; background: linear-gradient(90deg, var(--teal), var(--orange)); border-radius: 4px; }
.avc-meta { font-size: 0.73rem; color: var(--gray-light); }
.avc-row { display: flex; align-items: center; }
.avc-col { flex: 1; text-align: center; }
.avc-col-div { width: 1px; height: 28px; background: var(--border-light); }
.avc-mini-lbl { font-size: 0.68rem; color: var(--gray-light); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.avc-mini-val { font-size: 1.2rem; font-weight: 800; color: #111827; letter-spacing: -0.02em; }
.avc-mini-val.teal { color: var(--teal-dark); }
.avc-mini-val.orange { color: var(--orange-dark); }

/* ===== PRICING ===== */
.pricing { padding: 110px 0; background: var(--dark); position: relative; overflow: hidden; }
/* Topographic contour lines on pricing */
.pricing::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='0.7'%3E%3Cellipse cx='100' cy='100' rx='30' ry='20'/%3E%3Cellipse cx='100' cy='100' rx='55' ry='38'/%3E%3Cellipse cx='100' cy='100' rx='80' ry='56'/%3E%3Cellipse cx='100' cy='100' rx='105' ry='74'/%3E%3Cellipse cx='100' cy='100' rx='130' ry='92'/%3E%3C/g%3E%3C/svg%3E");
  background-size: 400px 400px;
  background-position: center;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 80%);
}
.pricing .container { position: relative; z-index: 1; }
.pricing .section-header.dark h2 { color: var(--white); }
.pricing-layout { display: grid; grid-template-columns: 340px 1fr; gap: 48px; align-items: start; }
.pricing-illustration { position: sticky; top: 100px; }
.courier-img { width: 100%; border-radius: var(--radius-lg); display: block; }
.pricing-quote {
  display: flex; align-items: flex-start; gap: 12px; margin-top: 20px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: var(--radius); padding: 16px 18px;
}
.pq-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: rgba(91,188,173,0.15); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.pq-text { font-size: 0.85rem; color: rgba(255,255,255,0.7); font-style: italic; line-height: 1.5; margin-bottom: 5px; }
.pq-author { font-size: 0.75rem; color: rgba(255,255,255,0.3); font-weight: 600; }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: start; }

@media (max-width: 1100px) {
  .pricing-layout { grid-template-columns: 1fr; }
  .pricing-illustration { position: static; display: flex; gap: 24px; align-items: center; }
  .courier-img { width: 260px; flex-shrink: 0; }
  .pricing-quote { flex: 1; margin-top: 0; }
}
@media (max-width: 768px) {
  .pricing-illustration { flex-direction: column; }
  .courier-img { width: 100%; }
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--dark-3); border-radius: var(--radius-lg);
  border: 1px solid var(--border-dark); padding: 36px 32px; position: relative;
  transition: all 0.3s var(--ease);
}
.price-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-3px); }
.price-featured {
  background: var(--white); border-color: transparent;
  box-shadow: 0 0 0 2px var(--orange), 0 24px 64px rgba(245,166,35,0.2);
}
.price-featured:hover { transform: translateY(-5px); box-shadow: 0 0 0 2px var(--orange), 0 32px 80px rgba(245,166,35,0.25); }
.pc-glow { position: absolute; inset: -2px; border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--orange), var(--teal)); opacity: 0.15; pointer-events: none; z-index: -1; }
.pc-badge-top {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--dark); padding: 4px 16px;
  border-radius: 100px; font-size: 0.72rem; font-weight: 800; white-space: nowrap;
  letter-spacing: 0.02em;
}
.pc-plan { font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.price-featured .pc-plan { color: var(--gray); }
.pc-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 12px; }
.pc-cur { font-size: 1.2rem; font-weight: 700; color: var(--white); }
.price-featured .pc-cur { color: var(--dark); }
.pc-amt { font-size: 2.8rem; font-weight: 900; color: var(--white); letter-spacing: -0.04em; line-height: 1; }
.price-featured .pc-amt { color: var(--dark); }
.pc-amt-text { font-size: 2rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; }
.pc-per { font-size: 0.82rem; color: rgba(255,255,255,0.35); margin-left: 2px; align-self: flex-end; }
.price-featured .pc-per { color: var(--gray); }
.pc-desc { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.5; margin-bottom: 28px; }
.price-featured .pc-desc { color: var(--gray); }
.pc-feats { display: flex; flex-direction: column; gap: 11px; margin-bottom: 32px; }
.pc-feats li { display: flex; align-items: center; gap: 10px; font-size: 0.87rem; }
.pc-feats li.ok { color: rgba(255,255,255,0.8); }
.pc-feats li.ok::before { content:''; width:14px;height:14px;flex-shrink:0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%235BBCAD' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain; }
.pc-feats li.no { color: rgba(255,255,255,0.2); }
.pc-feats li.no::before { content:''; width:14px;height:14px;flex-shrink:0; background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center/contain; }
.price-featured .pc-feats li.ok { color: #111827; }
.price-featured .pc-feats li.ok::before { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2346A899' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center/contain; }
.price-featured .pc-feats li.no { color: #9CA3AF; }
.price-featured .pc-feats li.no::before { background: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2.5' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") no-repeat center/contain; }
.price-featured .btn-outline-dark { border-color: #D1D5DB; }

/* ===== CTA BAND ===== */
.cta-band {
  padding: 80px 0; background: var(--dark-2);
  border-top: 1px solid var(--border-dark); border-bottom: 1px solid var(--border-dark);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='%235BBCAD'/%3E%3Ccircle cx='0' cy='0' r='1' fill='%235BBCAD'/%3E%3Ccircle cx='40' cy='0' r='1' fill='%235BBCAD'/%3E%3Ccircle cx='0' cy='40' r='1' fill='%235BBCAD'/%3E%3Ccircle cx='40' cy='40' r='1' fill='%235BBCAD'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}
.cta-orb { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.cta-orb-1 { width: 300px; height: 300px; background: rgba(245,166,35,0.1); top: -100px; left: 10%; }
.cta-orb-2 { width: 250px; height: 250px; background: rgba(91,188,173,0.08); bottom: -80px; right: 10%; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; position: relative; z-index: 1; }
.cta-text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.45); font-size: 0.97rem; }

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--dark); position: relative; overflow: hidden; }
/* Hexagonal grid on contact */
.contact::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='56' height='100' viewBox='0 0 56 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 2 L54 17 L54 47 L28 62 L2 47 L2 17 Z' fill='none' stroke='%23ffffff' stroke-width='0.8'/%3E%3Cpath d='M28 52 L54 67 L54 97 L28 112 L2 97 L2 67 Z' fill='none' stroke='%23ffffff' stroke-width='0.8'/%3E%3C/svg%3E");
  background-size: 56px 100px;
  mask-image: linear-gradient(135deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
.contact .container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(1.7rem, 2.5vw, 2.3rem); font-weight: 800; color: var(--white); letter-spacing: -0.03em; margin-bottom: 14px; }
.contact-info p { color: rgba(255,255,255,0.45); font-size: 0.97rem; line-height: 1.7; margin-bottom: 36px; }
.ci-list { display: flex; flex-direction: column; gap: 16px; }
.ci-row { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color 0.2s; }
.ci-row[href]:hover { color: var(--teal); }
.ci-ico { width: 34px; height: 34px; border-radius: 9px; background: rgba(255,255,255,0.05); border: 1px solid var(--border-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: rgba(255,255,255,0.35); }

.contact-form-wrap { background: var(--dark-3); border-radius: var(--radius-xl); border: 1px solid var(--border-dark); padding: 40px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field label { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.5); }
.form-field input, .form-field textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border-dark);
  border-radius: 10px; padding: 12px 15px; color: var(--white);
  font-family: var(--font); font-size: 0.9rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-field input:focus, .form-field textarea:focus { border-color: rgba(245,166,35,0.5); background: rgba(245,166,35,0.04); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.75rem; color: rgba(255,255,255,0.2); text-align: center; }
.form-success { display: none; align-items: center; justify-content: center; gap: 10px; padding: 14px; border-radius: 10px; background: rgba(91,188,173,0.1); border: 1px solid rgba(91,188,173,0.2); color: var(--teal); font-weight: 600; font-size: 0.9rem; }
.form-success.visible { display: flex; }

/* ===== FOOTER ===== */
.footer { background: var(--dark-2); border-top: 1px solid var(--border-dark); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; padding-bottom: 48px; }
.footer-logo { height: 40px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,0.3); font-size: 0.85rem; line-height: 1.6; }
.footer-piva { font-size: 0.75rem !important; color: rgba(255,255,255,0.18) !important; margin-top: 6px; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.fn-col { display: flex; flex-direction: column; gap: 10px; }
.fn-col strong { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); margin-bottom: 4px; }
.fn-col a { color: rgba(255,255,255,0.4); font-size: 0.87rem; transition: color 0.2s; }
.fn-col a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid var(--border-dark); padding: 18px 0; }
.footer-bottom span { color: rgba(255,255,255,0.18); font-size: 0.78rem; }

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal], [data-reveal-delay] {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal-delay] { transition-delay: 0.15s; }
[data-reveal].revealed, [data-reveal-delay].revealed { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .feat-card.feat-large { grid-column: span 2; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .pricing-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feat-card.feat-large { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .wt-steps { flex-direction: column; }
  .wt-line { display: none; }
  .stats-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
  .stat-div { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .contact-form-wrap { padding: 24px; }
}
