:root {
  /* Endiio brand — pulled from logo/site */
  --navy-900: #0b2347;
  --navy-800: #143566;
  --navy-700: #1a3a6e;   /* primary navy from logo */
  --navy-600: #2456a0;
  --navy-500: #3b6fb8;
  --navy-300: #8bafd8;
  --navy-100: #dbe7f5;

  --orange-600: #d67d00;
  --orange-500: #f29100;   /* primary orange from logo */
  --orange-400: #f7a52d;
  --orange-200: #fcd9a2;
  --orange-50:  #fff4e3;

  --bg: #ffffff;
  --bg-2: #f4f7fb;
  --bg-3: #e9eef5;
  --surface: #ffffff;
  --line: #dde4ee;
  --line-2: #eaeff6;
  --text: #0b2347;
  --text-2: #44546b;
  --text-3: #8593a8;
  --signal: #16a34a;

  --mono: "DM Mono", ui-monospace, monospace;
  --sans: "Jost", "Noto Sans SC", -apple-system, system-ui, sans-serif;
  --display: "Jost", "Noto Sans SC", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body {
  background: var(--bg); color: var(--text);
  font-family: var(--sans); font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img, svg { max-width: 100%; display: block; }

.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 900px) { .wrap { padding: 0 24px; } }
@media (max-width: 520px) { .wrap { padding: 0 18px; } }

/* Cursor glow */
.glow {
  position: fixed; pointer-events: none;
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,145,0,.12), transparent 60%);
  transform: translate(-50%, -50%); z-index: 1;
  transition: opacity .4s; opacity: 0;
}
body.glow-on .glow { opacity: 1; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; backdrop-filter: saturate(1.3) blur(14px); background: rgba(255,255,255,.9); border-bottom: 1px solid transparent; transition: all .25s; }
.nav.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.98); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 32px; width: auto; display: block; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 14px; color: var(--text-2); font-weight: 500; transition: color .15s; white-space: nowrap; }
.nav-links a:hover { color: var(--navy-700); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-cta-btn { padding: 10px 18px; }

.nav-burger { display: none; width: 40px; height: 40px; border-radius: 8px; position: relative; flex-shrink: 0; }
.nav-burger span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--navy-900); border-radius: 1px; transition: all .25s; }
.nav-burger span:nth-child(1) { top: 14px; }
.nav-burger span:nth-child(2) { top: 19px; }
.nav-burger span:nth-child(3) { top: 24px; }
.nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.lang-toggle { display: inline-flex; padding: 3px; background: var(--bg-2); border-radius: 999px; border: 1px solid var(--line); flex-shrink: 0; }
.lang-toggle button { padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--text-3); letter-spacing: .02em; font-family: var(--mono); white-space: nowrap; line-height: 1.2; }
.lang-toggle button.active { background: var(--surface); color: var(--navy-700); box-shadow: 0 1px 2px rgba(11,35,71,.12); }

@media (max-width: 900px) {
  .nav-burger { display: block; }
  .lang-toggle button { font-size: 11px; padding: 4px 10px; white-space: nowrap; line-height: 1.2; }
  .lang-toggle button { min-width: 32px; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 0; max-height: 0; overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
  }
  .nav-links a { padding: 16px 24px; font-size: 16px; border-bottom: 1px solid var(--line-2); }
  .nav-links a:last-child { border-bottom: none; }
  .nav.menu-open .nav-links { max-height: 400px; padding: 8px 0; }
  .nav-cta-btn { display: none; }
  .nav-cta { gap: 8px; }
  .lang-toggle button { font-size: 11px; padding: 4px 10px; }
}

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 22px; border-radius: 6px; font-size: 14px; font-weight: 600; transition: all .15s; white-space: nowrap; letter-spacing: -.005em; }
.btn-primary { background: var(--orange-500); color: white; }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 10px 22px rgba(242,145,0,.32); }
.btn-ghost { color: var(--navy-700); border: 1.5px solid var(--line); background: var(--surface); }
.btn-ghost:hover { border-color: var(--navy-700); color: var(--navy-700); }
.btn-navy { background: var(--navy-700); color: white; }
.btn-navy:hover { background: var(--navy-800); transform: translateY(-1px); }
.btn .arr { transition: transform .2s; }
.btn:hover .arr { transform: translateX(3px); }

/* Hero */
.hero { position: relative; padding: 72px 0 110px; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f4f7fb 100%); }
@media (max-width: 720px) { .hero { padding: 40px 0 64px; } }
.hero::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(ellipse 900px 500px at 85% 20%, rgba(242,145,0,.08), transparent 60%), radial-gradient(ellipse 700px 400px at 10% 80%, rgba(26,58,110,.06), transparent 60%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  /* font-family: var(--mono);  */
  font-size: 12px; letter-spacing: .02em;
  color: var(--navy-700); padding: 7px 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); font-weight: 500;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 3px rgba(242,145,0,.22); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(242,145,0,.22); } 50% { box-shadow: 0 0 0 7px rgba(242,145,0,.05); } }

.hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 4.8vw, 58px);
  line-height: 1.08; letter-spacing: -.025em;
  font-weight: 600; color: var(--navy-900);
  margin-top: 28px; text-wrap: balance;
  max-width: 100%;
}
.hero h1 .accent { color: var(--orange-500); }

.hero .sub { margin-top: 26px; font-size: 17px; line-height: 1.6; color: var(--text-2); max-width: 540px; text-wrap: pretty; }
.hero-ctas { margin-top: 38px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 48px; display: flex; align-items: center; gap: 24px; padding-top: 28px; border-top: 1px solid var(--line); flex-wrap: wrap; }
.hero-meta-badge { display: inline-flex; align-items: center; gap: 12px; }
.hero-meta-badge .b-box { width: 44px; height: 44px; background: var(--navy-900); color: white; display: grid; place-items: center; font-family: var(--display); font-size: 10px; font-weight: 700; letter-spacing: .04em; line-height: 1; text-align: center; border-radius: 2px; }
.hero-meta-badge .b-box b { color: var(--orange-400); font-size: 15px; display: block; margin-bottom: 2px; }
.hero-meta-badge .b-text { font-size: 12px; color: var(--text-2); line-height: 1.4; }
.hero-meta-badge .b-text b { display: block; color: var(--navy-900); font-size: 13px; }

/* Hero visual — real photo card */
.hero-visual { position: relative; }
.hv-photo-frame {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 40px 80px -30px rgba(11,35,71,.4), 0 0 0 1px rgba(11,35,71,.05);
  aspect-ratio: 1;
}
.hv-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hv-gradient { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,35,71,.1) 0%, rgba(11,35,71,.1) 40%, rgba(11,35,71,.75) 100%); }

.hv-chrome { position: absolute; inset: 0; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; z-index: 3; pointer-events: none; }
.hv-top { display: flex; justify-content: space-between; align-items: flex-start; }
.hv-pin { display: inline-flex; align-items: center; gap: 8px; background: rgba(11,35,71,.72); backdrop-filter: blur(10px); padding: 7px 12px; border-radius: 999px; color: white; font-family: var(--mono); font-size: 10px; letter-spacing: .08em; border: 1px solid rgba(255,255,255,.12); }
.hv-pin i { width: 6px; height: 6px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 8px var(--orange-500); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .3; } }

.hv-callout { position: absolute; pointer-events: auto; }
.hv-callout .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--orange-500); box-shadow: 0 0 0 4px rgba(242,145,0,.3), 0 0 0 1px rgba(255,255,255,.4); position: relative; }
.hv-callout .dot::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid var(--orange-500); animation: ripple 2s infinite; }
@keyframes ripple { 0% { transform: scale(.6); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }
.hv-callout .line { position: absolute; top: 7px; left: 14px; height: 1px; width: 60px; background: linear-gradient(90deg, var(--orange-500), rgba(242,145,0,.3)); }
.hv-callout .label { position: absolute; top: -8px; left: 76px; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); color: var(--navy-900); padding: 4px 10px; border-radius: 4px; font-family: var(--mono); font-size: 10px; letter-spacing: .05em; white-space: nowrap; font-weight: 600; }

.hv-readout { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
@media (max-width: 420px) { .hv-readout { grid-template-columns: repeat(2, 1fr); } .hv-readout .cell:nth-child(3) { grid-column: span 2; } }
.hv-readout .cell { background: rgba(11,35,71,.72); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 11px 13px; }
.hv-readout .k { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }
.hv-readout .v { font-family: var(--display); font-size: 20px; color: white; font-weight: 600; margin-top: 4px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.hv-readout .v span { font-size: 11px; color: rgba(255,255,255,.55); margin-left: 3px; font-weight: 400; }

/* Section common */
.sec-kicker { 
    /* font-family: var(--mono);  */
    font-size: 12px; letter-spacing: .06em; color: var(--orange-500); 
    text-transform: uppercase; font-weight: 600; margin-bottom: 22px; display: inline-flex; align-items: center; gap: 12px; }
.sec-kicker::before { content: ""; width: 28px; height: 1.5px; background: var(--orange-500); }
.sec-title {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.08; letter-spacing: -.025em;
  color: var(--navy-900); text-wrap: balance;
}
.sec-title .accent { color: var(--orange-500); }
.sec-sub { margin-top: 22px; font-size: 17px; line-height: 1.6; color: var(--text-2); max-width: 620px; text-wrap: pretty; }
.sec-head { max-width: 760px; margin-bottom: 64px; }

/* Trust strip — Top 100 banner */
.trust { padding: 0; background: var(--navy-900); position: relative; overflow: hidden; }
.trust-banner { position: relative; height: 200px; overflow: hidden; }
.trust-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.trust-strip { display: flex; align-items: center; justify-content: space-between; padding: 16px 48px; background: var(--navy-800); color: white; gap: 24px; font-size: 13px; }
.trust-strip .item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,.82); }
.trust-strip .item b { color: white; font-weight: 600; }
.trust-strip .item svg { color: var(--orange-400); flex-shrink: 0; }
@media (max-width: 820px) { .trust-strip { flex-wrap: wrap; padding: 14px 20px; } }

/* Value section */
.value { padding: 120px 0; background: var(--bg); border-top: 1px solid var(--line); }
@media (max-width: 720px) { .value { padding: 72px 0; } }
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 960px) { .value-grid { grid-template-columns: 1fr; gap: 48px; } }
.value-copy h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -.025em; color: var(--navy-900); font-weight: 600; text-wrap: balance; }
.value-copy h2 .accent { color: var(--orange-500); }

.value-stats { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 28px; padding-top: 36px; border-top: 1px solid var(--line); }
.vs-num { font-family: var(--display); font-size: 40px; font-weight: 600; color: var(--navy-900); letter-spacing: -.03em; line-height: 1; display: flex; align-items: baseline; gap: 2px; font-variant-numeric: tabular-nums; }
.vs-num .suf { color: var(--orange-500); font-size: .55em; margin-left: 4px; font-weight: 600; }
.vs-label { margin-top: 12px; font-size: 13px; color: var(--text-2); line-height: 1.5; }

/* Photo card — replaces SVG illustration */
.photo-card {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: var(--navy-900);
  box-shadow: 0 40px 80px -30px rgba(11,35,71,.28), 0 0 0 1px rgba(11,35,71,.06);
  aspect-ratio: 1;
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-card .ph-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,35,71,0) 40%, rgba(11,35,71,.82) 100%); }
.photo-card .ph-caption { position: absolute; left: 24px; right: 24px; bottom: 22px; color: white; display: flex; justify-content: space-between; align-items: flex-end; gap: 12px; }
.photo-card .ph-caption h4 { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -.015em; }
.photo-card .ph-caption p { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.66); letter-spacing: .08em; text-transform: uppercase; margin-top: 6px; }
.photo-card .ph-tag { font-family: var(--mono); font-size: 10px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); padding: 5px 10px; border-radius: 4px; letter-spacing: .05em; }

/* Product banner strip */
.product-strip { padding: 0 0 80px; background: var(--bg); }
.product-strip-inner { border-radius: 16px; overflow: hidden; background: linear-gradient(90deg, var(--navy-700), var(--navy-800) 45%, var(--navy-900)); position: relative; display: grid; grid-template-columns: 1.1fr 1fr; align-items: stretch; min-height: 280px; }
@media (max-width: 760px) { .product-strip-inner { grid-template-columns: 1fr; } }
.product-strip-copy { padding: 48px 48px 48px 56px; color: white; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.product-strip-copy .tag { font-family: var(--mono); font-size: 11px; color: var(--orange-400); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; }
.product-strip-copy h3 { font-family: var(--display); font-size: 28px; font-weight: 600; letter-spacing: -.02em; margin-top: 14px; line-height: 1.15; max-width: 440px; }
.product-strip-copy p { margin-top: 12px; color: rgba(255,255,255,.7); font-size: 14px; line-height: 1.6; max-width: 440px; }
.product-strip-photo { position: relative; overflow: hidden; }
.product-strip-photo img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.product-strip-photo::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--navy-900) 0%, transparent 30%); z-index: 1; }

/* Pain points (retrofit comparison) */
.pain { padding: 120px 0; background: var(--bg-2); }
@media (max-width: 720px) { .pain { padding: 72px 0; } }
.pain .sec-head { margin-bottom: 56px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 860px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--surface);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
  gap: 20px; position: relative;
  min-width: 0;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(11,35,71,.15); }
.pain-card.highlight { background: linear-gradient(180deg, var(--orange-50), var(--surface)); border-color: var(--orange-200); }
.pain-card .pill {
  display: inline-flex; align-items: center; align-self: flex-start;
  padding: 5px 10px; border-radius: 999px;
  background: var(--bg-3); color: var(--text-2);
  /* font-family: var(--mono);  */
  font-size: 10px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
}
.pain-card .pill.good { background: var(--orange-500); color: white; }
.pain-card h4 { font-family: var(--display); font-size: 20px; font-weight: 600; letter-spacing: -.015em; color: var(--navy-900); line-height: 1.25; text-wrap: balance; }
.pain-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; }
.pain-card.highlight ul { border-top-color: var(--orange-200); }
.pain-card li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-2); line-height: 1.55; list-style: none; }
.pain-card li::marker { content: none; }
.pain-card li svg { flex-shrink: 0; margin-top: 4px; color: var(--text-3); }
.pain-card.highlight li svg { color: var(--signal); }

/* PM */
.pm { padding: 120px 0; background: var(--bg); border-top: 1px solid var(--line); }
@media (max-width: 720px) { .pm { padding: 72px 0; } }
.pm-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 72px; align-items: center; }
@media (max-width: 960px) { .pm-grid { grid-template-columns: 1fr; gap: 48px; } }
.pm-copy h2 { font-family: var(--display); font-size: clamp(32px, 4vw, 46px); line-height: 1.1; letter-spacing: -.025em; color: var(--navy-900); font-weight: 600; text-wrap: balance; }
.pm-copy h2 .accent { color: var(--orange-500); }
.pm-copy p { margin-top: 20px; color: var(--text-2); font-size: 16px; line-height: 1.7; }
.pm-copy p:first-of-type { margin-top: 28px; }

/* Dashboard */
.dash-frame { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 30px 60px -30px rgba(11,35,71,.2); overflow: hidden; }
.dash-chrome { padding: 12px 14px; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 10px; background: var(--bg-2); }
.dash-chrome .dots { display: flex; gap: 6px; }
.dash-chrome .dots i { width: 10px; height: 10px; border-radius: 50%; }
.dash-chrome .tab { margin-left: 10px; font-family: var(--mono); font-size: 11px; color: var(--text-3); background: var(--surface); padding: 4px 10px; border-radius: 6px; border: 1px solid var(--line); }
.dash-chrome .path { margin-left: auto; font-family: var(--mono); font-size: 11px; color: var(--text-3); }
.dash-body { padding: 24px; }
.dash-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; gap: 12px; }
.dash-head h4 { font-family: var(--display); font-size: 18px; color: var(--navy-900); font-weight: 600; letter-spacing: -.015em; }
.dash-head .meta { font-family: var(--mono); font-size: 10px; color: var(--text-3); margin-top: 5px; letter-spacing: .05em; }
.dash-head .status { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 10px; color: var(--signal); background: rgba(22,163,74,.1); padding: 5px 10px; border-radius: 999px; letter-spacing: .06em; font-weight: 600; }
.dash-head .status i { width: 6px; height: 6px; border-radius: 50%; background: var(--signal); }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 20px; }
@media (max-width: 500px) { .dash-stats { grid-template-columns: repeat(2,1fr); } }
.dash-stat { padding: 12px 14px; background: var(--bg-2); border-radius: 10px; border: 1px solid var(--line-2); }
.dash-stat .k { font-family: var(--mono); font-size: 9px; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; }
.dash-stat .v { font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--navy-900); margin-top: 4px; letter-spacing: -.02em; font-variant-numeric: tabular-nums; }
.dash-stat .v .u { font-size: 11px; color: var(--text-3); font-weight: 400; margin-left: 3px; }
.dash-chart { background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 10px; padding: 16px; position: relative; }
.dash-chart-label { font-family: var(--mono); font-size: 10px; color: var(--text-3); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px; display: flex; justify-content: space-between; font-weight: 500; }
.dash-chart-svg { width: 100%; height: 110px; }

/* Industry selector (within PM block for switching asset types) */
.industry-bar { margin-top: 24px; display: flex; gap: 8px; flex-wrap: wrap; }
.industry-bar button { padding: 9px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface); font-size: 13px; color: var(--text-2); font-weight: 500; transition: all .15s; }
.industry-bar button:hover { border-color: var(--navy-700); color: var(--navy-700); }
.industry-bar button.active { background: var(--navy-700); color: white; border-color: var(--navy-700); }

/* Features */
.features { background: var(--navy-900); color: white; padding: 120px 0; position: relative; overflow: hidden; }
@media (max-width: 720px) { .features { padding: 72px 0; } }
.features::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 20%, rgba(242,145,0,.12), transparent 45%), radial-gradient(circle at 85% 85%, rgba(59,111,184,.15), transparent 45%); pointer-events: none; }
.features .sec-title { color: white; }
.features .sec-title .accent { color: var(--orange-400); }
.features .sec-kicker { color: var(--orange-400); }
.features .sec-kicker::before { background: var(--orange-400); }
.features .sec-sub { color: rgba(255,255,255,.72); }

.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; overflow: hidden; position: relative; z-index: 2; }
@media (max-width: 900px) { .feat-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .feat-grid { grid-template-columns: 1fr; } }
.feat { background: var(--navy-900); padding: 40px 32px 36px; position: relative; transition: background .3s; }
.feat:hover { background: rgba(242,145,0,.05); }
.feat-ico { width: 48px; height: 48px; border-radius: 12px; background: rgba(242,145,0,.14); border: 1px solid rgba(242,145,0,.3); display: grid; place-items: center; margin-bottom: 24px; color: var(--orange-400); }
.feat-ico svg { width: 22px; height: 22px; }
.feat-num { position: absolute; top: 28px; right: 28px; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .08em; font-weight: 600; }
.feat h3 { font-family: var(--display); font-size: 18px; font-weight: 600; color: white; letter-spacing: -.015em; line-height: 1.25; margin-bottom: 12px; text-wrap: balance; }
.feat p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.6; }

/* Contact */
.contact { padding: 120px 0; background: var(--bg); position: relative; overflow: hidden; border-top: 1px solid var(--line); }
@media (max-width: 720px) { .contact { padding: 72px 0; } }
.contact-inner { background: linear-gradient(135deg, var(--navy-800), var(--navy-900) 70%); border-radius: 20px; padding: 72px 64px; position: relative; overflow: hidden; }
@media (max-width: 720px) { .contact-inner { padding: 48px 28px; border-radius: 16px; } }
.contact-inner::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(ellipse at top right, rgba(242,145,0,.2), transparent 55%); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
@media (max-width: 1080px) { .contact-grid { grid-template-columns: 1fr 1fr; } .contact-portrait { display: none; } }
@media (max-width: 760px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact .sec-kicker { color: var(--orange-400); }
.contact .sec-kicker::before { background: var(--orange-400); }
.contact h2 { font-family: var(--display); font-size: clamp(28px, 3.4vw, 40px); font-weight: 600; letter-spacing: -.025em; line-height: 1.1; color: white; text-wrap: balance; }
.contact h2 .accent { color: var(--orange-400); }
.contact p { margin-top: 20px; font-size: 15px; color: rgba(255,255,255,.72); line-height: 1.6; max-width: 380px; text-wrap: pretty; }

.contact-portrait { position: relative; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }
.contact-portrait img { width: 100%; height: 100%; object-fit: cover; }
.contact-portrait .cp-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(180deg, transparent, rgba(11,35,71,.9)); color: white; }
.contact-portrait .cp-caption b { display: block; font-family: var(--display); font-size: 15px; font-weight: 600; }
.contact-portrait .cp-caption span { font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.65); letter-spacing: .06em; text-transform: uppercase; margin-top: 4px; display: block; }

.contact-form { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: 14px; padding: 28px; backdrop-filter: blur(10px); }
.cf-row { margin-bottom: 14px; }
.cf-row label { display: block; font-family: var(--mono); font-size: 10px; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 6px; font-weight: 500; }
.cf-input, .cf-textarea { width: 100%; padding: 11px 14px; background: rgba(0,0,0,.2); border: 1px solid rgba(255,255,255,.1); border-radius: 6px; color: white; font: inherit; font-size: 14px; transition: border-color .15s; font-family: var(--sans); }
.cf-input:focus, .cf-textarea:focus { outline: none; border-color: var(--orange-400); background: rgba(0,0,0,.3); }
.cf-textarea { resize: vertical; min-height: 88px; }
.cf-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 520px) { .cf-row-2 { grid-template-columns: 1fr; } }
.cf-submit { width: 100%; padding: 13px; background: var(--orange-500); color: white; border-radius: 6px; font-weight: 600; font-size: 14px; transition: all .15s; margin-top: 8px; }
.cf-submit:hover { background: var(--orange-600); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(242,145,0,.35); }
.cf-ok { text-align: center; padding: 40px 20px; color: var(--orange-400); font-family: var(--display); font-size: 17px; font-weight: 500; }

/* Footer */
.footer { padding: 56px 0 28px; background: var(--bg); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-col h5 { font-family: var(--mono); font-size: 10px; color: var(--text-3); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 14px; font-weight: 600; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-2); transition: color .15s; }
.footer-col a:hover { color: var(--orange-500); }
.footer-brand img { height: 56px; width: auto; display: block; }
.footer-brand p { margin-top: 18px; font-size: 14px; color: var(--text-2); max-width: 340px; line-height: 1.6; }
.footer-bot { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-3); font-family: var(--mono); flex-wrap: wrap; gap: 12px; letter-spacing: .04em; }
.footer-bot a { color: var(--text-3); }
.footer-bot a:hover { color: var(--orange-500); }

/* Resources / Case studies */
.resources { padding: 120px 0; background: var(--bg-2); border-top: 1px solid var(--line); }
@media (max-width: 720px) { .resources { padding: 72px 0; } }
.res-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
@media (max-width: 900px) { .res-grid { grid-template-columns: 1fr; } }
.res-card {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px 26px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative;
  min-width: 0;
}
.res-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -24px rgba(11,35,71,.18); border-color: var(--orange-200); }
.res-ico { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-50); color: var(--orange-500); display: grid; place-items: center; }
.res-ico svg { width: 22px; height: 22px; }
.res-tag { font-family: var(--mono); font-size: 10px; color: var(--orange-500); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; margin-top: 4px; }
.res-card h4 { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: -.015em; color: var(--navy-900); line-height: 1.3; text-wrap: balance; }
.res-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; flex-grow: 1; }
.res-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 16px; border-top: 1px solid var(--line); margin-top: 6px; }
.res-pages { display: inline-flex; align-items: center; gap: 7px; font-family: var(--mono); font-size: 11px; color: var(--text-3); letter-spacing: .04em; font-weight: 500; }
.res-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: var(--orange-500); font-family: var(--sans); transition: gap .2s; }
.res-card:hover .res-cta { gap: 10px; }

.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.fade-in.in { opacity: 1; transform: translateY(0); }

.tweaks-panel { position: fixed; right: 24px; bottom: 24px; z-index: 100; width: 260px; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; box-shadow: 0 20px 50px -10px rgba(11,35,71,.2); padding: 16px; }
.tweaks-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.tweaks-head b { font-family: var(--display); font-size: 13px; color: var(--navy-900); }
.tweaks-head span { font-family: var(--mono); font-size: 10px; color: var(--text-3); letter-spacing: .08em; }
.tweak-row { margin-bottom: 12px; }
.tweak-row > label { font-size: 11px; color: var(--text-3); font-family: var(--mono); letter-spacing: .06em; text-transform: uppercase; display: block; margin-bottom: 6px; font-weight: 500; }
.tweak-row .seg { display: flex; background: var(--bg-2); border-radius: 6px; padding: 2px; }
.tweak-row .seg button { flex: 1; padding: 6px; font-size: 12px; color: var(--text-3); border-radius: 4px; font-family: var(--mono); }
.tweak-row .seg button.active { background: var(--surface); color: var(--navy-900); box-shadow: 0 1px 2px rgba(0,0,0,.06); }
