*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --bg: #F5F8FF;
  --bg-deep: #E8F0FE;
  --ink: #0F172A;
  --ink-muted: #475569;
  --ink-light: #94A3B8;
  --accent: #C2410C;
  --accent-light: #EA580C;
  --accent-glow: #FED7AA;
  --accent-soft: #FFF4EB;
  --accent-cream: #FEF3E9;
  --blue: #1D4ED8;
  --blue-mid: #2563EB;
  --blue-light: #EFF6FF;
  --blue-soft: #DBEAFE;
  --blue-border: #BFDBFE;
  --blue-deep: #1E3A5F;
  --navy: #1E3A5F;
  --navy-glow: #DBEAFE;
  --danger: #B91C1C;
  --danger-bg: #FEF2F2;
  --danger-border: #FECACA;
  --white: #FFFFFF;
  --border: #E2E8F0;
  --border-warm: #BFDBFE;

  --surface: #ffffff;
  --card-inner: #f7f4ef;
  --rule: #d6d0c6;
  --green: #1c4a32;
  --green-mid: #2d6e4a;
  --green-light: #e5efe9;
  --gold: #7a5f00;
  --gold-bg: #fdf3d8;
  --teal: #1a4a48;
  --plum: #3e1f5c;
  --rose: #6e1f2a;
  --slate: #2a3d50;
}

html {
  scroll-behavior: smooth
}

body {
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
  opacity: .02;
  mix-blend-mode: multiply
}

.the-logo {
  max-width: 450px;
}



/* NAV */
nav {
  /*position: fixed;*/
  /*top: 0;*/
  /*left: 0;*/
  /*right: 0;*/
  /*z-index: 100;*/
  /*backdrop-filter: blur(20px) saturate(1.6);*/
  /*background: rgba(255, 255, 255, .92);*/
  border-bottom: 1px solid var(--blue-border);
  overflow:hidden;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(29, 78, 216, .08)
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px
}

.nav-logo {
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em
}

.nav-logo span {
  color: var(--accent)
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center
}

.nav-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
  text-wrap:nowrap;
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: all .2s !important
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  transform: translateY(-1px)
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s cubic-bezier(.16, 1, .3, 1), transform .6s cubic-bezier(.16, 1, .3, 1)
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0)
}

/* HERO */
.hero {
  padding: 70px 40px 60px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, .07) 0%, transparent 70%);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  top: 200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194, 65, 12, .06) 0%, transparent 70%);
  pointer-events: none
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  position: relative
}

.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid var(--danger-border);
  padding: 6px 18px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 28px
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  position: relative
}

.pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--danger);
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, .2, 1) infinite
}

@keyframes ping {

  75%,
  100% {
    transform: scale(2);
    opacity: 0
  }
}

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.035em;
  margin-bottom: 24px
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
  position: relative;
  white-space: nowrap
}

.hero h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--accent-glow);
  z-index: -1;
  opacity: .6
}

.hero-sub {
  color: var(--ink-muted);
  line-height: 1.65;
  margin-bottom: 32px
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center
}

.hero-reassure {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px
}

.hero-reassure svg {
  flex-shrink: 0;
  color: var(--blue-mid)
}

/* buttons */
.btn {
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: .01em
}

.btn svg {
  transition: transform .25s
}

.btn:hover svg {
  transform: translateX(3px)
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(194, 65, 12, .25)
}

.btn-accent:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(234, 88, 12, .3)
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border)
}

.btn-outline:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid);
  background: var(--white)
}

.btn-accent-soft {
  background: var(--white);
  color: var(--blue-deep);
  border: 1.5px solid var(--blue-deep)
}

.btn-accent-soft:hover {
  background: var(--blue-deep);
  color: var(--white);
  transform: translateY(-2px)
}

/* HERO THREAT PANEL */
.hero-threat {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .03), 0 12px 40px rgba(29, 78, 216, .1)
}

.hero-threat::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(29, 78, 216, .07) 0%, transparent 70%)
}

.hero-threat * {
  position: relative
}

.threat-header {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 8px
}

.threat-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--bg-deep)
}

.threat-row:last-child {
  border-bottom: none
}

.threat-label {
  color: var(--ink-muted)
}

.threat-val {
  font-size: 22px;
  font-weight: 500
}

.threat-val.red {
  color: var(--danger);
  font-weight:bold;
}

.threat-val.amber {
  color: #D97706
}

.threat-val.orange {
  color: var(--accent)
}

.threat-source {
  font-size: 10px;
  color: var(--ink-light);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--bg-deep);
  text-align: center;
  line-height: 1.5
}

/* THREAT STRIP */
.threat-strip {
  padding: 0 40px 80px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.threat-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--blue-border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02), 0 8px 32px rgba(29, 78, 216, .07)
}

.threat-item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--bg-deep);
  transition: background .2s
}

.threat-item:last-child {
  border-right: none
}

.threat-item:hover {
  background: var(--blue-light)
}

.threat-num {
  font-size: 40px;
  font-weight: bold;
  color: var(--blue-mid);
  margin-bottom: 4px;
  letter-spacing: -.02em
}

.threat-num.red {
  color: var(--danger)
}

.threat-num.navy {
  color: var(--blue-deep)
}

.ts-label {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .06em
}

.ts-source {
  font-size: 10px;
  color: var(--ink-light);
  margin-top: 6px;
  font-style: italic
}

/* AI RISK SECTION — was dark, now cream with orange accents */
.ai-section {
  padding: 90px 0;
  background: var(--blue-light);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border)
}

.ai-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, .08) 0%, transparent 70%)
}

.ai-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(29, 78, 216, .05) 0%, transparent 70%)
}

.ai-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
  position: relative
}

.ai-section .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 16px
}

.ai-intro .tag::before,
.ai-intro .tag::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid)
}

.ai-section h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  color: var(--ink)
}

.ai-section h2 em {
  font-style: italic;
  color: var(--accent)
}

.ai-intro p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 620px;
  margin: 0 auto
}

.ai-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative
}

.ai-item {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 14px;
  padding: 24px;
  transition: all .3s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .02)
}

.ai-item:hover {
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 78, 216, .10)
}

.ai-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--danger-bg);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
  border: 1px solid var(--danger-border)
}

.ai-item h4 {
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 8px;
  font-weight: 600
}

.ai-item p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.55
}

/* STAKES / SOLUTION SPLIT */
.stake-section {
  padding: 90px 40px;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
  background: var(--white)
}

.stake-left .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--danger);
  margin-bottom: 16px
}

.stake-left .tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--danger)
}

.stake-left h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: 18px
}

.stake-left>p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 28px
}

.stake-points {
  list-style: none
}

.stake-points li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.5
}

.stake-points li:last-child {
  border-bottom: none
}

.stake-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700
}

.stake-icon.red {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid var(--danger-border)
}

.stake-icon.green {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-glow)
}

.stake-right {
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-soft) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden
}

.stake-right::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(29, 78, 216, .10) 0%, transparent 70%)
}

.stake-right * {
  position: relative
}

.stake-right .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--blue-mid);
  border: 1px solid var(--blue-border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px
}

.stake-right h3 {
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -.02em
}

.stake-right>p {
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 24px
}

.channel-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px
}

.channel-list li {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px
}

.channel-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue-mid);
  border-radius: 50%;
  flex-shrink: 0
}

.receive-list {
  list-style: none;
  margin-bottom: 24px
}

.receive-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--blue-border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink)
}

.receive-list li:last-child {
  border-bottom: none
}

.receive-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-mid);
  border: 1px solid var(--blue-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px
}

.stake-stats {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--blue-border)
}

.stake-stats div {
  flex: 1;
  text-align: center
}

.stake-stats .num {
  font-size: 26px;
  color: var(--blue-mid);
  font-weight: 500;
  line-height: 1
}

.stake-stats .lbl {
  font-size: 11px;
  color: var(--ink-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 4px;
  font-weight: 500
}

/* TIMELINE */
.timeline-section {

  padding: 90px 40px;
  max-width: 1320px;
  margin: 0 auto;
  margin-top:10px;
  background: var(--blue-light);
  border-radius: 28px;
  border: 1px solid var(--blue-border);
  position: relative;
  z-index: 2
}

.timeline-header {
  text-align: center;
  margin: 0 auto 56px
}

.timeline-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 14px
}

.timeline-header .tag::before,
.timeline-header .tag::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid)
}

.timeline-header h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  font-weight: 400;
  color: var(--ink)
}

.timeline-header h2 em {
  font-style: italic;
  color: var(--accent)
}

.timeline-header p {
  font-size: 15px;
  color: var(--ink-muted)
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  padding: 0 20px
}

.timeline-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1px;
  border-top: 2px dashed var(--blue-border);
  z-index: 0
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 12px
}

.timeline-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-mid);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 500;
  margin: 0 auto 18px;
  transition: all .3s;
  box-shadow: 0 4px 16px rgba(29, 78, 216, .12)
}

.timeline-step:hover .timeline-num {
  background: var(--blue-mid);
  color: var(--white);
  transform: scale(1.05)
}

.timeline-when {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 6px
}

.timeline-what {
  font-size: 19px;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: -.01em;
  color: var(--ink)
}

.timeline-desc {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5
}

/* ROI CALCULATOR — NEW */
.roi-section {
  padding: 90px 40px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.roi-header {
  text-align: center;
  margin: 0 auto 44px
}

.roi-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 14px
}

.roi-header .tag::before,
.roi-header .tag::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid)
}

.roi-header h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 12px;
  font-weight: 400
}

.roi-header h2 em {
  font-style: italic;
  color: var(--accent)
}

.roi-header p {
  font-size: 15px;
  color: var(--ink-muted)
}

.roi-calc {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .02), 0 20px 60px rgba(29, 78, 216, .08)
}

.roi-inputs {
  padding: 40px;
  border-right: 1px solid var(--blue-border);
  background: var(--white)
}

.roi-inputs h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -.01em
}

.roi-inputs>p {
  color: var(--ink-muted);
  margin-bottom: 28px
}

.roi-field {
  margin-bottom: 20px
}

.roi-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--ink-muted);
  margin-bottom: 8px
}

.roi-field input,
.roi-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--blue-light);
  transition: all .2s;
  font-weight: 500
}

.roi-field input:focus,
.roi-field select:focus {
  outline: none;
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .12)
}

.roi-results {
  padding: 40px;
  background: linear-gradient(135deg, var(--blue-light) 0%, var(--blue-soft) 100%);
  position: relative;
  overflow: hidden
}

.roi-results::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(29, 78, 216, .12) 0%, transparent 70%)
}

.roi-results * {
  position: relative
}

.roi-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 8px
}

.roi-total {
  font-size: 54px;
  color: var(--blue-deep);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 6px
}

.roi-summary {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 24px
}

.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--blue-border);
  font-size: 14px
}

.roi-line:last-of-type {
  border-bottom: none
}

.roi-line-label {
  color: var(--ink-muted)
}

.roi-line-val {
  font-weight: 500;
  color: var(--ink)
}

.roi-line-val.pos {
  color: var(--blue-deep)
}

.roi-line-val.neg {
  color: var(--ink-muted)
}

.roi-final {
  margin-top: 14px;
  padding: 16px 20px;
  background: var(--blue-deep);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600
}

.roi-final .lbl {
  font-size: 13px;
  letter-spacing: .02em
}

.roi-final .val {
  font-size: 24px;
  font-weight: 500
}

.roi-note {
  font-size: 11px;
  color: var(--ink-light);
  font-style: italic;
  margin-top: 16px;
  text-align: center;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

/* PRICING */
.pricing-section {
  padding: 80px 0 100px;
  background: var(--bg);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--blue-border);
  border-bottom: 1px solid var(--blue-border)
}

.pricing-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
  padding: 0 40px
}

.pricing-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 14px
}

.pricing-header .tag::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--blue-mid)
}

.pricing-header h2 {
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 14px;
  font-weight: 400;
  color: var(--ink)
}

.pricing-header h2 em {
  font-style: italic;
  color: var(--accent)
}

.pricing-header p {
  color: var(--ink-muted);
  line-height: 1.6
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: start
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px 24px;
  transition: all .3s;
  position: relative
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06), 0 16px 48px rgba(29, 78, 216, .10)
}

.price-card.featured {
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow)
}

.popular-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 4px 18px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap
}

.price-risk {
  background: var(--danger-bg);
  border: 1px solid var(--danger-border);
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  color: var(--danger);
  line-height: 1.5;
  margin-bottom: 18px;
  font-weight: 500
}

.price-risk strong {
  font-weight: 700
}

.price-tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-mid);
  margin-bottom: 6px
}

.price-name {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--ink)
}

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 2px
}

.price-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-muted);
  align-self: flex-start;
  margin-top: 5px
}

.price-value {
  font-size: 42px;
  color: var(--ink);
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.02em
}

.price-period {
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 18px
}

.price-divider {
  height: 1px;
  background: var(--bg-deep);
  margin-bottom: 16px
}

.price-features {
  list-style: none;
  margin-bottom: 20px
}

.price-features li {
  font-size: 13px;
  color: var(--ink);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4
}

.price-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0
}

.price-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  cursor: pointer;
  border: none;
  font-family: inherit
}

.price-btn.primary {
  background: var(--accent);
  color: var(--white)
}

.price-btn.primary:hover {
  background: var(--accent-light)
}

.price-btn.outline-btn {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border)
}

.price-btn.outline-btn:hover {
  border-color: var(--blue-mid);
  color: var(--blue-mid)
}

.guarantee {
  margin-top: 40px;
  padding: 20px 32px;
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  text-align: center
}

.guarantee svg {
  flex-shrink: 0;
  color: var(--blue-mid)
}

.guarantee p {
  font-size: 14px;
  color: var(--ink);
  font-weight: 500
}

.guarantee strong {
  color: var(--accent);
  font-weight: 700
}

/* GUARANTEES GRID */
.guarantees-section {
  padding: 90px 40px;
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.guarantees-header {
  text-align: center;
  margin: 0 auto 48px
}

.guarantees-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 14px
}

.guarantees-header .tag::before,
.guarantees-header .tag::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid)
}

.guarantees-header h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: -.02em;
  font-weight: 400;
  color: var(--ink)
}

.guarantees-header h2 em {
  font-style: italic;
  color: var(--accent)
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px
}

.gtee-card {
  background: var(--white);
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  padding: 26px 22px;
  text-align: center;
  transition: all .3s
}

.gtee-card:hover {
  border-color: var(--blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(29, 78, 216, .10)
}

.gtee-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--blue-light);
  color: var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 1px solid var(--blue-border)
}

.gtee-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
  letter-spacing: -.01em
}

.gtee-card p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5
}

/* LOGOS */
.logos-section {
  padding: 50px 40px;
  border-top: 1px solid var(--blue-border);
  position: relative;
  z-index: 2;
  background: var(--white)
}

.logos-inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center
}

.logos-inner p {
  font-size: 12px;
  color: var(--ink-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 28px
}

.logos-track {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: .5
}

.logos-track span {
  font-size: 19px;
  color: var(--ink);
  white-space: nowrap;
  font-weight: 500
}

/* CTA */
.cta-section {
  padding: 80px 0px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.cta-section .cta-box {
  margin: 0px 40px;
}

.cta-box {
  background: linear-gradient(180deg, var(--blue-light) 0%, var(--blue-soft) 50%, var(--white) 100%);
  border: 1px solid var(--blue-border);
  border-radius: 28px;
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29, 78, 216, .10) 0%, transparent 70%)
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(194, 65, 12, .07) 0%, transparent 70%)
}

.cta-box * {
  position: relative
}

.cta-host {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px
}

.cta-host-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  font-weight: 500
}

.cta-host-text {
  text-align: left
}

.cta-host-text p:first-child {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600
}

.cta-host-text p:last-child {
  color: var(--ink-muted);
  font-size: 12px
}

.cta-box h2 {
  font-size: clamp(30px, 3.5vw, 44px);
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.02em
}

.cta-box h2 em {
  font-style: italic;
  color: var(--accent)
}

.cta-box>p {
  color: var(--ink-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px
}

.cta-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-muted)
}

.cta-trust div {
  display: flex;
  align-items: center;
  gap: 6px
}

.cta-trust svg {
  color: var(--blue-mid)
}


/* WHY IT MATTERS — deep blue section */
.why-section {
  padding: 90px 0;
  background: #dee6f169;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  z-index: 2
}

.why-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center
}

.why-left .tag-dark {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #3c6593;
  margin-bottom: 18px;
  display: block
}

.why-left h2 {
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -.03em;
  margin-bottom: 22px;
  color: var(--ink)
}

.why-left h2 em {
  font-style: italic;
  color: var(--accent)
}

.why-left>p {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px
}

.why-points {
  list-style: none
}

.why-points li {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.55;
  color: --var(--ink-muted)
}

.why-points li:last-child {
  border-bottom: none
}

.why-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: rgba(249, 115, 22, .15);
  border: 1px solid rgba(249, 115, 22, .35);
  color: #FCA572;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px
}

.why-points strong {
  color: var(--ink);
  font-weight: 600
}

.why-right {}

.risk-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

.risk-card::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -30%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%)
}

.risk-card * {
  position: relative
}

.risk-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px
}

.risk-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--accent)
}

.risk-badge::before {
  content: '▲';
  font-size: 8px
}

.risk-source {
  font-size: 11px;
  color: var(--ink-muted)
}

.risk-big {
  font-size: 72px;
  color: var(--accent);
  line-height: 1;
  font-weight: bold;
  letter-spacing: -.03em;
  margin-bottom: 6px
}

.risk-big-label {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  line-height: 1.4
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.risk-cell {
  background: #F3F4F6;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
}

.risk-cell-val {
  font-size: 24px;
  color: var(--accent);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px
}

.risk-cell-lbl {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.4
}

/* AI COMPARISON — updated */
.ai-compare-section {
  padding: 90px 0;
  background: #dde5ef;
  position: relative;
  z-index: 2
}

.ai-compare-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 52px;
  padding: 0 40px
}

.ai-compare-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 16px
}

.ai-compare-header .tag::before,
.ai-compare-header .tag::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid)
}

.ai-compare-header h2 {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  color: var(--ink)
}

.ai-compare-header h2 em {
  font-style: italic;
  color: var(--accent)
}

.ai-compare-header p {
  font-size: 16px;
  color: var(--ink-muted);
  line-height: 1.65
}

.ai-compare-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start
}

.compare-panel {
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden
}

.compare-panel.bad {
  background: var(--white);
  border: 1px solid var(--border)
}

.compare-panel.good {
  background: var(--blue-deep);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 8px 40px rgba(30, 58, 95, .25)
}

.compare-panel.good::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%)
}

.compare-panel * {
  position: relative
}

.compare-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 20px
}

.compare-badge.bad-badge {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid var(--danger-border)
}

.compare-badge.good-badge {
  background: rgba(249, 115, 22, .18);
  color: #FCA572;
  border: 1px solid rgba(249, 115, 22, .3)
}

.compare-panel h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -.01em;
  margin-bottom: 24px
}

.compare-panel.bad h3 {
  color: var(--ink)
}

.compare-panel.good h3 {
  color: var(--white)
}

.compare-list {
  list-style: none
}

.compare-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5
}

.compare-list li:last-child {
  border-bottom: none
}

.compare-panel.good .compare-list li {
  border-bottom-color: rgba(255, 255, 255, .1)
}

.cmp-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px
}

.cmp-icon.x {
  background: var(--danger-bg);
  color: var(--danger);
  border: 1px solid var(--danger-border)
}

.cmp-icon.tick {
  background: rgba(249, 115, 22, .18);
  color: #FCA572;
  border: 1px solid rgba(249, 115, 22, .3)
}

.compare-list li strong {
  font-weight: 600;
  display: block;
  margin-bottom: 3px
}

.compare-panel.bad .compare-list li strong {
  color: var(--ink)
}

.compare-panel.good .compare-list li strong {
  color: var(--white)
}

.compare-panel.bad .compare-list li span {
  color: var(--ink-muted)
}

.compare-panel.good .compare-list li span {
  color: rgba(255, 255, 255, .62)
}

/* HERO reassurance — green ticks */
.hero-reassure {
  font-size: 13px;
  color: var(--ink-muted);
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap
}

.hero-reassure span {
  display: flex;
  align-items: center;
  gap: 6px
}

.hero-reassure .tick-green {
  color: #16a34a;
  flex-shrink: 0
}

/* 20 FEATURES GRID */
.features-section {
  padding: 90px 0;
  background: var(--white);
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-warm)
}

.features-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 44px;
  padding: 0 40px
}

.features-header .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--blue-mid);
  margin-bottom: 14px
}

.features-header .tag::before,
.features-header .tag::after {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--blue-mid)
}

.features-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -.03em;
  margin-bottom: 14px
}

.features-header h2 em {
  font-style: italic;
  color: var(--accent)
}

.features-header p {
  color: var(--ink-muted);
  line-height: 1.6
}

.features-grid {
  max-width: 1320px;
  margin: 0 auto 32px;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  transition: all .25s
}

.feat-card:hover {
  border-color: var(--blue-mid);
  box-shadow: 0 4px 16px rgba(29, 78, 216, .10);
  transform: translateY(-2px)
}

.feat-check {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
  flex-shrink: 0
}

.feat-card h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -.01em
}

.feat-card p {
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.45
}

.features-banner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px
}

.features-banner-inner {
  background: var(--blue-light);
  border: 1px solid var(--blue-border);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 8px
}

.features-banner-inner strong {
  font-weight: 700;
  color: var(--ink);
}

.features-banner-inner .from {
  font-size: 20px;
  color: var(--ink-muted);
  font-weight: 400;
  margin-left: 4px
}

.features-banner-inner .price {
  font-size: 36px;
  font-weight: bold !important;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-left: 4px
}

/* RESPONSIVE */
@media(max-width:1024px) {
  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .ai-compare-grid {
    grid-template-columns: 1fr
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px
  }

  .threat-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .threat-item:nth-child(2) {
    border-right: none
  }

  .threat-item:nth-child(1),
  .threat-item:nth-child(2) {
    border-bottom: 1px solid var(--border)
  }

  .ai-list {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto
  }

  .stake-section {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px
  }

  .timeline-grid::before {
    display: none
  }

  .roi-calc {
    grid-template-columns: 1fr
  }

  .roi-inputs {
    border-right: none;
    border-bottom: 1px solid var(--border-warm)
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .guarantees-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:640px) {
  .the-logo {
    max-height: 50px;
  }
  .page .card{
      margin-top:60px;
  }
  .cta-section{
      padding-left:0px!important;
      padding-right:0px!important;
      padding-top:0px!important;
  }
  .page .stat-circle-wrap{
      margin-bottom:10px!important;
  }
  .page,
  .page .top-stats {
    display: block !important;
  }

  .page .stat-right {
    flex-direction: row !important;
  }

  .page .circle-label {
    font-size: 1rem !important;
  }

  .page .top-stats .nav-inner {
    padding: 14px 20px
  }

  .hero,
  .threat-strip,
  .stake-section,
  .cta-section,
  .logos-section,
  .timeline-section,
  .roi-section,
  .guarantees-section,
  .ai-compare-header,
  .ai-compare-grid,
  .why-inner,
  .features-header,
  .features-grid,
  .features-banner {
    padding-left: 20px;
    padding-right: 20px
  }

  .features-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero {
    padding-top: 60px;
    padding-bottom: 48px
  }

  .threat-inner {
    grid-template-columns: 1fr
  }

  .threat-item {
    border-right: none;
    border-bottom: 1px solid var(--border)
  }

  .threat-item:last-child {
    border-bottom: none
  }

  .ai-list {
    grid-template-columns: 1fr
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    padding-left: 20px;
    padding-right: 20px
  }

  .pricing-header {
    padding: 0 20px
  }

  .channel-list {
    grid-template-columns: 1fr
  }

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .guarantees-grid {
    grid-template-columns: 1fr
  }

  .cta-box {
    padding: 48px 24px;
    border-radius: 20px
  }

  .roi-inputs,
  .roi-results {
    padding: 28px
  }

  .roi-total {
    font-size: 42px
  }



  body p,
  body div,
  body span {
    font-size: 1.2rem;
  }

  ul {
    margin-left: 0px;
    padding-left: 0px;
  }

  .threat-source {
    font-size: 0.6rem;
  }

  .price-risk {
    font-size: 0.7rem;
  }

  .nav-links a,
  .btn,
  .risk-big-label,
  .ai-compare-header p,
  .timeline-header p,
  .roi-header p,
  .roi-field input,
  .roi-field select,
  .feat-card h4,
  .gtee-card p,
  .logos-inner p,
  .hero-reassure span,
  .risk-cell-lbl,
  .timeline-what {
    font-size: 1.2rem !important;
  }

  .price-btn,
  .case-type,
  .case-outcome,
  .hero-urgency,
  .hero-urgency span,
  .net-card p,
  .hero-threat-label,
  .risk-stat-label,
  .calc-result-header h4,
  .calc-foot,
  .threat-header,
  .ts-source,
  .why-left .tag-dark,
  .risk-badge,
  .risk-source,
  .ai-compare-header .tag,
  .compare-badge,
  .stake-left .tag,
  .stake-right .badge,
  .stake-stats .lbl,
  .timeline-header .tag,
  .timeline-when,
  .roi-header .tag,
  .roi-field label,
  .roi-label,
  .roi-summary,
  .roi-final .lbl,
  .roi-note,
  .features-header .tag,
  .feat-card p,
  .pricing-header .tag,
  .price-period,
  .price-tier,
  .guarantees-header .tag,
  .cta-host-text p,
  .ts-label {
    font-size: 0.9rem !important;
  }

  .timeline-desc {
    font-size: 1rem;
  }

  .threat-label {
    font-size: 1.2rem;
  }

  .threat-val,
  .compare-panel h3 {
    font-size: 1.6rem;
  }

  .threat-num {
    font-size: 3.3rem;
  }

  .features-banner-inner .price {
    font-size: 2.9rem;
  }

  .stake-stats .num {
    font-size: 2.1rem;
  }

  .roi-inputs h3,
  .gtee-card h4,
  .risk-cell-val {
    font-size: 1.8rem;
  }

  .popular-tag {
    font-size: 1.1rem;
  }

  .price-features,
  .price-features li {
    font-size: 1rem;
  }


  .features-banner-inner {
    flex-direction: column;
  }

  .features-grid,
  .risk-grid {
    grid-template-columns: 1fr !important;
  }
}

@media(min-width:1400px) {

  body p,
  body div,
  body span {
    font-size: 1.7rem; 
  }

  ul {
    margin-left: 0px;
    padding-left: 0px;
  }

  .threat-source {
    font-size: 0.8rem !important;
  }

  .price-risk,
  .illus-note {
    font-size: 0.9rem !important;
  }

  .nav-links a,
  .btn,
  .cta-btn,
  .risk-big-label,
  .ai-compare-header p,
  .timeline-header p,
  .roi-header p,
  .roi-field input,
  .roi-field select,
  .feat-card h4,
  .gtee-card p,
  .logos-inner p,
  .hero-reassure span,
  .risk-cell-lbl,
  .timeline-what {
    font-size: 1.4rem !important;
  }

  .price-btn,
  .case-type,
  .case-outcome,
  .hero-urgency,
  .hero-urgency span,
  .net-card p,
  .hero-threat-label,
  .risk-stat-label,
  .calc-result-header h4,
  .calc-foot,
  .threat-header,
  .ts-source,
  .why-left .tag-dark,
  .risk-badge,
  .risk-source,
  .ai-compare-header .tag,
  .compare-badge,
  .stake-left .tag,
  .stake-right .badge,
  .stake-stats .lbl,
  .timeline-header .tag,
  .timeline-when,
  .roi-header .tag,
  .roi-field label,
  .roi-label,
  .roi-summary,
  .roi-final .lbl,
  .roi-note,
  .features-header .tag,
  .feat-card p,
  .pricing-header .tag,
  .price-period,
  .price-tier,
  .guarantees-header .tag,
  .cta-host-text p,
  .ts-label,
  .eyebrow,
  .cats-heading,
  .ev-sub,
  .ev-text,
  .ctag,
  .card-title,
  .live-badge,
  .circle-label,
  .stat-desc,
  .stat-unit {
    font-size: 1.1rem !important;
  }

  .timeline-desc,
  .cat-name,
  .left-note {
    font-size: 1.2rem !important;
  }

  .threat-label {
    font-size: 1.3rem;
  }

  .threat-val,
  .compare-panel h3 {
    font-size: 1.8rem;
  }

  .threat-num {
    font-size: 3.5rem;
  }

  .features-banner-inner .price {
    font-size: 3.1rem;
  }

  .stake-stats .num {
    font-size: 2.8rem;
  }

  .roi-inputs h3,
  .gtee-card h4 {
    font-size: 2rem;
  }

  .risk-cell-val {
    font-size: 2.2rem;
  }

  .popular-tag {
    font-size: 1.3rem;
    top: -25px;
  }

  .price-features,
  .price-features li {
    margin-left: 0px;
    padding-left: 0px;
    font-size: 1.2rem;
  }

  .our-clients-container .our-clients-slick {
    padding: 0px;
  }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}



.nav-inner {
  margin: auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-links a {
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  transition: .3s;
}

.nav-links a:hover {
  opacity: .8;
}

.nav-cta {
  background: #c2410c;
  color: #fff !important;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  height: 3px;
  width: 28px;
  background: #111;
  margin: 6px auto;
  border-radius: 3px;
  transition: .3s;
}

/* Mobile */
@media (max-width: 991px) {

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .06);
  }

  .nav-links.active {
    max-height: 500px;
    padding: 30px 20px;
  }

  .nav-links a {
    font-size: 20px;
  }

  .nav-cta {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

}



.page {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: center;
}

/* ── LEFT ── */
.page .left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.page .eyebrow {
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.page .hero-title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.page .hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}

.page .hero-sub {
  /*font-size: 14.5px;*/
  font-weight: 400;
  color: var(--ink-mid);
  line-height: 1.7;
  max-width: 340px;
}

.page .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 14px 26px;
  border-radius: 4px;
  text-decoration: none;
  width: fit-content;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.page .cta-btn:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.page .cta-arrow {
  width: 16px;
  height: 16px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

.page .left-note {
  font-size: 11px;
  color: var(--ink-light);
  line-height: 1.65;
  max-width: 320px;
  border-top: 1px solid var(--rule);
  padding-top: 16px;
}

/* ── RIGHT CARD ── */
.page .card {
  background: var(--surface);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 48px rgba(20, 35, 20, 0.12), 0 1px 4px rgba(20, 35, 20, 0.06);
}

.page .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.page .card-title {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink-mid);
  letter-spacing: 0.01em;
}

.page .live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 20px;
}

.page .live-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

/* TOP STATS */
.page .top-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.page .stat-circle-wrap {
  background: var(--green-light);
  border-radius: 12px;
  padding: 18px 14px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.page .circle-svg {
  width: 220px;
  height: 220px;
  display: block;
  margin: 0 auto 18px;
}

.page .circle-label {
  font-size: 2rem;
  margin-top: -15px;
  line-height: 1.2;
  font-weight: 700;
}

.page .stat-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page .stat-box {
  background: var(--card-inner);
  border-radius: 10px;
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page .stat-value {
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}

.page .stat-unit {
  font-size: 12px;
  font-weight: 400;
  margin-left: 3px;
}

.page .stat-desc {
  font-size: 11px;
  color: var(--ink-light);
  margin-top: 5px;
  line-height: 1.4;
}

/* DIVIDER */
.page .divider {
  height: 1px;
  background: var(--rule);
  margin: 16px 0;
}

/* DISABILITY CATEGORIES */
.page .cats-heading {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 12px;
}

.page .cats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.page .cat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--card-inner);
  border-radius: 7px;
  padding: 9px 12px;
}

.page .cat-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.page .cat-name {
  font-size: 11.5px;
  color: var(--ink-mid);
  line-height: 1.3;
}

/* EVIDENCE TICK ROW */
.page .evidence-row {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-light);
  border-radius: 7px;
  padding: 10px 14px;
  margin: 16px 0 14px;
}

.page .ev-icon {
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 9px;
  flex-shrink: 0;
}

.page .ev-text {
  font-size: 11.5px;
  color: var(--green);
  font-weight: 500;
}

.page .ev-sub {
  font-size: 10.5px;
  color: var(--ink-light);
  margin-left: auto;
  white-space: nowrap;
}

/* COMPLIANCE TAGS */
.page .compliance-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
}

.page .ctag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--green);
  font-weight: 500;
}

.page .ctag-check {
  width: 15px;
  height: 15px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 8px;
  flex-shrink: 0;
}

/* ILLUSTRATIVE NOTE */
.page .illus-note {
  font-size: 9.5px;
  color: var(--ink-light);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
  line-height: 1.5;
}