:root {
  --red: #e50914;
  --red-deep: #a9060e;
  --ink: #09090b;
  --paper: #f5f3ef;
  --white: #fff;
  --muted: #8e8d91;
  --line: rgba(20, 20, 22, .14);
  --dark-line: rgba(255, 255, 255, .13);
  --max: 1440px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --topbar-h: 40px;
  --header-h: 88px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font: inherit;
  cursor: pointer
}

img {
  display: block;
  max-width: 100%
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E")
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: none
}

.cursor-dot {
  width: 7px;
  height: 7px;
  background: var(--red)
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(229, 9, 20, .55);
  transition: width .3s, height .3s, background .3s, border .3s
}

.section-pad {
  padding: clamp(90px, 10vw, 160px) clamp(22px, 6vw, 100px);
  max-width: var(--max);
  margin: auto
}

.eyebrow {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 800;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted)
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: var(--red);
  display: block
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.055em
}

em {
  font-style: normal;
  color: var(--red)
}

/* ============ ICONS (SVG — crisp at any size, no emoji-font blow-up on mobile) ============ */
.icon-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}

.icon-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* ============ TOP UTILITY BAR ============ */
.topbar {
  height: var(--topbar-h);
  background: #050506;
  color: #c9c9cd;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: transform .5s var(--ease), opacity .4s var(--ease)
}

.topbar-inner {
  height: 100%;
  max-width: var(--max);
  margin: auto;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 11.5px;
  font-weight: 600
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 26px
}

.topbar-left a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .3s
}

.topbar-left a:hover {
  color: #fff
}

.ic {
  color: var(--red);
  font-size: 12px
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px
}

.topbar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9c9ca0
}

.dot-live {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3de283;
  box-shadow: 0 0 0 4px rgba(61, 226, 131, .16);
  display: inline-block
}

.topbar-wa {
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  padding-bottom: 2px;
  transition: .3s
}

.topbar-wa:hover {
  border-color: var(--red);
  color: var(--red)
}

.hide-sm {
  display: inline-flex
}

/* ============ HEADER ============ */
.site-header {
  height: var(--header-h);
  position: fixed;
  z-index: 1000;
  top: var(--topbar-h);
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0 clamp(22px, 5vw, 76px);
  justify-content: space-between;
  transition: .5s var(--ease);
  color: white
}

.site-header.scrolled {
  height: 72px;
  top: 0;
  background: rgba(245, 243, 239, .82);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  color: var(--ink);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .06), 0 18px 40px -22px rgba(0, 0, 0, .25)
}

.topbar.hide-bar {
  transform: translateY(-100%);
  opacity: 0
}

.brand {
  width: 168px;
  display: block;
  /* margin-left: 25px; */
}

.logo {
  width: 100%;
  height: auto;
  object-fit: contain
}

.logo-dark {
  display: none
}

.scrolled .logo-white {
  display: none
}

.scrolled .logo-dark {
  display: block
}

.nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  margin-right: 35px
}

.nav a {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .82;
  transition: .3s;
  padding-bottom: 4px
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1.5px;
  width: 0;
  background: var(--red);
  transition: width .35s var(--ease)
}

.nav a:hover {
  opacity: 1;
  color: var(--red)
}

.nav a:hover::after {
  width: 100%
}

.header-right {
  display: flex;
  align-items: center;
  gap: 22px
}

.header-cta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  background: var(--red);
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  transition: .4s var(--ease)
}

.header-cta .icon-arrow {
  width: 14px;
  height: 14px;
}

.header-cta:hover {
  background: #ff2430;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(229, 9, 20, .55)
}

.header-cta:hover .icon-arrow {
  transform: translateX(4px)
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
  color: var(--paper)
}


.scrolled .menu-toggle {
  color: var(--ink)
}

.menu-toggle span {
  height: 2px;
  width: 25px;
  background: currentColor;
  position: absolute;
  left: 8px;
  transition: .35s
}

.menu-toggle span:first-child {
  top: 17px
}

.menu-toggle span:last-child {
  top: 25px
}

.menu-open .menu-toggle {
  color: #fff
}

.menu-open .menu-toggle span:first-child {
  transform: rotate(45deg);
  top: 21px
}

.menu-open .menu-toggle span:last-child {
  transform: rotate(-45deg);
  top: 21px
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: #08090b;
  color: white;
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  padding: calc(var(--topbar-h) + var(--header-h) + 60px) clamp(22px, 7vw, 120px) 80px;
  overflow: hidden
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(to bottom, black, transparent 90%)
}

.hero-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(229, 9, 20, .25), transparent 67%);
  filter: blur(20px)
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px
}

.hero-copy .eyebrow {
  color: #aaa
}

.hero h1 {
  font-size: clamp(58px, 7.3vw, 128px);
  line-height: .88;
  margin: 24px 0 34px;
  font-weight: 800
}

.hero-lead {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.65;
  color: #a9aaae;
  max-width: 580px
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 40px
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 205px;
  padding: 18px 20px 18px 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em
}

.btn-red {
  background: var(--red);
  color: #fff;
  transition: .4s var(--ease)
}

.btn-red:hover {
  background: #ff2430;
  transform: translateY(-4px)
}

.btn-light {
  background: #fff;
  color: var(--ink)
}

.btn-light:hover .icon-arrow {
  transform: translateY(3px)
}

.text-link {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #d8d8da
}

.text-link span {
  color: var(--red);
  margin-left: 12px
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .12)
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px
}

.trust-item strong {
  font-family: "Manrope";
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em
}

.trust-item span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #8a8a8e
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .14)
}

.hero-visual {
  height: min(72vh, 730px);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center
}

.shield-wrap {
  width: min(68%, 470px);
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 40px 50px rgba(0, 0, 0, .4));
  animation: float 7s ease-in-out infinite
}

.shield-wrap img {
  width: 100%;
  height: auto
}

.shield-back {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 9, 20, .22), transparent 68%);
  filter: blur(20px)
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  transform: rotate(-18deg)
}

.orbit-one {
  width: 75%;
  aspect-ratio: 1;
  animation: spin 24s linear infinite
}

.orbit-two {
  width: 96%;
  aspect-ratio: 1;
  border-color: rgba(229, 9, 20, .16);
  animation: spin 32s linear infinite reverse
}

.orbit-three {
  width: 55%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: spin 17s linear infinite
}

.floating-note {
  position: absolute;
  z-index: 5;
  background: rgba(22, 23, 26, .82);
  border: 1px solid rgba(255, 255, 255, .12);
  backdrop-filter: blur(12px);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25)
}

.floating-note strong {
  font-size: 13px;
  display: block
}

.floating-note small {
  font-size: 10px;
  color: #999;
  display: block;
  margin-top: 2px
}

.note-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  font-size: 18px
}

.note-one {
  top: 16%;
  right: 2%
}

.note-two {
  bottom: 17%;
  left: 0
}

.pulse {
  width: 9px;
  height: 9px;
  background: #3de283;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(61, 226, 131, .12)
}

.hero-bottom {
  position: absolute;
  bottom: 25px;
  left: clamp(22px, 7vw, 120px);
  right: clamp(22px, 7vw, 120px);
  display: flex;
  gap: 17px;
  align-items: center;
  color: #65666b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .18em
}

.hero-bottom span {
  color: var(--red)
}

.statement {
  background: var(--paper);
  position: relative
}

.section-number {
  font-size: 10px;
  letter-spacing: .2em;
  color: #aaa;
  position: absolute;
  top: 60px;
  right: clamp(22px, 6vw, 100px)
}

.statement-layout {
  display: grid;
  grid-template-columns: 1fr 1.7fr .75fr;
  gap: 30px;
  align-items: start
}

.statement h2 {
  font-size: clamp(46px, 5.7vw, 86px);
  line-height: .95;
  max-width: 900px
}

.statement-aside {
  padding-top: 20px
}

.statement-aside p {
  font-size: 15px;
  line-height: 1.7;
  color: #6f6f73;
  max-width: 280px
}

.circle-link {
  width: 66px;
  height: 66px;
  border: 1px solid #bbb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-top: 35px;
  color: var(--ink);
  transition: .35s
}

.circle-link svg {
  width: 20px;
  height: 20px;
  transition: transform .35s var(--ease)
}

.circle-link:hover {
  border-color: var(--red);
  background: var(--red);
  color: white
}

.circle-link:hover svg {
  transform: rotate(-20deg)
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 55px;
  gap: 40px
}

.section-heading h2,
.human h2,
.numbers h2,
.journey h2,
.faq h2,
.stories h2,
.insights h2 {
  font-size: clamp(48px, 6vw, 88px);
  line-height: .9;
  margin-top: 20px
}

.section-heading>p {
  max-width: 330px;
  color: #777;
  line-height: 1.7;
  font-size: 14px
}

.coverage-stage {
  display: grid;
  grid-template-columns: 1.35fr .72fr .95fr;
  grid-template-rows: 430px 330px;
  gap: 12px
}

.coverage {
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  min-height: 0
}

.coverage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s var(--ease);
  filter: saturate(.85)
}

.coverage:hover img {
  transform: scale(1.06);
  filter: saturate(1)
}

.coverage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .03) 15%, rgba(0, 0, 0, .88) 100%)
}

.coverage-content {
  position: absolute;
  left: 27px;
  right: 27px;
  bottom: 25px
}

.coverage-content>span {
  font-size: 10px;
  letter-spacing: .2em;
  color: #c7c7c9
}

.coverage h3 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: .9;
  margin: 10px 0 15px
}

.coverage h3 em {
  color: #ff4750
}

.coverage p {
  font-size: 12px;
  line-height: 1.6;
  color: #d0d0d2;
  max-width: 420px
}

.coverage a {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
  display: inline-flex;
  gap: 15px;
  margin-top: 20px
}

.coverage a b {
  color: #ff3440
}

.coverage-large {
  grid-row: span 2
}

.coverage-tall {
  grid-column: 2;
  grid-row: span 2
}

.coverage-wide {
  grid-column: 3;
  grid-row: 1
}

.coverage-small {
  grid-column: 3;
  grid-row: 2
}

.coverage-business {
  display: none
}

.marquee-band {
  background: var(--red);
  overflow: hidden;
  color: white;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2)
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 38px;
  animation: marquee 26s linear infinite;
  font-family: "Manrope";
  font-weight: 800;
  font-size: clamp(24px, 3vw, 44px);
  letter-spacing: -.04em
}

.marquee-track i {
  font-style: normal;
  font-size: 16px
}

.human {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center
}

.human-image {
  position: relative
}

.human-image img {
  height: 650px;
  width: 100%;
  object-fit: cover;
  filter: grayscale(.25)
}

.image-tag {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: #fff;
  padding: 13px 17px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  gap: 10px;
  align-items: center
}

.image-tag span {
  background: var(--red);
  color: #fff;
  padding: 6px
}

.big-copy {
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.45;
  max-width: 580px;
  margin: 35px 0 45px
}

.principle {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-top: 1px solid var(--line)
}

.principle>span {
  font-size: 10px;
  color: var(--red);
  font-weight: 800
}

.principle h3 {
  font-size: 19px;
  letter-spacing: -.03em;
  margin-bottom: 6px
}

.principle p {
  font-size: 13px;
  color: #777;
  line-height: 1.65;
  max-width: 500px
}

.numbers {
  background: #0a0a0c;
  color: white;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  max-width: none
}

.numbers-intro {
  max-width: 530px
}

.numbers-intro .eyebrow {
  color: #888
}

.numbers h2 {
  margin-top: 20px
}

.number-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--dark-line)
}

.number-item {
  padding: 0 35px;
  border-right: 1px solid var(--dark-line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px
}

.number-item strong {
  font: 800 clamp(72px, 8vw, 140px)/.8 "Manrope";
  letter-spacing: -.08em;
  color: white
}

.number-item span {
  font-size: 11px;
  line-height: 1.5;
  color: #888;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 25px;
  max-width: 120px
}

.journey {
  background: #e8e5df
}

.journey-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 90px
}

.journey-top h2 {
  max-width: 800px
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #bcb9b1
}

.journey-step {
  padding: 30px 30px 0 0;
  position: relative
}

.journey-step:not(:last-child) {
  border-right: 1px solid #bcb9b1;
  padding-right: 40px
}

.journey-step:not(:first-child) {
  padding-left: 35px
}

.step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--red);
  position: absolute;
  top: -6px;
  left: 0
}

.journey-step:not(:first-child) .step-dot {
  left: 35px
}

.journey-step>span {
  font-size: 10px;
  color: #999;
  font-weight: 800
}

.journey-step h3 {
  font-size: 26px;
  line-height: 1;
  margin: 65px 0 20px
}

.journey-step p {
  font-size: 13px;
  color: #74736f;
  line-height: 1.7;
  max-width: 240px
}

.claims {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  background: #0b0b0d;
  color: white
}

.claims-image {
  overflow: hidden
}

.claims-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(.45);
  opacity: .78
}

.claims-copy {
  padding: clamp(70px, 9vw, 140px) clamp(30px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center
}

.claims-copy .eyebrow {
  color: #888
}

.claims-copy h2 {
  font-size: clamp(50px, 5vw, 78px);
  line-height: .92;
  margin: 22px 0 28px
}

.claims-copy>p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.8;
  color: #9b9b9f;
  max-width: 480px;
  margin-bottom: 36px
}

/* ============ STORIES ============ */
.stories {
  background: #fff
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: .4s var(--ease)
}

.story-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .25)
}

.story-stars {
  color: var(--red);
  font-size: 14px;
  letter-spacing: .12em
}

.story-card p {
  font-size: 15px;
  line-height: 1.65;
  color: #333;
  flex-grow: 1
}

.story-author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  padding-top: 18px
}

.story-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: "Manrope";
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0
}

.story-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700
}

.story-author span {
  font-size: 11px;
  color: #888
}

/* ============ INSIGHTS ============ */
.insights {
  background: var(--paper)
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.insight-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: .4s var(--ease)
}

.insight-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, .25)
}

.insight-tag {
  align-self: flex-start;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--ink);
  color: #fff;
  padding: 6px 12px
}

.insight-card h3 {
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -.02em
}

.insight-card p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #777;
  flex-grow: 1
}

.insight-card a {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--red);
  display: inline-flex;
  gap: 12px;
  padding-top: 6px;
  border-top: 1px solid var(--line)
}

.note-section {
  text-align: center;
  position: relative
}

.quote-mark {
  font-family: Georgia;
  font-size: 150px;
  line-height: .5;
  color: var(--red);
  height: 80px
}

.note-section blockquote {
  font: 700 clamp(34px, 4.5vw, 68px)/1.05 "Manrope";
  letter-spacing: -.06em;
  max-width: 1000px;
  margin: 20px auto 40px
}

.quote-line {
  width: 60px;
  height: 2px;
  background: var(--red);
  margin: auto
}

.note-section>p {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: #999;
  margin-top: 20px
}

/* ============ FAQ (smooth accordion) ============ */
.faq {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 100px;
  background: #fff
}

.faq-list {
  border-top: 1px solid var(--line)
}

.faq-item {
  border-bottom: 1px solid var(--line)
}

.faq-summary {
  all: unset;
  box-sizing: border-box;
  cursor: pointer;
  display: grid;
  grid-template-columns: 45px 1fr 30px;
  gap: 15px;
  align-items: center;
  width: 100%;
  padding: 25px 0;
}

.faq-num {
  font: 600 10px "DM Sans";
  color: var(--red)
}

.faq-q {
  font: 700 17px/1.3 "Manrope";
  letter-spacing: -.02em
}

.faq-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  color: var(--ink);
  transition: transform .45s var(--ease), background .3s, border-color .3s, color .3s
}

.faq-toggle svg {
  width: 12px;
  height: 12px
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
  background: var(--red);
  border-color: var(--red);
  color: #fff
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .55s var(--ease)
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr
}

.faq-panel-inner {
  overflow: hidden
}

.faq-panel-inner p {
  color: #777;
  line-height: 1.75;
  font-size: 14px;
  padding: 0 45px 28px 60px;
  max-width: 800px
}

/* ============ CONTACT ============ */
.contact {
  background: #09090b;
  color: #fff;
  position: relative;
  overflow: hidden
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 10%, rgba(229, 9, 20, .28), transparent 32%), radial-gradient(circle at 5% 90%, rgba(229, 9, 20, .12), transparent 30%), linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, .035) 50%);
  opacity: .9
}

.contact-content {
  position: relative
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr .95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  margin-bottom: 70px
}

.contact-content h2 {
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: .95;
  max-width: 640px;
  margin: 22px 0 26px
}

.contact-lead {
  font-size: 15.5px;
  color: #909095;
  max-width: 500px;
  line-height: 1.7
}

.contact-points {
  list-style: none;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 13px
}

.contact-points li {
  font-size: 13px;
  color: #c6c6c9;
  padding-left: 24px;
  position: relative
}

.contact-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #3de283;
  font-weight: 800
}

.contact-form {
  background: rgba(255, 255, 255, .035);
  border: 1px solid #29292d;
  padding: clamp(26px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 18px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #9a9a9e;
  font-weight: 700
}

.field input,
.field select,
.field textarea {
  background: rgba(255, 255, 255, .04);
  border: 1px solid #313136;
  color: #fff;
  padding: 13px 14px;
  font-family: "DM Sans";
  font-size: 13.5px;
  transition: .3s;
  resize: vertical
}

.field input::placeholder,
.field textarea::placeholder {
  color: #6c6c70
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(229, 9, 20, .05)

}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.field select option {
  color: var(--ink)
}

.form-submit {
  width: 100%;
  justify-content: center;
  min-width: 0;
  margin-top: 4px
}

.form-note {
  font-size: 11px;
  color: #6c6c70;
  text-align: center;
  line-height: 1.5
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px
}

.contact-card {
  border: 1px solid #29292d;
  padding: 26px 24px;
  transition: .45s var(--ease);
  background: rgba(255, 255, 255, .025);
  display: flex;
  flex-direction: column;
  gap: 3px
}

.contact-card:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, .06);
  transform: translateY(-5px)
}

.cc-icon {
  font-size: 18px;
  color: var(--red);
  margin-bottom: 10px
}

.contact-card small,
.contact-bottom small {
  font-size: 9px;
  letter-spacing: .2em;
  color: #737378;
  font-weight: 800
}

.contact-card strong {
  display: block;
  font: 700 clamp(16px, 1.6vw, 21px) "Manrope";
  margin: 12px 0 2px;
  word-break: break-word
}

.cc-sub {
  font-size: 14px !important;
  color: #b6b6ba
}

.cc-email {
  font-size: 15px !important;
  word-break: break-all
}

.cc-office {
  font-size: 15px !important
}

.cc-link {
  font-size: 11px;
  color: #aaa;
  margin-top: 8px
}

.contact-card-static {
  cursor: default
}

.contact-card-static:hover {
  transform: none;
  border-color: #29292d;
  background: rgba(255, 255, 255, .025)
}

.contact-bottom {
  border-top: 1px solid #29292d;
  margin-top: 60px;
  padding-top: 30px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 30px
}

.contact-bottom p,
.contact-bottom a {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.6;
  color: #d2d2d4
}

.contact-bottom a:hover {
  color: #fff
}

.demo-label {
  color: #d84950 !important;
  font-size: 9px !important;
  text-transform: uppercase;
  letter-spacing: .08em
}

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 12px
}

.social-row a {
  width: 34px;
  height: 34px;
  border: 1px solid #29292d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  transition: .3s
}

.social-row a:hover {
  background: var(--red);
  border-color: var(--red)
}

/* ============ FOOTER ============ */
.footer {
  background: #050506;
  color: #fff;
  border-top: 1px solid #202024
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-top: clamp(70px, 8vw, 110px);
  padding-bottom: 60px
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px
}

.footer-col h4 {
  font-family: "Manrope";
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #6f6f74;
  margin-bottom: 8px
}

.footer-col a {
  font-size: 13.5px;
  color: #c6c6c9;
  transition: .3s;
  width: max-content
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(3px)
}

.footer-logo {
  width: 190px;
  height: auto;
  margin-bottom: 6px
}

.footer-tagline {
  font-size: 9px;
  letter-spacing: .28em;
  color: #6f6f74;
  font-weight: 700
}

.footer-about {
  font-size: 13px;
  line-height: 1.75;
  color: #97979b;
  max-width: 340px;
  margin: 6px 0 4px
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid #29292d;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  transition: .3s
}

.footer-social a:hover {
  background: var(--red);
  border-color: var(--red)
}

.footer-bottom {
  border-top: 1px solid #202024;
  padding: 26px clamp(22px, 6vw, 100px);
  max-width: var(--max);
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap
}

.footer-legal {
  display: flex;
  gap: 24px
}

.footer-legal a {
  font-size: 11px;
  color: #8a8a8e;
  transition: .3s
}

.footer-legal a:hover {
  color: #fff
}

.copyright {
  font-size: 11px;
  color: #7a7a7e
}

/* ============ WHATSAPP FAB ============ */
.whatsapp-fab {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 56px;
  height: 56px;
  background: #1fb855;
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  z-index: 800;
  box-shadow: 0 14px 34px -10px rgba(31, 184, 85, .55);
  transition: .35s var(--ease)
}

.whatsapp-fab:hover {
  transform: scale(1.08) translateY(-2px)
}

/* ============ MOBILE MENU ============ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: #09090b;
  color: #fff;
  z-index: 900;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 128px 26px 34px;
  gap: 30px;
  transform: translateY(-100%);
  transition: .7s var(--ease);
  visibility: hidden;
  overflow: hidden
}

.mobile-menu::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  right: -170px;
  top: -170px;
  background: radial-gradient(circle, rgba(229, 9, 20, .28), transparent 68%);
  filter: blur(10px);
  pointer-events: none
}

.menu-open .mobile-menu {
  transform: translateY(0);
  visibility: visible
}

.mobile-menu-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #6f6f74
}

.mobile-menu-links {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column
}

.mobile-menu-links a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font: 800 32px/1 "Manrope";
  letter-spacing: -.05em;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .3s
}

.mobile-menu-links a span {
  font: 700 11px "DM Sans";
  color: var(--red);
  letter-spacing: .05em
}

.mobile-menu-links a:hover {
  color: var(--red)
}

.menu-open .mobile-menu-links a {
  opacity: 1;
  transform: none
}

.menu-open .mobile-menu-links a:nth-child(1) {
  transition-delay: .1s
}

.menu-open .mobile-menu-links a:nth-child(2) {
  transition-delay: .16s
}

.menu-open .mobile-menu-links a:nth-child(3) {
  transition-delay: .22s
}

.menu-open .mobile-menu-links a:nth-child(4) {
  transition-delay: .28s
}

.menu-open .mobile-menu-links a:nth-child(5) {
  transition-delay: .34s
}

.menu-open .mobile-menu-links a:nth-child(6) {
  transition-delay: .4s
}

.mobile-menu-footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.mobile-call {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #29292d;
  padding: 16px 18px;
  font: 700 14px "DM Sans";
  color: #fff;
  transition: border-color .3s, background .3s
}

.mobile-call .mc-icon {
  color: var(--red)
}

.mobile-call:hover {
  border-color: var(--red);
  background: rgba(229, 9, 20, .06)
}

.mobile-wa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: var(--red);
  padding: 16px 18px;
  font: 800 12px "DM Sans";
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #fff
}

.mobile-wa .icon-arrow {
  width: 14px;
  height: 14px
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity .9s var(--ease), transform .9s var(--ease)
}

.reveal.is-visible {
  opacity: 1;
  transform: none
}

.reveal-delay {
  transition-delay: .15s
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0)
  }

  50% {
    transform: translateY(-18px) rotate(1deg)
  }
}

@keyframes spin {
  to {
    transform: rotate(342deg)
  }
}

@keyframes marquee {
  to {
    transform: translateX(-50%)
  }
}

@media (min-width:1000px) {

  body.has-cursor .cursor-dot,
  body.has-cursor .cursor-ring {
    display: block
  }

  .magnetic {
    will-change: transform
  }
}

@media (max-width:1050px) {
  .nav {
    gap: 17px;
    margin-right: 20px
  }

  .header-cta span {
    display: none
  }

  .header-cta {
    padding: 12px 14px
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: calc(var(--topbar-h) + var(--header-h) + 55px)
  }

  .hero-copy {
    max-width: 800px
  }

  .hero-visual {
    height: 530px;
    margin-top: -10px
  }

  .shield-wrap {
    width: min(55%, 390px)
  }

  .statement-layout {
    grid-template-columns: .55fr 1.45fr
  }

  .statement-aside {
    grid-column: 2
  }

  .coverage-stage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 300px 300px
  }

  .coverage-large {
    grid-row: span 2
  }

  .coverage-tall {
    grid-column: 2;
    grid-row: 1
  }

  .coverage-wide {
    grid-column: 2;
    grid-row: 2
  }

  .coverage-small {
    grid-column: 1;
    grid-row: 3
  }

  .coverage-business {
    display: block;
    grid-column: 2;
    grid-row: 3
  }

  .human {
    gap: 50px
  }

  .human-image img {
    height: 560px
  }

  .numbers {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .number-list {
    border-left: 0
  }

  .faq {
    gap: 50px
  }

  .story-grid,
  .insight-grid {
    grid-template-columns: 1fr 1fr
  }

  .contact-top {
    grid-template-columns: 1fr
  }

  .contact-actions {
    grid-template-columns: 1fr 1fr
  }

  .footer-top {
    grid-template-columns: 1.4fr 1fr 1fr;
    row-gap: 40px
  }

  .footer-brand-col {
    grid-column: span 3
  }
}

@media (max-width:760px) {

  /* Utility bar is dropped on mobile; header sits flush at the top. */
  :root {
    --topbar-h: 0px
  }

  .topbar {
    display: none
  }

  .hide-sm {
    display: none
  }

  .topbar-inner {
    font-size: 10.5px
  }

  .topbar-badge {
    display: none
  }

  .site-header {
    height: 74px
  }

  .site-header.scrolled {
    height: 65px
  }

  .brand {
    width: 142px
  }

  .nav {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .header-cta {
    display: none
  }

  .hero {
    min-height: auto;
    padding: calc(var(--topbar-h) + var(--header-h) + 40px) 22px 85px;
    display: block
  }

  .hero h1 {
    font-size: clamp(55px, 15vw, 90px);
    margin-top: 20px
  }

  .hero-lead {
    font-size: 15px
  }

  .hero-actions {
    gap: 20px;
    flex-wrap: wrap
  }

  .hero-trust {
    gap: 18px;
    margin-top: 40px;
    padding-top: 26px
  }

  .hero-visual {
    height: 410px;
    margin-top: 25px
  }

  .shield-wrap {
    width: 62%;
    min-width: 230px
  }

  .floating-note {
    min-width: 160px;
    padding: 11px
  }

  .floating-note strong {
    font-size: 11px
  }

  .floating-note small {
    font-size: 9px
  }

  .note-one {
    right: -4%;
    top: 10%
  }

  .note-two {
    left: -3%;
    bottom: 8%
  }

  .hero-bottom {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 30px;
    gap: 9px;
    flex-wrap: wrap;
    line-height: 1.5
  }

  .section-pad {
    padding: 90px 22px
  }

  .section-number {
    top: 38px;
    right: 22px
  }

  .statement-layout {
    display: block
  }

  .statement h2 {
    font-size: clamp(43px, 12vw, 66px);
    margin-top: 35px
  }

  .statement-aside {
    padding-top: 30px
  }

  .circle-link {
    margin-top: 25px
  }

  .section-heading {
    display: block;
    margin-bottom: 35px
  }

  .section-heading h2 {
    font-size: clamp(46px, 13vw, 70px)
  }

  .section-heading>p {
    margin-top: 25px
  }

  .coverage-stage {
    display: flex;
    flex-direction: column
  }

  .coverage {
    height: 430px
  }

  .coverage-tall,
  .coverage-small,
  .coverage-business {
    height: 320px
  }

  .coverage-content {
    left: 22px;
    right: 22px
  }

  .human {
    display: flex;
    flex-direction: column;
    padding-top: 80px
  }

  .human-image {
    width: 100%
  }

  .human-image img {
    height: 470px
  }

  .human-copy h2 {
    font-size: clamp(45px, 13vw, 70px)
  }

  .numbers {
    display: block;
    padding-top: 90px;
    padding-bottom: 90px
  }

  .number-list {
    display: block;
    margin-top: 45px
  }

  .number-item {
    border-right: 0;
    border-top: 1px solid var(--dark-line);
    padding: 35px 0;
    min-height: auto
  }

  .number-item strong {
    font-size: 100px
  }

  .journey-top {
    display: block;
    margin-bottom: 60px
  }

  .journey-top h2 {
    font-size: clamp(48px, 13vw, 70px);
    margin-top: 30px
  }

  .journey-line {
    display: block;
    border-top: 0
  }

  .journey-step,
  .journey-step:not(:first-child),
  .journey-step:not(:last-child) {
    border-left: 1px solid #bcb9b1;
    border-right: 0;
    padding: 0 0 55px 35px
  }

  .journey-step:last-child {
    padding-bottom: 0
  }

  .step-dot,
  .journey-step:not(:first-child) .step-dot {
    left: -6px;
    top: 0
  }

  .journey-step h3 {
    margin: 30px 0 15px
  }

  .claims {
    display: flex;
    flex-direction: column
  }

  .claims-image {
    height: 400px
  }

  .claims-copy {
    padding: 80px 22px 100px
  }

  .claims-copy h2 {
    font-size: clamp(48px, 13vw, 70px)
  }

  .story-grid,
  .insight-grid {
    grid-template-columns: 1fr
  }

  .note-section blockquote {
    font-size: 38px
  }

  .faq {
    display: block
  }

  .faq-heading {
    margin-bottom: 55px
  }

  .faq h2 {
    font-size: clamp(48px, 13vw, 70px)
  }

  .faq-summary {
    grid-template-columns: 30px 1fr 25px
  }

  .faq-q {
    font-size: 15px
  }

  .faq-panel-inner p {
    padding-left: 45px
  }

  .contact-content h2 {
    font-size: clamp(44px, 12vw, 62px)
  }

  .form-row {
    grid-template-columns: 1fr
  }

  .contact-actions {
    grid-template-columns: 1fr
  }

  .contact-bottom {
    grid-template-columns: 1fr;
    margin-top: 50px
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .footer-brand-col {
    grid-column: span 1
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px
  }

  .whatsapp-fab {
    width: 50px;
    height: 50px;
    font-size: 21px;
    bottom: 18px;
    right: 18px
  }

  .mobile-menu {
    padding: 104px 22px 28px
  }

  .mobile-menu-links a {
    font-size: 26px;
    padding: 13px 0
  }
}

@media (prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none
  }

  .marquee-track,
  .shield-wrap,
  .orbit {
    animation: none
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important
  }
}