/* ============================================================
   Tragent — design system
   Accent: #C2420D — burnt orange. Used as a scalpel.
   Two themes: [data-theme="dark"] (default) | [data-theme="light"]
   ============================================================ */

:root {
  /* Shared tokens — never change between themes */
  --green: #4cb782;
  --amber: #d4a72c;
  --accent: #C2420D;
  --accent-hover: #d24b13;
  --accent-rgb: 194, 66, 13;
  --radius: 10px;
  --radius-lg: 14px;
  --font: "Inter Tight", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --container: 1664px;
  --gutter: clamp(24px, 7vw, 144px);
}

[data-theme="dark"] {
  --accent-bright: #C2420D;
  --bg: #151515;
  --bg-raised: #181818;
  --bg-card: #1b1b1b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f8f8;
  --text-secondary: #8a8f98;
  --text-tertiary: #62666d;
  --btn-primary-bg: #f0f0f0;
  --btn-primary-bg-hover: #ffffff;
  --btn-primary-text: #0a0b0c;
  --logo-stroke: #fff;
  /* Theme layout helpers */
  --nav-bg-scrolled: rgba(18, 18, 18, 0.82);
  --btn-primary-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 1px 3px rgba(0, 0, 0, 0.4);
  --btn-ghost-hover-bg: rgba(255, 255, 255, 0.04);
  --btn-ghost-hover-border: rgba(255, 255, 255, 0.26);
  --shadow-conv: 0 48px 80px rgba(0, 0, 0, 0.60), 0 8px 24px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --selection-bg: rgba(194, 66, 13, 0.35);
}

[data-theme="light"] {
  --accent-bright: #C2420D;
  --bg: #FFFFFF;
  --bg-raised: #FFFFFF;
  --bg-card: #FFFFFF;
  --border: #E5E5E5;
  --border-strong: #CCCCCC;
  --text: #0D0D0D;
  --text-secondary: #5A5A5A;
  --text-tertiary: #999999;
  --btn-primary-bg: #0D0D0D;
  --btn-primary-bg-hover: #1f1f1f;
  --btn-primary-text: #FFFFFF;
  --logo-stroke: #0D0D0D;
  /* Theme layout helpers */
  --nav-bg-scrolled: rgba(248, 247, 247, 0.92);
  --btn-primary-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  --btn-ghost-hover-bg: rgba(0, 0, 0, 0.04);
  --btn-ghost-hover-border: rgba(0, 0, 0, 0.2);
  --shadow-conv: 0 24px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.06);
  --selection-bg: rgba(194, 66, 13, 0.15);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

::selection { background: var(--selection-bg); }

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.logo-mark {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark img {
  width: 24px;
  height: 30px;
  object-fit: contain;
}

/* ============ Typography ============ */

h1, h2, h3 { font-weight: 500; letter-spacing: -0.02em; }

.hero-title {
  font-size: clamp(33px, 3.3vw, 53px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 480px;
}

.accent-text {
  background: linear-gradient(135deg, #E8541A 0%, #C2420D 45%, #FF6B35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title .accent-text {
  background: linear-gradient(135deg, #FF6B35 0%, #C2420D 50%, #E8541A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-head h2, .final-cta h2 {
  font-size: clamp(33px, 3.3vw, 53px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head h2 .dim { color: var(--text-secondary); }
.section-head h2 .accent-text { color: var(--accent-bright); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 510;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}

.section-sub {
  color: var(--text-secondary);
  font-size: 17px;
  max-width: 560px;
  margin-top: 20px;
}

/* ============ Buttons ============ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 510;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.16s var(--ease), border-color 0.16s var(--ease),
    color 0.16s var(--ease), transform 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: var(--btn-primary-shadow);
}
.btn-primary:hover {
  background: var(--btn-primary-bg-hover, var(--accent-hover));
  transform: translateY(0);
  box-shadow: var(--btn-primary-shadow);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover {
  color: var(--text);
  border-color: var(--btn-ghost-hover-border);
  background: var(--btn-ghost-hover-bg);
}

.btn-sm { font-size: 13px; padding: 7px 14px; }
.btn-lg { font-size: 15px; padding: 12px 22px; }
.btn-block { width: 100%; justify-content: center; font-size: 14px; padding: 10px 16px; }

/* ============ Nav ============ */

.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.nav {
  display: flex;
  align-items: center;
  height: 68px;
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.nav-wrap.scrolled {
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: var(--border);
}

.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 650;
  font-size: 27px;
  letter-spacing: -0.02em;
}
.nav-logo-mark {
  height: 20px;
  width: auto;
  display: block;
  transform: translateY(0);
}
[data-theme="dark"] .nav-logo-mark {
  filter: invert(1);
}
.nav-logo-text {
  color: var(--text);
  text-decoration: none;
}
.nav-logo-wordmark {
  height: 29px;
  width: auto;
  display: block;
}
[data-theme="dark"] .nav-logo-wordmark {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 510;
  color: var(--text-secondary);
  padding: 7px 12px;
  border-radius: 8px;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-login {
  font-size: 13.5px;
  font-weight: 510;
  color: var(--text-secondary);
  transition: color 0.15s var(--ease);
}
.nav-login:hover { color: var(--text); }

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-burger.open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--nav-bg-scrolled);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 16px var(--gutter) 24px;
  flex-direction: column;
  gap: 4px;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 15px;
  font-weight: 510;
  color: var(--text-secondary);
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-drawer a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-drawer a.active { color: var(--text); }
.nav-drawer-cta {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.nav-drawer-cta .btn { width: 100%; justify-content: center; font-size: 15px; padding: 12px; }

/* ============ Hero ============ */

.hero {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
  padding-top: 62px;
}

.hero-glow {
  position: absolute;
  top: -340px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.14) 0%, rgba(var(--accent-rgb), 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.hero-inner { position: relative; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.hero-badge:hover { border-color: var(--border-strong); color: var(--text); }
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 8px var(--accent-bright);
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 4px var(--accent-bright); opacity: 1; }
  50%       { box-shadow: 0 0 10px 3px var(--accent-bright); opacity: 0.75; }
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-secondary);
  max-width: 420px;
  margin: 24px 0 30px;
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* --- Hero workflow card (Revo-style step list) --- */

.conv-panel {
  width: 100%;
  max-width: 560px;
  background: var(--bg-raised);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-conv);
  transform: scale(1.1);
  transform-origin: top right;
}

/* Header */
.conv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 14px;
  position: relative;
}

.conv-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border);
}

.conv-header-left {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.conv-header-title {
  font-size: 16px;
  font-weight: 650;
  color: var(--text);
  letter-spacing: -0.02em;
}

.conv-header-sub {
  font-size: 12px;
  color: var(--text-tertiary);
}

.conv-header-count {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-tertiary);
  font-variant-numeric: tabular-nums;
}

.conv-all-done {
  display: none;
  align-items: center;
  background: var(--accent-bright);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 4px 11px;
  border-radius: 100px;
}

.conv-all-done.visible {
  display: inline-flex;
}

/* Steps */
.conv-steps {
  display: flex;
  flex-direction: column;
}

.conv-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 20px;
  position: relative;
  transition: background 0.3s ease;
}

.conv-step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 1px;
  background: var(--border);
}

.conv-step--last::after { display: none; }

.conv-step.conv-step--done {
  background: rgba(255,255,255,0.01);
}

/* Status icon */
.conv-step-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
  background: transparent;
  border: 1.5px solid transparent;
}

/* Spinning arc ring — shown during active state */
.conv-step-ring {
  display: none;
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--accent-bright);
  border-right-color: var(--accent-bright);
  pointer-events: none;
}

@keyframes conv-spin {
  to { transform: rotate(360deg); }
}

.conv-check {
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* Active state — show spinning arc */
.conv-step-icon.active {
  border-color: rgba(var(--accent-rgb), 0.3);
}

.conv-step-icon.active .conv-step-ring {
  display: block;
  animation: conv-spin 0.75s linear infinite;
}

/* Done state — orange fill, white check */
.conv-step-icon.done {
  background: var(--accent-bright);
  border-color: transparent;
}

.conv-step-icon.done .conv-step-ring {
  display: none;
}

.conv-step-icon.done .conv-check {
  opacity: 1;
}

/* Step body */
.conv-step-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.conv-step-title {
  font-size: 14.5px;
  font-weight: 550;
  color: var(--text);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  transition: color 0.3s ease;
}

.conv-step--done .conv-step-title {
  color: var(--text-tertiary);
  text-decoration: line-through;
  text-decoration-color: var(--text-tertiary);
}

.conv-step-sub {
  font-size: 12.5px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.conv-step-chip {
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--accent-bright);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0;
  font-style: normal;
  text-decoration: none;
  display: inline-block;
}

.conv-step--done .conv-step-title .conv-step-chip {
  opacity: 0.5;
}

.conv-step-chip--amber {
  background: rgba(212,167,44,0.14);
  color: var(--amber);
}

.conv-step-actions {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.conv-step-time {
  font-size: 11px;
  color: var(--text-tertiary);
  flex-shrink: 0;
  margin-top: 3px;
  font-variant-numeric: tabular-nums;
}

.conv-btn-send {
  background: #ececec;
  color: #0a0b0c;
  border: none;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  cursor: default;
  font-family: var(--font);
}

.conv-btn-edit {
  background: transparent;
  color: var(--text-tertiary);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 16px;
  cursor: default;
  font-family: var(--font);
}

/* --- Hero app screenshot --- */

.hero-shot {
  margin-top: 88px;
  perspective: 2400px;
}

.app-frame {
  position: relative;
  width: 100%;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 120px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: left;
  transform: rotateX(6deg) scale(0.985);
  transform-origin: center top;
  transition: transform 0.9s var(--ease);
}
.app-frame.settled { transform: rotateX(0deg) scale(1); }

.app-titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}
.tb-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); }
.tb-url {
  margin: 0 auto;
  font-size: 12px;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  padding: 3px 14px;
}

.app-body { display: flex; min-height: 500px; }

.app-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.app-stats > div {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.012);
}
.app-stats strong {
  display: block;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.02em;
}
.app-stats span { font-size: 11.5px; color: var(--text-tertiary); }

.app-sidebar {
  width: 232px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 16px 10px;
  background: rgba(255, 255, 255, 0.012);
}
.sb-account {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 10px 16px;
}
.sb-avatar {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: #2c2f33;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sb-name { font-size: 13px; font-weight: 510; }

.sb-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 6px 10px;
  border-radius: 7px;
  margin-bottom: 1px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.sb-item:hover { background: rgba(255, 255, 255, 0.04); color: var(--text); }
.sb-item.active { background: rgba(255, 255, 255, 0.07); color: var(--text); }
.sb-count {
  margin-left: auto;
  font-size: 11px;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 1px 6px;
}

.app-main { flex: 1; padding: 22px 26px; min-width: 0; }
.app-main-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 18px;
}
.app-main-head h4 { font-size: 16px; font-weight: 600; }
.app-date { font-size: 12px; color: var(--text-tertiary); }

.enquiry-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.015);
}
.eq-row { display: flex; align-items: center; gap: 12px; }
.eq-avatar {
  width: 47px;
  height: 47px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.eq-avatar.lg { width: 40px; height: 40px; font-size: 13px; }
.eq-avatar--photo { object-fit: cover; object-position: center top; }
.eq-avatar--logo {
  background: #fff url('/assets/Untitled-52 2.PNG') center/200% no-repeat;
}
.eq-avatar--reidstone {
  background: #fff url('/assets/IMG_2584 2.jpg') center/200% no-repeat;
}
.a1 { background: #4a4f56; }
.a2 { background: #3d4d57; }
.a3 { background: #50554a; }
.a4 { background: #564a4a; }

.eq-meta { min-width: 0; flex: 1; }
.eq-name { display: block; font-size: 13.5px; font-weight: 600; }
.eq-snippet {
  display: block;
  font-size: 12.5px;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eq-time { font-size: 11.5px; color: var(--text-tertiary); flex-shrink: 0; }

.eq-ai {
  margin: 12px 0 0 42px;
  padding-left: 12px;
  border-left: 2px solid rgba(var(--accent-rgb), 0.5);
}
.ai-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-bright);
  background: rgba(var(--accent-rgb), 0.12);
  border-radius: 5px;
  padding: 3px 8px;
}
.chip-amber { color: var(--amber); background: rgba(212, 167, 44, 0.1); }
.chip-green { color: var(--green); background: rgba(76, 183, 130, 0.1); }
.eq-reply {
  display: block;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* --- Social proof --- */

.trades-strip {
  margin-top: 88px;
  text-align: center;
}

.trades-strip-label {
  font-size: 17px;
  font-weight: 550;
  color: var(--text-tertiary);
  opacity: 0.5;
  margin-bottom: 36px;
  letter-spacing: 0.01em;
}

.trades-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.trades-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: trades-scroll 35s linear infinite;
}

.trades-track span {
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text-tertiary);
  opacity: 0.65;
  white-space: nowrap;
  padding: 0 40px;
}

.trades-sep {
  display: none;
}

@keyframes trades-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.trades-track { animation-duration: 55s; }

/* ============ Sections ============ */

.section { padding: 130px 0; position: relative; }
.section-head { max-width: 720px; margin-bottom: 72px; }

/* Linear-style split head: heading left, supporting copy right */
.section-head.split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 32px 96px;
  align-items: end;
}
.section-head.split .section-sub { margin-top: 0; justify-self: end; }

.problem { }
.problem .section-head { max-width: 648px; }

/* ============ Cards / glow effect ============ */

.glowable {
  position: relative;
  overflow: hidden;
}
.glowable::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.04), transparent 45%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  pointer-events: none;
}
.glowable:hover::before { opacity: 1; }

/* ============ Problem ============ */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 35px 31px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.problem-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.problem-card .stat {
  display: block;
  font-size: 48px;
  font-weight: 650;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.65) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
}
.problem-card h3 { font-size: 18px; line-height: 1.35; margin-bottom: 11px; }
.problem-card p { font-size: 15.5px; color: var(--text-secondary); }

/* ============ How it works ============ */

.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.how-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.how-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
}
.how-visual {
  height: 110px;
  margin: 18px 0 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.how-card h3 { font-size: 17px; margin-bottom: 8px; }
.how-card p { font-size: 14px; color: var(--text-secondary); }

/* visual 1: connect */
.hv-connect { display: flex; align-items: center; gap: 14px; }
.hv-logo {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hv-logo img {
  display: block;
  object-fit: contain;
}
.hv-gmail img {
  width: 34px;
  height: 26px;
}
.hv-tragent {
  background: transparent;
}
.hv-tragent img {
  width: 26px;
  height: 34px;
  object-fit: contain;
}
.hv-line {
  position: relative;
  width: 70px;
  height: 2px;
  background: var(--border-strong);
  border-radius: 2px;
  overflow: hidden;
}
.hv-pulse {
  position: absolute;
  top: 0;
  left: -30%;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  animation: pulse-line 1.8s linear infinite;
}
@keyframes pulse-line {
  to { left: 100%; }
}

/* visual 2: reply */
.hv-reply { display: flex; flex-direction: column; gap: 8px; width: 78%; }
.hv-msg {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 10px;
  width: fit-content;
}
.hv-msg.in {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  border-bottom-left-radius: 3px;
}
.hv-msg.out {
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-bottom-right-radius: 3px;
}

/* visual 3: follow-ups */
.hv-followup { display: flex; flex-direction: column; gap: 7px; }
.hv-day {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hv-day::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--border-strong);
}
.hv-day.done { color: var(--text-secondary); }
.hv-day.done::before { background: var(--green); }
.hv-day.active { color: var(--text); }
.hv-day.active::before { background: var(--accent-bright); box-shadow: 0 0 8px var(--accent-bright); }

/* visual 4: pipeline */
.hv-pipeline { display: flex; align-items: center; gap: 10px; }
.hv-stage {
  font-size: 12px;
  font-weight: 510;
  color: var(--text-secondary);
  border: 1px solid var(--border-strong);
  border-radius: 7px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.02);
}
.hv-stage.won {
  color: var(--green);
  border-color: rgba(76, 183, 130, 0.4);
  background: rgba(76, 183, 130, 0.08);
}
.hv-arrow { color: var(--text-tertiary); font-size: 13px; }

/* ============ Product features ============ */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
  padding: 56px 0;
}
.feature + .feature { border-top: 1px solid var(--border); }
.feature.flip .feature-copy { order: 2; }
.feature.flip .feature-shot { order: 1; }
.feature-copy,
.feature-shot {
  min-width: 0;
}

.feature-tag {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 4px 12px;
  margin-bottom: 18px;
}
.feature-copy h3 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 14px;
}
.feature-copy > p { color: var(--text-secondary); font-size: 15.5px; margin-bottom: 22px; }

.feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4.5 8.5l2.5 2.5 4.5-5' stroke='%23c9cdd3' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* --- mini app cards --- */

.mini-app {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  min-width: 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  transition: border-color 0.2s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.mini-app:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.5), 0 0 60px rgba(var(--accent-rgb), 0.06);
}

.mini-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mini-title { font-size: 15px; font-weight: 600; display: block; }
.mini-pill {
  font-size: 11.5px;
  font-weight: 510;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 100px;
  padding: 3px 10px;
}

.mini-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: 7px;
  background: rgba(255, 255, 255, 0.012);
}
.mini-row.faded { opacity: 0.55; }
.mini-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dot-blue { background: var(--accent-bright); box-shadow: 0 0 7px rgba(var(--accent-rgb), 0.6); }
.dot-amber { background: var(--amber); }
.dot-green { background: var(--green); }
.dot-grey { background: var(--text-tertiary); }
.mini-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-text em { font-style: normal; color: var(--text-tertiary); font-size: 12px; }

/* kanban */
.kanban { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.kb-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.kb-card {
  font-size: 12px;
  font-weight: 510;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 8px;
  padding: 9px 10px;
  margin-bottom: 7px;
  color: var(--text-secondary);
}
.kb-card.hot {
  border-color: var(--border-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

/* customer profile */
.profile-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.profile-sub { font-size: 12px; color: var(--text-tertiary); display: block; }
.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.profile-stats > div {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.012);
}
.profile-stats strong { display: block; font-size: 16px; font-weight: 650; letter-spacing: -0.02em; }
.profile-stats span { font-size: 11px; color: var(--text-tertiary); }

/* follow-up rows */
.fu-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: 7px;
}
.fu-when {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  flex-shrink: 0;
  width: 44px;
}
.fu-when.done { color: var(--green); }
.fu-row .mini-text { flex: 1; color: var(--text-secondary); }
.fu-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  padding: 2px 8px;
  flex-shrink: 0;
}
.fu-status.sent { color: var(--green); background: rgba(76, 183, 130, 0.1); }

/* automations */
.auto-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: 7px;
}
.auto-toggle {
  position: relative;
  width: 32px;
  height: 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.auto-toggle.on { background: var(--green); }
.auto-toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.2s var(--ease);
}
.auto-toggle.on::after { left: 16px; }
.auto-meta { min-width: 0; }
.auto-meta em { font-style: normal; font-size: 11.5px; color: var(--green); display: block; margin-top: 2px; }

/* ============ Why ============ */

.why { border-top: 1px solid var(--border); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.why-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.why-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
  margin-bottom: 20px;
}
.why-card h3 { font-size: 17px; margin-bottom: 9px; }
.why-card p { font-size: 14px; color: var(--text-secondary); }

/* ============ Testimonials ============ */

.testimonials { }

/* Getting started */
.gs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.gs-card {
  background: #F3F3F3;
  border: 1px solid #E8E8E8;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
[data-theme="dark"] .gs-card {
  background: #2a2a2a;
  border-color: #383838;
}
[data-theme="dark"] .gs-visual {
  background: #363636;
}
.gs-visual {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}
.gs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.gs-visual--icon {
  background: transparent;
}
/* ── Card 2: fingerprint scanner ── */
.gs-visual--scanner {
  position: relative;
  overflow: hidden;
  background: #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-theme="dark"] .gs-visual--scanner {
  background: #363636;
}
.gs-visual--scanner .gs-img {
  object-fit: cover;
  width: 115%;
  height: 115%;
  filter: contrast(1.5);
  mix-blend-mode: multiply;
}
.gs-fp-svg {
  width: 54%;
  display: block;
  position: relative;
  z-index: 1;
}
[data-theme="dark"] .gs-fp-dark { stroke: #E0E0E0; }
[data-theme="dark"] .gs-fp-light { stroke: #505050; }
/* Corner scan brackets */
.gs-sc {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 2;
}
.gs-sc--tl { top: 10%;    left: 22%;  border-top:    3px solid #444; border-left:   3px solid #444; }
.gs-sc--tr { top: 10%;    right: 22%; border-top:    3px solid #444; border-right:  3px solid #444; }
.gs-sc--bl { bottom: 7%;  left: 22%;  border-bottom: 3px solid #444; border-left:   3px solid #444; }
.gs-sc--br { bottom: 7%;  right: 22%; border-bottom: 3px solid #444; border-right:  3px solid #444; }
/* Scanning line */
.gs-scan-line {
  position: absolute;
  left: 22%;
  right: 22%;
  height: 1.5px;
  background: #C2420D;
  box-shadow: 0 0 8px rgba(194,66,13,0.65), 0 0 2px rgba(194,66,13,0.9);
  z-index: 3;
  animation: gs-scan-move 2.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes gs-scan-move {
  0%   { top: 13%; }
  50%  { top: 84%; }
  100% { top: 13%; }
}

/* ── Card 3: enquiry notification cards ── */
.gs-visual--enquiries {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.gs-visual--jobs {
  position: relative;
  overflow: hidden;
  background: #F2F2F2;
}
[data-theme="dark"] .gs-visual--jobs {
  background: #2a2a2a;
}
.gs-jobs-canvas {
  display: block;
  width: 100%;
  height: 100%;
}
.gs-eq-card {
  position: absolute;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.80);
  border-radius: 12px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  width: 64%;
}
[data-theme="dark"] .gs-eq-card {
  background: rgba(55,55,55,0.55);
  border-color: rgba(255,255,255,0.10);
  box-shadow: 0 2px 12px rgba(0,0,0,0.30);
}
.gs-eq-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.gs-eq-avatar svg { display: block; }
.gs-eq-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gs-eq-name {
  font-size: 11.5px;
  font-weight: 650;
  color: var(--text);
  white-space: nowrap;
  line-height: 1.3;
}
.gs-eq-job {
  font-size: 10px;
  color: var(--text-secondary);
  white-space: nowrap;
  opacity: 0.75;
  line-height: 1.3;
}
.gs-eq-status {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 20px;
  align-self: flex-start;
  line-height: 1.5;
}
.gs-eq-status--done     { background: rgba(34,197,94,0.12); color: #15803d; }
.gs-eq-status--progress { background: rgba(249,115,22,0.12); color: #c2410c; }
[data-theme="dark"] .gs-eq-status--done     { background: rgba(34,197,94,0.18); color: #4ade80; }
[data-theme="dark"] .gs-eq-status--progress { background: rgba(249,115,22,0.18); color: #fb923c; }
.gs-eq-card--1 { top: 4%;  left: 20%; transform: rotate(-2deg);   z-index: 1; }
.gs-eq-card--2 { top: 22%; left: 5%;  transform: rotate(1.5deg);  z-index: 2; }
.gs-eq-card--3 { top: 41%; left: 18%; transform: rotate(-1.5deg); z-index: 3; }
.gs-eq-card--4 { top: 59%; left: 4%;  transform: rotate(1deg);    z-index: 4; }
.gs-visual--anim {
  background: transparent;
  padding: 0;
}
.gs-connect-svg {
  width: 100%;
  height: 100%;
  display: block;
}
[data-theme="dark"] .gs-t-mark {
  fill: #fff;
}
[data-theme="dark"] .gs-arrow {
  stroke: rgba(255,255,255,0.22);
}
.gs-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gs-num {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  opacity: 0.6;
}
.gs-body h3 {
  font-size: 17px;
  font-weight: 650;
  line-height: 1.25;
  color: var(--text);
  margin: 0;
}
.gs-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.quote-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.quote-card blockquote {
  font-size: 16.5px;
  line-height: 1.55;
  letter-spacing: -0.011em;
  color: var(--text);
  flex: 1;
}
.quote-card figcaption { display: flex; align-items: center; gap: 12px; }
.quote-card strong { display: block; font-size: 13.5px; font-weight: 600; line-height: 1.2; margin-bottom: 2px; }
.quote-card figcaption div span { font-size: 12.5px; color: var(--text-tertiary); }

/* ============ Pricing ============ */

.pricing { border-top: 1px solid var(--border); }
.pricing .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.pricing .section-sub { margin-left: auto; margin-right: auto; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  align-items: start;
}
.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.price-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.price-card.featured {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06), var(--bg-card) 40%);
  box-shadow: 0 0 60px rgba(var(--accent-rgb), 0.08);
}
.price-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--btn-primary-text);
  background: var(--accent);
  border-radius: 100px;
  padding: 3px 12px;
  white-space: nowrap;
}
.price-card h3 { font-size: 17px; }
.price-for { font-size: 13px; color: var(--text-tertiary); margin: 4px 0 22px; }
.price { display: flex; align-items: baseline; gap: 5px; margin-bottom: 24px; }
.price .amount { font-size: 42px; font-weight: 650; letter-spacing: -0.03em; }
.price .per { font-size: 14px; color: var(--text-tertiary); }
.price-list { margin-top: 26px; }
.price-list li {
  position: relative;
  font-size: 13.5px;
  color: var(--text-secondary);
  padding: 7px 0 7px 24px;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' stroke='%238a8f98' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ============ Final CTA ============ */

.final-cta .hero-ctas { justify-content: center; }

section.final-cta {
  padding: clamp(80px, 9vw, 130px) 0;
  text-align: center;
  border-top: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.final-cta .eyebrow {
  margin-bottom: 10px;
  color: var(--text-tertiary);
}
.cta-glow {
  position: absolute;
  bottom: -360px;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 560px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 65%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(33px, 3.3vw, 53px);
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.72) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.final-cta p {
  color: var(--text-secondary);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 22px;
}
.cta-note {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ============ Footer ============ */

.footer {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand p {
  font-size: 13.5px;
  color: var(--text-tertiary);
  margin-top: 14px;
  max-width: 240px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: var(--text-tertiary);
  padding: 4px 0;
  transition: color 0.15s var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-base {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* ============ Hero note ============ */

.hero-note {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ============ "Knows when to stop" mock ============ */

.stop-row {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.012);
}
.stop-quote {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.45;
}
.stop-row .ai-chip { align-self: flex-start; }
.chip-grey { color: var(--text-secondary); background: rgba(255, 255, 255, 0.06); }

/* ============ Proof: journey timeline ============ */

.proof { border-top: 1px solid var(--border); }

.journey {
  position: relative;
  max-width: 860px;
}
.j-item {
  position: relative;
  display: grid;
  grid-template-columns: 96px 18px 1fr;
  gap: 0 22px;
  padding-bottom: 36px;
}
.j-item:last-child { padding-bottom: 0; }
.j-item::before {
  content: "";
  position: absolute;
  left: calc(96px + 22px + 8px);
  top: 20px;
  bottom: -2px;
  width: 1px;
  background: var(--border-strong);
}
.j-item:last-child::before { display: none; }

.j-time {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}
.j-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--text-tertiary);
  margin-top: 5px;
  justify-self: center;
  position: relative;
  z-index: 1;
}
.j-dot.j-active {
  border-color: var(--accent-bright);
  background: var(--accent-bright);
  box-shadow: 0 0 10px rgba(var(--accent-rgb), 0.6);
}
.j-dot.j-won {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 10px rgba(76, 183, 130, 0.5);
}

.j-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.j-text {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 560px;
}

/* ============ Trust ============ */

.trust { border-top: 1px solid var(--border); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.trust-card:hover { border-color: var(--border-strong); transform: translateY(-2px); }
.trust-card h3 {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  margin-bottom: 20px;
}
.trust-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.trust-icon.can {
  color: var(--accent-bright);
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
}
.trust-icon.cannot {
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-strong);
}
.trust-list li {
  position: relative;
  font-size: 14.5px;
  color: var(--text-secondary);
  padding: 8px 0 8px 26px;
  border-bottom: 1px solid var(--border);
}
.trust-list li:last-child { border-bottom: none; }
.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8.5l3 3 6-6.5' stroke='%234cb782' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.trust-card:last-child .trust-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 4l8 8M12 4l-8 8' stroke='%2362666d' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* ============ Try it live (homepage bridge section) ============ */

/* ── How It Works ── */
.how-works { border-top: 1px solid var(--border); }
.how-works-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 64px 80px;
  align-items: center;
}
.how-works-text h2 { margin-bottom: 20px; }
.how-works-sub {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 400px;
}

/* Network card */
.hw-net-card {
  position: relative;
  min-height: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.05);
  overflow: hidden;
}
[data-theme="dark"] .hw-net-card {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

/* Floating inbox cards inner wrapper */
.hw-int-inner {
  position: absolute;
  width: 640px;
  height: 450px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.72);
  transform-origin: center center;
}

/* SVG lines */
.hw-net-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hw-net-line {
  stroke: #C2420D;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
}

/* Enquiry nodes */
.hw-eq-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 10px;
  padding: 9px 13px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
  max-width: 210px;
  z-index: 2;
}
[data-theme="dark"] .hw-eq-node {
  background: #252525;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.hw-eq-node.hw-eq--show { opacity: 1; transform: scale(1); }
.hw-eq-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10.5px; font-weight: 700;
  flex-shrink: 0;
}
.hw-eq-name {
  font-size: 12.5px; font-weight: 600;
  color: #0D0D0D; margin: 0;
  white-space: nowrap;
}
.hw-eq-sub {
  font-size: 11px; color: #999;
  margin: 2px 0 0;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  max-width: 150px;
}
[data-theme="dark"] .hw-eq-name { color: #f0f0f0; }
[data-theme="dark"] .hw-eq-sub  { color: #555; }

/* Centre hub */
.hw-hub {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 7px; z-index: 2;
}
.hw-hub-ring {
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1.5px solid rgba(194,66,13,0);
  top: 50%; left: 50%;
  transform: translate(-50%, -60%) scale(1);
  pointer-events: none;
}
.hw-hub-ring.hw-ring--fire {
  animation: hw-ring-anim 0.55s ease-out forwards;
}
@keyframes hw-ring-anim {
  0%   { border-color: rgba(194,66,13,0.7); transform: translate(-50%,-60%) scale(1); }
  100% { border-color: rgba(194,66,13,0);   transform: translate(-50%,-60%) scale(1.5); }
}
.hw-hub-icon {
  width: 48px; height: 48px;
  border-radius: 11px;
  background: #fff;
  border: 1.5px solid #E0E0E0;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
[data-theme="dark"] .hw-hub-icon { background: #252525; border-color: rgba(255,255,255,0.1); }
.hw-hub-mark { height: 20px; width: auto; }
[data-theme="dark"] .hw-hub-mark { filter: invert(1); }
.hw-hub-label {
  font-size: 13px; font-weight: 650;
  color: #0D0D0D; letter-spacing: -0.01em;
}
[data-theme="dark"] .hw-hub-label { color: #f0f0f0; }
.hw-hub-counter {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; font-weight: 500; color: #C2420D;
  background: rgba(194,66,13,0.08);
  border: 1px solid rgba(194,66,13,0.2);
  border-radius: 100px; padding: 3px 10px;
  opacity: 0; white-space: nowrap;
  transition: opacity 0.3s ease;
}
.hw-hub-counter.hw-counter--show { opacity: 1; }
.hw-hub-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: #C2420D; flex-shrink: 0;
}

@media (max-width: 860px) {
  .how-works-grid { grid-template-columns: 1fr; gap: 40px; }
  .hw-net-card { min-height: 320px; }
  .hw-int-inner { transform: translate(-50%, -50%) scale(0.58); }
}
@media (max-width: 500px) {
  .hw-net-card { min-height: 270px; }
  .hw-int-inner { transform: translate(-50%, -50%) scale(0.48); }
}

.try-live { border-top: 1px solid var(--border); }

.try-live-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  transition: border-color 0.2s var(--ease);
}
.try-live-card:hover { border-color: var(--border-strong); }

.tl-demo-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 920px;
}
.tl-demo-msg {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.012);
}
.tl-demo-msg.out { border-left: 2px solid var(--border-strong); }
.tl-demo-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 11px;
}
.tl-demo-msg p { font-size: 14.5px; line-height: 1.55; color: var(--text-secondary); }
.tl-demo-msg.out p { color: var(--text); }
.tl-demo-arrow { color: var(--text-tertiary); font-size: 20px; }

@media (max-width: 760px) {
  .try-live-card { padding: 28px; }
  .tl-demo-row { grid-template-columns: 1fr; gap: 16px; }
  .tl-demo-arrow { transform: rotate(90deg); justify-self: center; }
  .gs-visual--scanner .gs-img { width: 115%; height: 115%; }
}

/* ============ Try Tragent Live ============ */

.nav-links a.active { color: var(--text); }

.try-hero { padding-bottom: 20px; }

.demo-section { padding-top: 70px; }
.demo-first {
  min-height: 0;
  padding-top: 84px;
  padding-bottom: 28px;
}

.demo-intro {
  max-width: 680px;
  margin-bottom: 14px;
}

.demo-intro h1 {
  font-size: clamp(33px, 3.3vw, 53px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 8px;
}

.demo-intro p {
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.45;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.demo-pane-label {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.065em;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.demo-frame { transform: none; }
.demo-frame .app-titlebar {
  padding: 10px 14px;
}
.demo-frame .tb-dot {
  width: 9px;
  height: 9px;
}
.demo-frame .tb-url {
  font-size: 11.5px;
  padding: 2px 12px;
}
.demo-frame.app-frame { box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45); }

.demo-form { padding: 20px 24px 22px; }
.demo-form h3 { font-size: 19px; letter-spacing: -0.02em; margin-bottom: 16px; }
.demo-form-sub { font-size: 14px; color: var(--text-secondary); margin-bottom: 22px; }

.field { display: block; margin-bottom: 11px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field > span {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 5px;
}
.field > span em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-tertiary);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 8px 12px;
  outline: none;
  transition: border-color 0.15s var(--ease), background 0.15s var(--ease);
  -webkit-appearance: none;
  appearance: none;
}
.field textarea { resize: vertical; line-height: 1.5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%238a8f98' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0 0 14px;
  cursor: pointer;
}
.consent input { accent-color: var(--accent); width: 15px; height: 15px; }

.demo-form-note {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 12px;
}
.demo-error {
  margin-top: 12px;
  font-size: 13px;
  color: #e08a8a;
  text-align: center;
}

/* --- Tragent panel --- */

.tragent-panel {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  min-height: 364px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.panel-idle {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}
.panel-idle p { font-size: 14.5px; color: var(--text-tertiary); line-height: 1.6; }
.idle-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: idle-pulse 2s ease-in-out infinite;
}
@keyframes idle-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0.4); }
  50% { opacity: 0.6; box-shadow: 0 0 0 7px rgba(var(--accent-rgb), 0); }
}

.timeline { display: flex; flex-direction: column; }
.timeline li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 0;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease);
}
.timeline li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 32px;
  bottom: -10px;
  width: 1px;
  background: var(--border-strong);
}
.timeline li.active, .timeline li.done { opacity: 1; }

.tl-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid var(--text-tertiary);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  background: var(--bg-raised);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.timeline li.active .tl-dot {
  border-color: var(--accent-bright);
  animation: idle-pulse 1.2s ease-in-out infinite;
}
.timeline li.done .tl-dot {
  border-color: var(--accent-bright);
  background: var(--accent-bright) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8.5l2.8 2.8L12 5.5' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/11px no-repeat;
  animation: none;
}

.tl-text { font-size: 14.5px; font-weight: 510; flex: 1; }
.tl-time { font-size: 12px; color: var(--text-tertiary); font-variant-numeric: tabular-nums; }

/* --- Email preview --- */

.email-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  overflow: hidden;
  animation: email-in 0.5s var(--ease);
}
@keyframes email-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.email-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
}
.email-meta { display: flex; align-items: center; gap: 12px; min-width: 0; }
.email-from { display: block; font-size: 14px; font-weight: 600; }
.email-sub { display: block; font-size: 12.5px; color: var(--text-secondary); }
.email-time { font-size: 12px; color: var(--text-tertiary); flex-shrink: 0; }
.email-body {
  padding: 18px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--text);
  white-space: pre-wrap;
}

.inbox-note {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(76, 183, 130, 0.05);
}
.inbox-note strong { display: block; font-size: 13.5px; margin-bottom: 3px; }
.inbox-note span { font-size: 13px; color: var(--text-secondary); }

.what-happened { border-top: 1px solid var(--border); }

@media (max-width: 960px) {
  .demo-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

/* ============ Legal pages ============ */

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 140px 24px 100px;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 510;
  color: var(--text-secondary);
  margin-bottom: 36px;
  transition: color 0.15s var(--ease);
}
.legal-back:hover { color: var(--text); }
.legal-updated {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 14px;
}
.legal h1 {
  font-size: clamp(34px, 5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 18px;
}
.legal-intro {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 48px;
}
.legal h2 {
  font-size: 20px;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
}
.legal p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 14px;
}
.legal a { color: var(--text-secondary); }
.legal a:hover { text-decoration: underline; }

/* ============ Reveal animations ============ */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal.d-1 { transition-delay: 0.08s; }
.reveal.d-2 { transition-delay: 0.16s; }
.gs-card.reveal { transition-duration: 1.05s; }
.reveal.d-3 { transition-delay: 0.24s; }
.reveal.d-4 { transition-delay: 0.32s; }
.reveal.d-5 { transition-delay: 0.44s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .app-frame { transform: none; transition: none; }
  .hv-pulse { animation: none; }
}

/* ============ Responsive ============ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .hero-right { padding-bottom: 0; }
  .section-head.split { grid-template-columns: 1fr; align-items: start; }
  .section-head.split .section-sub { justify-self: start; }
  .demo-grid,
  .demo-result-grid {
    grid-template-columns: 1fr;
  }
  .demo-hero {
    align-items: flex-start;
    padding-top: 44px;
  }
  .demo-copy {
    max-width: 680px;
  }
}

@media (max-width: 960px) {
  .section { padding: 88px 0; }
  .feature {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    padding: 44px 0;
  }
  .feature.flip .feature-copy { order: 1; }
  .feature.flip .feature-shot { order: 2; }
  .problem-grid, .why-grid, .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .how-grid, .quote-grid, .trust-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .app-sidebar { display: none; }
}

br.br-m { display: none; }

@media (max-width: 720px) {
  .nav-links, .nav-login, .theme-toggle { display: none; }
  .nav { justify-content: space-between; gap: 10px; padding: 0 16px; }
  .nav-logo { gap: 7px; }
  .nav-actions { margin-left: auto; gap: 8px; }
  .nav-actions .btn-sm { padding: 7px 10px; font-size: 12.5px; white-space: nowrap; }
  .nav-burger { display: flex; }
  .hero { padding: 100px 0 0; min-height: 100svh; display: flex; flex-direction: column; }
  .hero-inner { flex: 1; display: flex; flex-direction: column; }
  .hero-grid { gap: 40px; }
  .hero-right { padding-top: 0; justify-content: center; }
  .conv-panel { transform-origin: top center; }
  .hero-title { font-size: clamp(30px, 8.5vw, 42px); text-align: center; }
  br.br-m { display: block; }
  .hero-sub { text-align: center; }
  .hero-badge { display: flex; width: fit-content; margin-left: auto; margin-right: auto; background: var(--bg); }
  .hero-ctas { justify-content: center; }
  .hero-note { text-align: center; }
  .trades-strip { padding-bottom: 32px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 48px; }
  .quote-grid { grid-template-columns: 1fr; }
  .gs-grid { grid-template-columns: 1fr; }
  .demo-main { padding-top: 64px; }
  .demo-hero {
    min-height: 0;
    padding: 34px 0 36px;
  }
  .demo-grid {
    gap: 24px;
  }
  .demo-back {
    margin-bottom: 20px;
  }
  .demo-copy h1 {
    font-size: clamp(34px, 11vw, 44px);
    margin-bottom: 14px;
  }
  .demo-copy p {
    font-size: 15.5px;
  }
  .demo-proof-row {
    margin-top: 18px;
  }
  .demo-card {
    padding: 18px;
  }
  .demo-card-head {
    margin-bottom: 16px;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .demo-result-section {
    padding: 30px 0 68px;
  }
  .demo-steps,
  .demo-preview {
    padding: 18px;
  }
  .hero-shot { margin-top: 48px; }
  .app-body { min-height: 0; }
  .hero-badge { font-size: 11.5px; padding: 5px 11px; }
  .trades-strip-label { font-size: 13px; margin-bottom: 24px; }
  .trades-track span { font-size: 32px; padding: 0 18px; }
  .app-stats { grid-template-columns: repeat(2, 1fr); }
  .j-item { grid-template-columns: 64px 14px 1fr; gap: 0 12px; }
  .j-item::before { left: calc(64px + 12px + 6px); }
  .j-time { font-size: 11px; }
  .footer-base { flex-direction: column; gap: 8px; }
}

/* ============================================================
   Light theme overrides
   All hardcoded rgba(255,255,255,X) values that must invert
   ============================================================ */

/* Gradient text: hero title, stat numbers, final CTA */
[data-theme="light"] .problem-card .stat {
  background: linear-gradient(180deg, #0D0D0D 0%, rgba(13, 13, 13, 0.70) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .final-cta h2 {
  background: linear-gradient(180deg, #0D0D0D 0%, rgba(13, 13, 13, 0.78) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Nav */
[data-theme="light"] .logo-mark img { filter: brightness(0); }
[data-theme="light"] .nav-links a:hover { background: rgba(0, 0, 0, 0.05); color: var(--text); }

/* Hero */
[data-theme="light"] .hero-glow { opacity: 0.15; }
[data-theme="light"] .hero-badge { background: rgba(0, 0, 0, 0.04); }
[data-theme="light"] .hero-badge:hover { border-color: var(--border-strong); }
@media (max-width: 720px) {
  [data-theme="light"] .hero-badge { background: var(--bg); }
}

/* Workflow card */
[data-theme="light"] .conv-step--done { background: rgba(0, 0, 0, 0.015); }
[data-theme="light"] .conv-step { border-bottom-color: var(--border); }
[data-theme="light"] .conv-step-icon { border-color: transparent; }

/* App frame (product screenshots stay dark — intentional) */
[data-theme="light"] .app-frame {
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .app-titlebar { background: #1a1a1a; }
[data-theme="light"] .tb-dot { background: rgba(255, 255, 255, 0.18); }

/* Hover cards / glowable */
[data-theme="light"] .how-card,
[data-theme="light"] .why-card,
[data-theme="light"] .price-card {
  background: var(--bg-raised);
}

/* Sidebar (in app frame — stays dark) */
[data-theme="light"] .app-sidebar { background: #161616; }
[data-theme="light"] .sb-item:hover { background: rgba(255, 255, 255, 0.05); }
[data-theme="light"] .sb-item.active { background: rgba(255, 255, 255, 0.08); }

/* Hover visuals (how-it-works) */
[data-theme="light"] .hv-msg.in { background: rgba(0, 0, 0, 0.06); color: var(--text-secondary); }
[data-theme="light"] .hv-msg.out { background: rgba(0, 0, 0, 0.07); color: var(--text); }
[data-theme="light"] .hv-bar { background: #E0E0E0; }
[data-theme="light"] .hv-stage { background: rgba(0, 0, 0, 0.03); border-color: var(--border-strong); }

/* Mini-rows (pipeline/inbox previews) */
[data-theme="light"] .mini-row { background: rgba(0, 0, 0, 0.02); border-color: var(--border); }
[data-theme="light"] .kb-card { background: rgba(0, 0, 0, 0.025); border-color: var(--border); }
[data-theme="light"] .kb-card.hot { background: rgba(0, 0, 0, 0.04); border-color: var(--border-strong); }

/* Chips */
[data-theme="light"] .chip-grey { background: rgba(0, 0, 0, 0.06); color: var(--text-secondary); }

/* Pricing */
[data-theme="light"] .price-card.featured {
  border-color: rgba(194, 66, 13, 0.3);
  background: linear-gradient(180deg, rgba(194, 66, 13, 0.04), var(--bg-card) 40%);
  box-shadow: 0 0 40px rgba(194, 66, 13, 0.06);
}

/* Demo / try-live section */
[data-theme="light"] .demo-card { background: var(--bg-raised); border-color: var(--border); }
[data-theme="light"] .demo-field,
[data-theme="light"] .demo-textarea { background: rgba(0, 0, 0, 0.03); border-color: var(--border); color: var(--text); }
[data-theme="light"] .demo-field::placeholder,
[data-theme="light"] .demo-textarea::placeholder { color: var(--text-tertiary); }
[data-theme="light"] .demo-result-section { background: var(--bg-raised); border-color: var(--border); }
[data-theme="light"] .demo-step { border-color: var(--border); }
[data-theme="light"] .demo-pane-label {
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.035);
  border-color: var(--border);
}
[data-theme="light"] .demo-frame.app-frame {
  background: var(--bg-raised);
  border-color: var(--border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.14);
}
[data-theme="light"] .demo-frame .app-titlebar {
  background: rgba(0, 0, 0, 0.025);
  border-bottom-color: var(--border);
}
[data-theme="light"] .demo-frame .tb-dot { background: #c9c9c9; }
[data-theme="light"] .demo-frame .tb-url {
  color: var(--text-secondary);
  background: rgba(0, 0, 0, 0.045);
}
[data-theme="light"] .field > span { color: var(--text); }
[data-theme="light"] .field > span em { color: var(--text-secondary); }
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea {
  color: var(--text);
  background: rgba(0, 0, 0, 0.035);
  border-color: var(--border-strong);
}
[data-theme="light"] .field input::placeholder,
[data-theme="light"] .field textarea::placeholder { color: var(--text-tertiary); }
[data-theme="light"] .field input:focus,
[data-theme="light"] .field select:focus,
[data-theme="light"] .field textarea:focus {
  background: #fff;
  border-color: rgba(13, 13, 13, 0.42);
}
[data-theme="light"] .consent { color: var(--text-secondary); }
[data-theme="light"] .tragent-panel {
  background: var(--bg-raised);
  border-color: var(--border);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.08);
}
[data-theme="light"] .panel-idle p { color: var(--text-secondary); }
[data-theme="light"] .tl-dot { background: var(--bg-raised); }
[data-theme="light"] .timeline li:not(:last-child)::before { background: var(--border); }
[data-theme="light"] .email-card {
  background: var(--bg-raised);
  border-color: var(--border);
}
[data-theme="light"] .inbox-note {
  border-color: rgba(76, 183, 130, 0.22);
  background: rgba(76, 183, 130, 0.075);
}

/* Enquiry feed */
[data-theme="light"] .eq-ai { border-left-color: rgba(194, 66, 13, 0.4); }

/* Trust / testimonials */
[data-theme="light"] .trust-card { background: var(--bg-raised); border-color: var(--border); }
[data-theme="light"] .trust-quote { color: var(--text); }

/* Final CTA section */
[data-theme="light"] .final-cta { background: var(--bg); }
[data-theme="light"] .cta-glow { background: radial-gradient(ellipse at center, rgba(194, 66, 13, 0.06) 0%, transparent 65%); }

/* Footer */
[data-theme="light"] .footer { background: #F0EFEF; border-top-color: var(--border); }
[data-theme="light"] .footer a:hover { color: var(--text); }

/* Theme toggle button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text-secondary);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover {
  background: var(--btn-ghost-hover-bg);
  color: var(--text);
  border-color: var(--border-strong);
}
.theme-toggle svg { display: block; }
[data-theme="dark"]  .icon-sun  { display: none; }
[data-theme="light"] .icon-moon { display: none; }

@media (max-width: 720px) {
  .theme-toggle { display: none; }
  .nav-actions { gap: 8px; }
}

/* ── Integrations visual ── */
.integrations { border-top: 1px solid var(--border); }
.int-stage {
  position: relative;
  max-width: 720px;
  height: 480px;
  margin: 48px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.int-inner {
  position: relative;
  width: 640px;
  height: 450px;
  flex-shrink: 0;
}
.int-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.int-card {
  position: absolute;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 13px;
  padding: 14px 15px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.07);
}
.int-card--g {
  left: 8px;
  top: 22px;
  width: 242px;
  animation: int-float-a 4s ease-in-out infinite;
  animation-play-state: paused;
}
.int-card--o {
  right: 8px;
  top: 38px;
  width: 242px;
  animation: int-float-b 4.8s ease-in-out infinite;
  animation-play-state: paused;
}
.int-card--t {
  left: 176px;
  top: 238px;
  width: 288px;
  animation: int-float-c 3.8s ease-in-out infinite;
  animation-play-state: paused;
}
.how-works.anim-active .int-card--g,
.how-works.anim-active .int-card--o,
.how-works.anim-active .int-card--t {
  animation-play-state: running;
}
@keyframes int-float-a {
  0%, 100% { transform: perspective(900px) rotateX(9deg) rotateY(-16deg) rotateZ(-1.5deg) translateY(0); }
  50%       { transform: perspective(900px) rotateX(9deg) rotateY(-16deg) rotateZ(-1.5deg) translateY(-7px); }
}
@keyframes int-float-b {
  0%, 100% { transform: perspective(900px) rotateX(9deg) rotateY(16deg) rotateZ(1.5deg) translateY(0); }
  50%       { transform: perspective(900px) rotateX(9deg) rotateY(16deg) rotateZ(1.5deg) translateY(-9px); }
}
@keyframes int-float-c {
  0%, 100% { transform: perspective(900px) rotateX(5deg) translateY(0); }
  50%       { transform: perspective(900px) rotateX(5deg) translateY(-5px); }
}
.int-provider {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 1px solid var(--border);
}
.int-prov-label { font-size: 10.5px; color: var(--text-tertiary); line-height: 1.2; }
.int-sender { font-size: 13px; font-weight: 500; color: var(--text); }
.int-subj { font-size: 12.5px; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.int-prev { font-size: 11.5px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 10px; }
.int-ts { font-size: 11px; color: var(--text-tertiary); display: flex; align-items: center; gap: 5px; }
.int-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.int-t-header { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; }
.int-t-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.int-t-name { font-size: 13px; font-weight: 500; color: var(--text); }
.int-badge {
  margin-left: auto;
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.09);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 100px;
  padding: 2px 9px;
}
.int-t-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.int-t-item:last-child { border-bottom: none; padding-bottom: 0; }
.int-check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(76, 183, 130, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.int-t-job { font-size: 12.5px; font-weight: 500; color: var(--text); margin-bottom: 3px; }
.int-t-action { font-size: 11.5px; color: var(--accent); }
.int-note { text-align: center; font-size: 13px; color: var(--text-tertiary); margin-top: 20px; }

@media (max-width: 740px) {
  .int-stage { height: 370px; }
  .int-inner { transform: scale(0.77); transform-origin: center top; }
}
@media (max-width: 500px) {
  .int-stage { height: 310px; }
  .int-inner { transform: scale(0.64); }
}

/* ── Big statement section ── */
.biz-section {
  padding: 0 0 clamp(80px, 10vw, 140px);
}
.biz-section .container { padding-left: 0; padding-right: 0; }
.biz-frame {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1px 1fr;
  min-height: 540px;
  position: relative;
}
.biz-frame::before {
  content: '';
  position: absolute;
  left: 56%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent 0%, var(--border-strong) 10%, var(--border-strong) 85%, transparent 100%);
  pointer-events: none;
}
.biz-pre-left {
  grid-column: 1;
  grid-row: 1;
}
.biz-stats {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 40px 40px;
}
.biz-rule {
  grid-column: 1 / -1;
  grid-row: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 20%, var(--border-strong) 80%, transparent 100%);
  pointer-events: none;
}
.biz-col-left {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
}
.biz-copy {
  padding: 52px 52px 64px var(--gutter);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.biz-headline {
  font-size: clamp(33px, 3.3vw, 53px);
  font-weight: 700;
  line-height: 1.07;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
  max-width: 18ch;
}
.biz-body {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 38ch;
}
.biz-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.biz-col-right {
  grid-column: 2;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 40px;
}
.biz-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.biz-stat-number {
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1;
}
.biz-stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
}
.biz-accent {
  background: linear-gradient(135deg, #FF6B35 0%, #C2420D 50%, #E8541A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.biz-illus {
  width: 70%;
  max-width: 340px;
  height: auto;
}
.biz-illus-mobile { display: none; }

@media (max-width: 860px) {
  .biz-frame {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1px auto auto;
    min-height: 0;
  }
  .biz-frame::before { display: none; }
  .biz-pre-left { display: none; }

  /* Flatten col-left and biz-copy so children become direct grid items */
  .biz-col-left { display: contents; }
  .biz-copy     { display: contents; }

  /* Row 1: headline, full width */
  .biz-headline {
    grid-column: 1 / -1;
    grid-row: 1;
    padding: 40px var(--gutter) 24px var(--gutter);
    margin: 0;
    max-width: none;
    width: 100%;
    text-align: center;
    font-weight: 500;
    font-family: var(--font);
    text-transform: none;
    font-size: clamp(26px, 6vw, 40px);
    letter-spacing: -0.02em;
  }

  .biz-illus-desktop { display: none; }
  .biz-illus-mobile { display: block; }

  /* Row 2, col 1: image starts at left gutter, overflows right */
  .biz-col-right {
    grid-column: 1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden;
    padding: 16px 0 24px var(--gutter);
  }
  .biz-illus {
    width: 100%;
    max-width: none;
    transform: none;
  }

  /* Row 2, col 2: stats stacked vertically */
  .biz-stats {
    grid-column: 2;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 16px 16px 24px 12px;
  }
  .biz-stat-number { font-size: clamp(18px, 5vw, 26px); }
  .biz-stat-label  { font-size: 10px; }

  /* Row 3: horizontal rule, full width */
  .biz-rule { grid-column: 1 / -1; grid-row: 3; }

  /* Row 4: body copy, full width */
  .biz-body {
    grid-column: 1 / -1;
    grid-row: 4;
    padding: 28px var(--gutter) 0 var(--gutter);
    margin: 0;
  }

  /* Row 5: buttons, full width */
  .biz-actions {
    grid-column: 1 / -1;
    grid-row: 5;
    padding: 20px var(--gutter) 48px var(--gutter);
  }
}

/* ============ Feature cards ============ */
.feature-cards-section {
  padding: clamp(60px, 7vw, 100px) 0;
}
.feature-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
  padding: 0 var(--gutter);
}
.fcard {
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}
/* Card 1 spans both columns */
.fcard:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  min-height: 360px;
}
.fcard:first-child .fcard-copy {
  flex: 0 0 45%;
}
.fcard:first-child .fcard-media {
  flex: 1;
  height: 100%;
  min-height: 300px;
}
.fcard--dark {
  background: #111;
}
.fcard--dark .fcard-heading,
.fcard--dark .fcard-body { color: #fff; }
.fcard--dark .fcard-body { color: rgba(255,255,255,0.6); }
.fcard--fullbleed {
  position: relative;
  min-height: 460px;
}
.fcard-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
.fcard-copy--overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  padding: clamp(28px, 3vw, 52px);
  flex: 0 0 50%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  border-radius: 20px 0 0 20px;
}
.fcard-copy--overlay-bottom {
  flex: none;
  align-self: auto;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.6) 50%, transparent 100%);
  border-radius: 0 0 20px 20px;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  padding-top: 60px;
}
.fcard--light {
  background: #f0ede8;
}
.fcard--accent {
  background: #1a1209;
  border: 1px solid rgba(194,66,13,0.25);
}
.fcard--accent .fcard-heading,
.fcard--accent .fcard-body { color: #fff; }
.fcard--accent .fcard-body { color: rgba(255,255,255,0.6); }
.fcard-copy {
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fcard-heading {
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin: 0;
}
.fcard--light .fcard-heading { color: #111; }
.fcard--light .fcard-body { color: rgba(0,0,0,0.55); font-size: clamp(14px, 1.1vw, 17px); line-height: 1.6; margin: 0; }
.fcard--fullbleed .fcard-heading { color: #fff; }
.fcard--fullbleed .fcard-body { color: rgba(255,255,255,0.75); }
.fcard-body {
  font-size: clamp(14px, 1.1vw, 17px);
  line-height: 1.6;
  margin: 0;
}
.fcard-media {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.fcard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.fcard-media--placeholder {
  min-height: 180px;
  background: rgba(255,255,255,0.05);
  border-radius: 0 0 20px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fcard--light .fcard-media--placeholder {
  background: rgba(0,0,0,0.06);
}
.fcard-media--placeholder span {
  font-size: 13px;
  color: rgba(128,128,128,0.6);
}
@media (max-width: 700px) {
  .feature-cards-grid {
    grid-template-columns: 1fr;
  }
  .fcard:first-child {
    grid-column: 1;
    flex-direction: column;
    min-height: auto;
  }
  .fcard:first-child .fcard-copy { flex: none; }
  .fcard:first-child .fcard-media { min-height: 200px; width: 100%; }
}

/* ============ Globe section ============ */
.globe-section {
  background: #000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.globe-copy {
  text-align: center;
  padding: clamp(80px, 9vw, 130px) var(--gutter) clamp(80px, 10vw, 130px);
  max-width: 1000px;
  flex-shrink: 0;
}
.globe-heading {
  font-size: clamp(33px, 3.3vw, 53px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 20px;
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.65) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.globe-subtitle {
  color: #fff;
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 400;
  line-height: 1.3;
  margin: 0 0 16px;
}
.globe-body {
  color: rgba(255,255,255,0.5);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.globe-img {
  display: block;
  width: 86vw;
  filter: none;
  margin-top: 3vw;
  margin-bottom: -56vw;
}
