
:root {
  --ink: #141a33;
  --ink-soft: #3d4665;
  --ink-mute: #6c7593;
  --indigo: #2f3bd6;
  --indigo-deep: #1b2382;
  --indigo-tint: #eef0ff;
  --gold: #0044a7;
  --gold-deep: #0044a7;
  --gold-tint: #fff6e5;
  --mint: #0f9d76;
  --mint-tint: #e7f8f2;
  --rose: #e0446d;
  --paper: #ffffff;
  --paper-2: #fbfbfe;
  --paper-3: #f5f6fc;
  --line: #e4e6f2;
  --line-strong: #cfd3e8;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-s: 0 2px 8px rgba(20, 26, 51, .05);
  --shadow-m: 0 12px 34px -14px rgba(20, 26, 51, .16);
  --shadow-l: 0 30px 70px -28px rgba(20, 26, 51, .26);
  --display: "Bricolage Grotesque", serif;
  --body: "Instrument Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", monospace;
}


* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--body);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0
}

    .container {
        max-width: 1240px;
    }

p {
  margin: 0 0 1.05rem
}

a {
  color: var(--indigo);
  text-decoration: none
}

strong,
b {
  font-weight: 700;
  color: var(--ink)
}

img {
  max-width: 100%;
  height: auto
}

::selection {
  background: var(--gold);
  color: #2a1c00
}


.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 9999;
  background: transparent
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--indigo), var(--gold));
  box-shadow: 0 0 12px rgba(47, 59, 214, .5)
}


.shell {
  width: 100%;
  padding-left: 0;
  padding-right: 0
}

.shell>.row {
  --bs-gutter-x: 0
}

.band {
  position: relative;
  padding: 15px;
}


.band-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(var(--line-strong) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000, transparent 75%);
  opacity: .55;
}

.band>.container-fluid,
.band .shell {
  position: relative;
  z-index: 1
}

.inner {
  padding-left: clamp(.25rem, 1.5vw, 1.75rem);
  padding-right: clamp(.25rem, 1.5vw, 1.75rem)
}


.center-measure {
  max-width: 69ch;
  margin-inline: auto
}


.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--indigo);
  background: var(--indigo-tint);
  border: 1px solid #d9ddff;
  padding: .4rem .85rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.eyebrow i {
  font-size: .9rem
}

.eyebrow.gold {
  color: var(--gold-deep);
  background: var(--gold-tint);
  border-color: #f7e2bd
}

.eyebrow.mint {
  color: #0274d5;
    background: #ecf6ff;
    border-color: #0274d5;
}

h1.display-hero {
  font-size: clamp(2.15rem, 5vw, 3.3rem);
  line-height: 1.16
}

h2.sec-title {
  font-size: clamp(1.75rem, 3.7vw, 2.5rem);
  margin-bottom: 1.1rem
}

h3.sub-title {
  font-size: clamp(1.3rem, 2.1vw, 1.8rem)
}


.mark {
  position: relative;
  display: inline-block;
  z-index: 1;
  white-space: nowrap
}

.mark {
    padding: .1875em;
    color: #2159eb;
    background-color: #ffffff00;
}

.mark::after {
  content: "";
  position: absolute;
  left: -.12em;
  right: -.12em;
  bottom: .04em;
  height: .42em;
  background: #dbdcf5;
  opacity: .42;
  z-index: -1;
  border-radius: 3px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .75s cubic-bezier(.2, .8, .2, 1) .15s;
}

.in-view .mark::after {
  transform: scaleX(1)
}

.mark-indigo::after {
  background: var(--indigo);
  opacity: .16
}

.mark-mint::after {
  background: #b1b1ff;
  opacity: .2
}


.swash {
  position: relative;
  display: inline-block
}

.swash svg {
  position: absolute;
  left: 0;
  bottom: -.1em;
  width: 100%;
  height: .2em;
  overflow: visible
}

.swash svg path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 9;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
}

.in-view .swash svg path {
  animation: draw 1.1s cubic-bezier(.4, 0, .2, 1) .25s forwards
}

@keyframes draw {
  to {
    stroke-dashoffset: 0
  }
}

.grad-ink {
  background: linear-gradient(100deg, var(--indigo-deep) 10%, var(--indigo) 45%, #0d60d5 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.script-note {
  font-family: var(--display);
  font-weight: 600;
  color: var(--gold-deep);
  font-size: 1.05rem;
}

.title-rule {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.4rem
}

.title-rule .bar {
  height: 4px;
  width: 46px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--gold))
}

.title-rule .num {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .2em;
  color: var(--ink-mute);
  text-transform: uppercase
}

.lead-xl {
  font-size: clamp(1.05rem, 1.5vw, 1.24rem);
  color: var(--ink-soft);
  line-height: 1.7
}

.text-soft {
  color: var(--ink-soft)
}

.text-mute {
  color: var(--ink-mute)
}


.btn-cta {
  --pad-y: 1.05rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: -.01em;
  color: #fff;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  border: 0;
  border-radius: 100px;
  padding: var(--pad-y) 2.3rem;
  box-shadow: 0 14px 30px -12px rgba(47, 59, 214, .6), inset 0 1px 0 rgba(255, 255, 255, .28);
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s;
  text-align: left;
}

.btn-cta::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-18deg);
  animation: sheen 4.6s ease-in-out infinite;
}

@keyframes sheen {

  0%,
  72% {
    left: -120%
  }

  100% {
    left: 150%
  }
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.015);
  color: #fff;
  box-shadow: 0 20px 40px -12px rgba(47, 59, 214, .68)
}

.btn-cta i {
  font-size: 1.15rem
}

.btn-cta.gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #2c1c00;
  box-shadow: 0 14px 30px -12px rgba(201, 123, 6, .6), inset 0 1px 0 rgba(255, 255, 255, .4)
}

.btn-cta.gold:hover {
  color: #2c1c00;
  box-shadow: 0 20px 42px -12px rgba(201, 123, 6, .7)
}

.btn-cta.xl {
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  padding: 1.25rem 2.9rem
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid var(--line-strong);
  background: #fff;
  border-radius: 100px;
  padding: .95rem 1.7rem;
  transition: .28s;
}

.btn-ghost:hover {
  border-color: var(--indigo);
  color: var(--indigo);
  transform: translateY(-2px)
}

.cta-sub {
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: .9rem
}


.pulse-wrap {
  position: relative;
  display: inline-block
}


.pulse-wrap.gold::before {
  border-color: var(--gold)
}

@keyframes pulseRing {
  0% {
    transform: scale(.94);
    opacity: .65
  }

  70% {
    transform: scale(1.09);
    opacity: 0
  }

  100% {
    opacity: 0
  }
}


.topbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

.topbar.stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(20, 26, 51, .5)
}

.brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -.02em
}

.brand-badge {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  box-shadow: 0 6px 16px -6px rgba(47, 59, 214, .7);
}

.brand small {
  display: block;
  font-family: var(--mono);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--ink-mute);
  font-weight: 500;
  text-transform: uppercase
}

.nav-links {
  display: flex;
  gap: 1.6rem;
  align-items: center
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: .2rem 0
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .28s
}

.nav-links a:hover {
  color: var(--ink)
}

.nav-links a:hover::after {
  width: 100%
}

.btn-nav {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  padding: .6rem 1.35rem;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-deep));
  white-space: nowrap;
  transition: .28s;
}

.btn-nav:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(47, 59, 214, .7)
}


.hero {
  position: relative;
  padding: clamp(2.6rem, 3vw, 3.5rem) 0 clamp(3rem, 1vw, 4.5rem);
  overflow: hidden
}

.hero::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 150%;
  pointer-events: none;
  z-index: 0;
}

@keyframes drift {
  from {
    transform: translateX(-50%) scale(1)
  }

  to {
    transform: translateX(-48%) scale(1.09)
  }
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

.hero .inner {
  position: relative;
  z-index: 2
}

.hero-kicker {
 display: inline-flex
;
    align-items: center;
    gap: .6rem;
    flex-wrap: wrap;
    font-size: 1.33rem;
    font-weight: 700;
    color: #000000;
    background: #fff;
    border: 1px solid #d9ddff;
    padding: .5rem 1rem;
    border-radius: 100px;
    box-shadow: var(--shadow-s);
}

.hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(15, 157, 118, .16);
  animation: blip 2s ease-in-out infinite
}

@keyframes blip {
  50% {
    opacity: .35;
    box-shadow: 0 0 0 7px rgba(15, 157, 118, 0)
  }
}

.hero h1 .tm {
  font-size: .5em;
  vertical-align: super;
  font-weight: 600;
  letter-spacing: 0
}

.hero-sub-band {
  display: inline-block;
    font-family: var(--display);
    font-weight: 700;
    font-size: clamp(1.05rem, 2vw, 1.9rem);
    color: var(--ink);
    background: #ffffff;
    border: 1px dashed #2b37c7;
    padding: .55rem 1.2rem;
    border-radius: 12px;
    margin: 1.4rem 0 1.5rem;
}

.hero-sub-band b {
  color: var(--gold-deep)
}

.hero-desc {
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  color: var(--ink-soft);
}

.hero-visual {
  position: relative
}

.hero-visual img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 34px 46px rgba(20, 26, 51, .2));
  animation: float 7s ease-in-out infinite
}

@keyframes float {
  50% {
    transform: translateY(-14px)
  }
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 2%;
  height: 26px;
  z-index: 1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20, 26, 51, .17), transparent 70%);
  filter: blur(7px);
}

.orb {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(2px)
}

.orb-1 {
  width: 120px;
  height: 120px;
  top: 2%;
  right: 2%;
  background: radial-gradient(circle at 34% 30%, #ffd08a, var(--gold));
  opacity: .5;
  animation: float 9s ease-in-out infinite
}

.orb-2 {
  width: 74px;
  height: 74px;
  bottom: 16%;
  left: -2%;
  background: radial-gradient(circle at 34% 30%, #a7b0ff, var(--indigo));
  opacity: .35;
  animation: float 6.5s ease-in-out infinite reverse
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .55rem 1rem;
  box-shadow: var(--shadow-m);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

.float-chip i {
  font-size: 1rem
}

.chip-a {
  top: 6%;
  left: -6%;
  animation: float 5.6s ease-in-out infinite
}

.chip-a i {
  color: var(--indigo)
}

.chip-b {
  bottom: 24%;
  right: -5%;
  animation: float 6.8s ease-in-out infinite .6s
}

.chip-b i {
  color: var(--gold-deep)
}

.chip-c {
  bottom: 4%;
  left: 4%;
  animation: float 7.6s ease-in-out infinite .3s
}

.chip-c i {
  color: var(--mint)
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.9rem;
  align-items: center;
  border-top: 1px solid var(--line);
  margin-top: 2.2rem;
  padding-top: 1.3rem;
}

.hero-strip span {

  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .86rem;
  font-weight: 600;
  color: var(--ink-soft)
}

.hero-strip i {
  color: var(--mint);
  font-size: 1.05rem
}


.panel {
  position: relative;
  overflow: hidden;
  height: 100%;
}



.panel-tint {
  background: var(--paper-3);
  border-color: #e8eaf6
}

.panel-quote {
  background: linear-gradient(180deg, #fff, var(--paper-3));
      border: 2px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1.4rem 1.6rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.02rem, 1.5vw, 1.5rem);
  color: var(--ink);
  box-shadow: var(--shadow-s);
  font-weight: 700;
}

.callout {
  position: relative;
}


.callout .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
  margin-bottom: .5rem
}

.icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1.05rem;
  flex: 0 0 auto;
  background: var(--indigo-tint);
  color: var(--indigo);
  border: 1px solid #dcdfff;
}

.icon-badge.gold {
  background: var(--gold-tint);
  color: var(--gold-deep);
  border-color: #f6e0b9
}

.icon-badge.mint {
  background: var(--mint-tint);
  color: var(--mint);
  border-color: #c9ecdf
}

.icon-badge.rose {
  background: #fdeaf0;
  color: var(--rose);
  border-color: #f8cfdc
}

.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border: 2px solid #ffccda;
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  height: 100%;
  font-weight: 600;
  color: var(--ink-soft);
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  transition: .35s;
  box-shadow: var(--shadow-s);
}


.pain-card i {
  color: var(--rose);
  font-size: 1.05rem;
  margin-top: .28rem;
  flex: 0 0 auto
}


.proof-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-l);
  overflow: hidden;
}

.proof-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.1rem;
  background: var(--paper-3);
  border-bottom: 1px solid var(--line);
}

.proof-bar .dots {
  display: flex;
  gap: .35rem
}

.proof-bar .dots i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: block
}

.proof-bar .dots i:nth-child(1) {
  background: #ff5f57
}

.proof-bar .dots i:nth-child(2) {
  background: #febc2e
}

.proof-bar .dots i:nth-child(3) {
  background: #28c840
}

.proof-bar span {
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .06em
}

.proof-scroll {
  overflow-x: auto;
  background: #fff
}

.proof-scroll img {
  display: block;
  min-width: 760px;
  width: 100%
}

.proof-cap {
  font-size: .8rem;
  color: var(--ink-mute);
  padding: .75rem 1.1rem;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  margin: 0
}


.tick-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.tick-list li {
  position: relative;
  padding: .6rem 0 .6rem 2.4rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.tick-list li:last-child {
  border-bottom: 0
}

.tick-list li::before {
  content: "\F26E";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: .62rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .82rem;
  background: #e9f3fb;
    color: #0272d2;
}

.tick-list.indigo li::before {
  background: var(--indigo-tint);
  color: var(--indigo)
}

.tick-list li strong {
  color: var(--ink)
}

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .6rem
}

.result-list li {
  display: flex
;
    align-items: center;
    gap: .7rem;
    background: #fff;
    padding: .2rem 0rem;
    font-weight: 700;
    font-size: 1.0rem;
}


.result-list li i {
  color: #2a35be;
  font-size: 1.05rem
}


.gpt-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  height: 100%;
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s, border-color .4s;
}

.gpt-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s cubic-bezier(.2, .8, .2, 1);
}

.gpt-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-m);
  border-color: var(--line-strong)
}

.gpt-card:hover::before {
  transform: scaleX(1)
}

.gpt-card .emoji {
  font-size: 1.7rem;
  line-height: 1;
  display: block;
  margin-bottom: .75rem
}

.gpt-card h4 {
  font-size: 1.16rem;
  margin-bottom: .9rem;
  letter-spacing: -.02em
}

.gpt-card .tools {
  list-style: none;
  padding: 0;
  margin: 0 0 .95rem
}

.gpt-card .tools li {
  display: flex;
  gap: .55rem;
  align-items: flex-start;
  font-size: .925rem;
  font-weight: 600;
  color: var(--ink);
  padding: .24rem 0;
}

.gpt-card .tools li i {
 color: var(--indigo);
    font-size: 1.0rem;
    flex: 0 0 auto;
}

.gpt-card p {
  font-size: .925rem;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.62
}

.gpt-card .idx {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  font-family: var(--mono);
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--line-strong);
}

.count-pill {
  display: inline-flex
;
    align-items: baseline;
    gap: .5rem;
    background: #e5eaff;
    color: #000000;
    border-radius: 100px;
    padding: .55rem 1.35rem;
    font-family: var(--mono);
    font-size: .78rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
}

.count-pill b {
  font-family: var(--display);
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0
}


.mastery {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.15rem;
  height: 100%;
  box-shadow: var(--shadow-s);
  transition: .35s;
}


.mastery i {
  font-size: 1.3rem;
  color: var(--indigo);
  flex: 0 0 auto;
  margin-top: .15rem
}

.mastery h5 {
  font-size: 1rem;
  margin-bottom: .2rem
}

.mastery span {
  font-size: .9rem;
  color: var(--ink-mute);
  line-height: 1.5;
  display: block
}


.flow {
  position: relative;
  padding: 1rem 0
}

.flow::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--line-strong) 6%, var(--line-strong) 94%, transparent);
}

.flow-item {
  position: relative;
  padding: 0 0 1.5rem 5.4rem;
  min-height: 76px
}

.flow-item:last-child {
  padding-bottom: 0
}

.flow-node {
  position: absolute;
  left: 0;
  top: 0;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-m);
  z-index: 2;
  transition: .42s cubic-bezier(.2, .8, .2, 1);
}

.flow-node .step-n {
  font-family: var(--mono);
  font-size: .8rem;
  font-weight: 700;
  color: #000;
  letter-spacing: .1em;
  display: block;
  text-align: center;
  line-height: 1
}

.flow-node .step-e {
  font-size: 1.45rem;
  line-height: 1.15;
  display: block
}

.flow-item:hover .flow-node {
  transform: scale(1.08) rotate(-4deg);
  border-color: var(--gold);
  box-shadow: 0 18px 34px -14px rgb(82 167 255 / 45%);
}

.flow-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.3rem;
  box-shadow: var(--shadow-s);
  transition: .35s;
}

.flow-item:hover .flow-card {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-m);
  transform: translateX(4px)
}

.flow-card h4 {
  font-size: 1.1rem;
  margin-bottom: .3rem
}

.flow-card p {
  margin: 0;
  font-size: .94rem;
  color: var(--ink-soft)
}

.flow-arrow {
  position: absolute;
  left: 24px;
  font-size: 1.1rem;
  color: var(--line-strong);
  z-index: 3;
  background: var(--paper-2);
  padding: .1rem 0;
}


.vs-card {
  border-radius: var(--radius);
  padding: clamp(1.3rem, 2.2vw, 1.9rem);
  height: 100%;
  border: 1px solid var(--line);
  background: #fff
}

.vs-card.bad {
  background: var(--paper-3);
  border-color: #e6e8f3
}

.vs-card.good {
  background: linear-gradient(170deg, #fff, var(--indigo-tint));
  border-color: #d9ddff;
  box-shadow: var(--shadow-m)
}

.vs-card h4 {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.1rem;
  margin-bottom: 1rem
}

.vs-card.bad h4 i {
  color: var(--ink-mute)
}

.vs-card.good h4 i {
  color: var(--indigo)
}

.vs-list {
  list-style: none;
  padding: 0;
  margin: 0
}

.vs-list li {
  position: relative;
  padding: .45rem 0 .45rem 1.7rem;
  font-size: .95rem;
  color: var(--ink-soft)
}

.vs-list li::before {
  content: "\F62A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: .5rem;
  font-size: .8rem;
  color: var(--ink-mute)
}

.vs-list.win li::before {
  content: "\F26B";
  color: var(--mint)
}

.vs-list.win li {
  color: var(--ink);
  font-weight: 600
}


.who-card {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.05rem 1.15rem;
  box-shadow: var(--shadow-s);
  transition: .38s cubic-bezier(.2, .8, .2, 1);
}

.who-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-m);
  border-color: var(--gold)
}

.who-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  background: var(--gold-tint);
  color: var(--gold-deep);
  border: 1px solid #f7e3c0;
}

.who-card:nth-child(odd) .who-ico {
  background: var(--indigo-tint);
  color: var(--indigo);
  border-color: #dcdfff
}

.who-card h5 {
  font-size: 1rem;
  margin-bottom: .15rem
}

.who-card span {
  display: block;
  font-size: .89rem;
  color: var(--ink-mute);
  line-height: 1.5
}


.offer-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--indigo-tint) 55%, #fff 100%);
  border: 1px solid #d9ddff;
  box-shadow: var(--shadow-l);
  padding: clamp(1.8rem, 4vw, 3.4rem) clamp(1.3rem, 3.5vw, 3rem);
}

.offer-wrap::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -12%;
  width: 52%;
  height: 180%;
      background: radial-gradient(circle, rgb(244 245 251), transparent 62%);
  pointer-events: none;
}

.offer-wrap::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(47, 59, 214, .22);
  border-radius: 22px;
  pointer-events: none;
}

.offer-inner {
  position: relative;
  z-index: 2
}

.price-flag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--rose);
  color: #fff;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .5rem 1.1rem;
  border-radius: 100px;
  margin-bottom: 1.2rem;
  box-shadow: 0 10px 24px -12px rgba(224, 68, 109, .75);
}

.price-flag i {
  animation: tick 1.1s steps(2) infinite
}

@keyframes tick {
  50% {
    opacity: .25
  }
}

.offer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin: 1.6rem 0 1.9rem
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .65rem 1.25rem;
  font-weight: 700;
  font-size: .93rem;
  box-shadow: var(--shadow-s);
  transition: .3s;
}

.offer-badge:hover {
  transform: translateY(-3px);
  border-color: var(--indigo);
  box-shadow: var(--shadow-m)
}

.offer-badge i {
  color: #2940d2;
  font-size: 1.05rem
}

.final-line {
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: -.02em;
  font-size: clamp(1.15rem, 2.3vw, 1.75rem);
  line-height: 1.3;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.6rem;
  justify-content: center;
  margin-top: 1.6rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(47, 59, 214, .14)
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft)
}

.trust-row i {
  color: var(--indigo)
}


.guarantee {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-m);
  position: relative;
  overflow: hidden;
}

.guarantee::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -60%;
  width: 44%;
  height: 180%;
  background: radial-gradient(circle, rgba(15, 157, 118, .14), transparent 62%);
  pointer-events: none;
}

.seal {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  width: clamp(112px, 13vw, 150px);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background: linear-gradient(150deg, #232ca1, #1357d1);
    box-shadow: 0 18px 40px -16px rgb(104 147 255), inset 0 2px 0 rgba(255, 255, 255, .3);
  font-family: var(--display);
  font-weight: 800;
  line-height: 1;
}

.seal::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 2px dashed rgba(255, 255, 255, .5);
  border-radius: 50%;
  animation: spin 26s linear infinite
}

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

.seal .n {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  display: block
}

.seal .t {
  font-size: .62rem;
  font-family: var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-top: .25rem
}


.faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm) !important;
  margin-bottom: .75rem;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-s);
  transition: .3s;
}

.faq .accordion-item:hover {
  border-color: var(--line-strong)
}

.faq .accordion-button {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: var(--ink);
  background: #fff;
  padding: 1.1rem 1.3rem;
  letter-spacing: -.015em;
  box-shadow: none !important;
  border: 0;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--indigo);
  background: var(--indigo-tint)
}

.faq .accordion-button::after {
  background-image: none;
  content: "\F64D";
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  width: auto;
  height: auto;
  color: var(--indigo);
  transition: transform .3s;
}

.faq .accordion-button:not(.collapsed)::after {
  content: "\F63B";
  transform: none
}

.faq .accordion-button:focus-visible {
  outline: 2px solid var(--indigo);
  outline-offset: -2px
}

.faq .accordion-body {
  color: var(--ink-soft);
  padding: 1.15rem 1.3rem 1.35rem;
  border-top: 1px solid var(--line);
  font-size: .985rem
}

.faq-num {
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold-deep);
  background: var(--gold-tint);
  border-radius: 7px;
  padding: .2rem .5rem;
  margin-right: .8rem;
  flex: 0 0 auto;
}


.site-footer {
  background: var(--paper-3);
  border-top: 1px solid var(--line);
  padding: clamp(2.2rem, 4vw, 1.2rem) 0 1.6rem
}

.site-footer p {
  font-size: .88rem;
  color: var(--ink-mute);
  margin-bottom: .5rem
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem 1.4rem
}

.foot-links a {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-soft)
}

.foot-links a:hover {
  color: var(--indigo)
}

.foot-rule {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.6rem 0 1.2rem
}


.to-top {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1040;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  border: 0;
  font-size: 1.1rem;
  box-shadow: var(--shadow-m);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: .35s;
}

.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: none
}

.to-top:hover {
  background: var(--indigo);
  transform: translateY(-3px)
}


.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal.in-view {
  opacity: 1;
  transform: none
}

.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal-left.in-view {
  opacity: 1;
  transform: none
}

.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .8s cubic-bezier(.2, .8, .2, 1), transform .8s cubic-bezier(.2, .8, .2, 1)
}

.reveal-right.in-view {
  opacity: 1;
  transform: none
}

.reveal-zoom {
  opacity: 0;
  transform: scale(.95);
  transition: opacity .85s cubic-bezier(.2, .8, .2, 1), transform .85s cubic-bezier(.2, .8, .2, 1)
}

.reveal-zoom.in-view {
  opacity: 1;
  transform: none
}

[data-delay="1"] {
  transition-delay: .09s
}

[data-delay="2"] {
  transition-delay: .18s
}

[data-delay="3"] {
  transition-delay: .27s
}

[data-delay="4"] {
  transition-delay: .36s
}

[data-delay="5"] {
  transition-delay: .45s
}

[data-delay="6"] {
  transition-delay: .54s
}


.hero-anim {
  opacity: 0;
  transform: translateY(22px);
  animation: heroIn .95s cubic-bezier(.2, .8, .2, 1) forwards
}

.hero-anim.d1 {
  animation-delay: .1s
}

.hero-anim.d2 {
  animation-delay: .22s
}

.hero-anim.d3 {
  animation-delay: .34s
}

.hero-anim.d4 {
  animation-delay: .46s
}

.hero-anim.d5 {
  animation-delay: .58s
}

.hero-anim.d6 {
  animation-delay: .7s
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: none
  }
}

@media (prefers-reduced-motion:reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .hero-anim {
    opacity: 1 !important;
    transform: none !important
  }

  .mark::after {
    transform: scaleX(1) !important
  }

  .swash svg path {
    stroke-dashoffset: 0 !important
  }
}


@media (max-width:1199.98px) {
  .float-chip {
    font-size: .76rem;
    padding: .45rem .85rem
  }

  .chip-a {
    left: -2%
  }

  .chip-b {
    right: -1%
  }
}

@media (max-width:991.98px) {
  body {
    font-size: 1.01rem
  }

  .nav-links {
    display: none
  }

  .reveal-left,
  .reveal-right {
    transform: translateY(24px)
  }

  .reveal-left.in-view,
  .reveal-right.in-view {
    transform: none
  }

  .hero {
    padding-top: 1.9rem;
    text-align: center
  }

  .hero-desc,
  .measure,
  .measure-wide {
    max-width: none
  }

  .hero .hero-strip {
    justify-content: center
  }

  .hero-visual {
    margin-top: 2.4rem
  }

  .float-chip {
    display: none
  }

  .orb-1 {
    width: 88px;
    height: 88px
  }

  .guarantee {
    flex-direction: column;
    text-align: center
  }

  .band {
    padding: clamp(1.8rem, 6vw, 4rem) 0
  }
}

@media (max-width:767.98px) {
  .flow::before {
    left: 26px
  }

  .flow-item {
    padding-left: 4.15rem;
    min-height: 64px
  }

  .flow-node {
    width: 54px;
    height: 54px;
    border-radius: 16px
  }

  .flow-node .step-e {
    font-size: 1.15rem
  }

  .flow-node .step-n {
    font-size: .54rem
  }

  .flow-arrow {
    left: 19px;
    font-size: .95rem
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.4rem;
    font-size: 1rem;
    text-align: center
  }

  .btn-ghost {
    width: 100%;
    justify-content: center
  }

  .offer-wrap::after {
    inset: 6px
  }

  .proof-scroll img {
    min-width: 640px
  }
}

@media (max-width:767.98px) {
  .brand {
    font-size: .98rem;
    gap: .55rem
  }

  .brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1rem
  }

  .btn-nav {
    font-size: .78rem;
    padding: .55rem 1rem
  }

  .btn-nav i {
    display: none
  }
}

@media (max-width:575.98px) {
  h1.display-hero {
    font-size: clamp(1.85rem, 8.6vw, 2.5rem)
  }

  .brand small {
    display: none
  }

  .brand {
    font-size: .9rem
  }

  .brand>span {
    line-height: 1.2
  }

  .topbar .inner {
    padding-top: .15rem;
    padding-bottom: .15rem
  }

  .mark {
    white-space: normal
  }

  .hero-kicker {
    font-size: .62rem;
    letter-spacing: .14em
  }

  .hero-sub-band {
    font-size: 1rem;
    padding: .5rem .9rem
  }

  .panel,
  .gpt-card {
    padding: 1.25rem 1.15rem
  }

  .to-top {
    right: 14px;
    bottom: 14px;
    width: 42px;
    height: 42px
  }
}




    .arch-diagram-wrapper {
      max-width: 1180px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .header-node-box {
      background: #ffffff;
    border-radius: 18px;
    padding: 0px 36px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 5;
    }

    .header-brain-badge {
      width: 58px;
      height: 58px;
      background: #f1f5f9;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #6366f1;
      border: 1px solid #e2e8f0;
    }

    .header-main-title {
      font-size: 1.7rem;
      font-weight: 900;
      color: var(--navy-dark);
      letter-spacing: -0.5px;
      line-height: 1.1;
      margin-bottom: 2px;
    }

    .header-sub-caption {
      font-size: 0.92rem;
      color: #64748b;
      font-weight: 600;
    }

    .tree-branch-wire {
      position: relative;
      width: 100%;
      margin-top: 25px;
      margin-bottom: 25px;
    }

    .stem-line-top {
      width: 3px;
      height: 48px; 
      background-color: var(--line-blue);
      margin: 0 auto;
      position: relative;
    }


    .stem-line-top::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: -3px;
      width: 8px;
      height: 8px;
      background-color: var(--line-blue);
      border-radius: 50%;
    }

    .crossbar-connector-line {
      position: relative;
      width: 70%;
      height: 3px;
      background-color: var(--line-blue);
      margin: 0 auto;
    }

    .crossbar-connector-line::before,
    .crossbar-connector-line::after {
      content: '';
      position: absolute;
      top: -3px;
      width: 8px;
      height: 8px;
      background-color: var(--line-blue);
      border-radius: 50%;
    }

    .crossbar-connector-line::before { left: 0; }
    .crossbar-connector-line::after { right: 0; }


    .arch-card-node {
      background: #ffffff;
      border-radius: 16px;
      padding: 24px 20px 20px;
      text-align: center;
      position: relative;
      transition: all 0.3s ease;
      cursor: pointer;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .arch-card-node:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }

    .node-badge-icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.35rem;
      position: absolute;
      top: -26px;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
    }

    .arch-card-node:hover .node-badge-icon {
      transform: translateX(-50%) scale(1.1);
    }

    .node-title-heading {
      font-size: 1.1rem;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      margin-top: 12px;
      margin-bottom: 6px;
    }

    .node-count-badge {
      font-size: 1.1rem;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .node-desc-text {
      font-size: 0.82rem;
      color: #475569;
      line-height: 1.4;
      font-weight: 500;
    }


    .theme-blue-node {
      border: 1.5px solid #bfdbfe;
      background: #eff6ff;
    }
    .theme-blue-node .node-badge-icon { background: #1d4ed8; }
    .theme-blue-node .node-title-heading { color: #1d4ed8; }
    .theme-blue-node .node-count-badge { color: #1e40af; }

    .theme-green-node {
      border: 1.5px solid #bbf7d0;
      background: #f0fdf4;
    }
    .theme-green-node .node-badge-icon { background: #16a34a; }
    .theme-green-node .node-title-heading { color: #15803d; }
    .theme-green-node .node-count-badge { color: #166534; }

    .theme-purple-node {
      border: 1.5px solid #e9d5ff;
      background: #faf5ff;
    }
    .theme-purple-node .node-badge-icon { background: #7e22ce; }
    .theme-purple-node .node-title-heading { color: #7e22ce; }
    .theme-purple-node .node-count-badge { color: #6b21a8; }

    .theme-yellow-node {
      border: 1.5px solid #fde68a;
      background: #fffbeb;
    }
    .theme-yellow-node .node-badge-icon { background: #d97706; }
    .theme-yellow-node .node-title-heading { color: #d97706; }
    .theme-yellow-node .node-count-badge { color: #b45309; }

    .theme-pink-node {
      border: 1.5px solid #fbcfe8;
      background: #fdf2f8;
    }
    .theme-pink-node .node-badge-icon { background: #db2777; }
    .theme-pink-node .node-title-heading { color: #db2777; }
    .theme-pink-node .node-count-badge { color: #9d174d; }

    .theme-cyan-node {
      border: 1.5px solid #a5f3fc;
      background: #ecfeff;
    }
    .theme-cyan-node .node-badge-icon { background: #0891b2; }
    .theme-cyan-node .node-title-heading { color: #0891b2; }
    .theme-cyan-node .node-count-badge { color: #0e7490; }

    .theme-azure-node {
      border: 1.5px solid #bae6fd;
      background: #f0f9ff;
    }
    .theme-azure-node .node-badge-icon { background: #0284c7; }
    .theme-azure-node .node-title-heading { color: #0284c7; }
    .theme-azure-node .node-count-badge { color: #0369a1; }

    .wave-accent-shape {
      position: absolute;
      opacity: 0.15;
      pointer-events: none;
    }
    .wave-top-left { top: 30px; left: -20px; }
    .wave-bottom-right { bottom: 30px; right: -20px; }

    @media (max-width: 991px) {
      .crossbar-connector-line { display: none; }
      .stem-line-top { display: none; }
      .arch-card-node { margin-top: 30px; }
    }

      :root {
      --line-blue: #3b82f6;
      --navy-dark: #0f172a;
      --canvas-bg: #f8fafc;
    }













     :root {
      --brand-blue: #0d6efd;
      --brand-purple: #8b5cf6;
      --navy-dark: #0f172a;
    }

    .hero-banner-card {
      max-width: 1150px;
      width: 100%;
      position: relative;
    }

    .subhead-capsule-badge {
      background: #ffffff;
      border: 1.5px solid #00d2ff;
      border-radius: 50px;
      padding: 10px 32px;
      display: inline-block;
      font-weight: 800;
      font-size: 1.25rem;
      color: #0f172a;
      box-shadow: 0 4px 20px rgba(0, 210, 255, 0.25);
      position: relative;
      transition: all 0.3s ease;
    }

    .subhead-capsule-badge:hover {
      box-shadow: 0 6px 25px rgba(13, 110, 253, 0.4);
      transform: translateY(-2px);
    }

    .brand-accent-txt {
      background: linear-gradient(90deg, #0d6efd, #8b5cf6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-weight: 900;
    }

    .flanked-header-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-top: 40px;
      margin-bottom: 15px;
    }

    .flank-line-accent {
      height: 3px;
      width: 90px;
      background: linear-gradient(90deg, transparent, #0d6efd);
      border-radius: 3px;
    }

    .flank-line-accent.right-side {
      background: linear-gradient(90deg, #0d6efd, transparent);
    }

    .ready-use-text {
      font-family: 'Anton', sans-serif;
      font-size: 2.5rem;
      letter-spacing: 2px;
      color: #0f172a;
      text-transform: uppercase;
      line-height: 1;
    }

    .title-showcase-stage {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      flex-wrap: nowrap;
    }

    .shield-number-badge {
      width: 140px;
      height: 155px;
      background: linear-gradient(135deg, #00c6ff 0%, #0072ff 50%, #7c3aed 100%);
      clip-path: polygon(50% 0%, 100% 15%, 100% 85%, 50% 100%, 0% 85%, 0% 15%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 35px rgba(0, 114, 255, 0.4);
      position: relative;
      flex-shrink: 0;
      transition: transform 0.4s ease;
    }

    .shield-number-badge:hover {
      transform: rotate(-3deg) scale(1.05);
    }

    .shield-number-text {
      font-family: 'Anton', sans-serif;
      font-size: 7rem;
      color: #ffffff;
      line-height: 1;
      text-shadow: 3px 5px 0px rgba(0, 0, 0, 0.2);
    }

    .mega-headline-title {
      font-size: 3.7rem;
      line-height: 0.95;
      letter-spacing: 1px;
      text-align: left;
      font-weight: 700;
    }

    .txt-blue-gradient {
      background: linear-gradient(180deg, #0099ff 0%, #0052cc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .txt-purple-gradient {
      background: linear-gradient(180deg, #9333ea 0%, #6b21a8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .plr-bottom-ribbon {
      background: linear-gradient(90deg, rgba(238, 242, 255, 0.6) 0%, rgba(245, 243, 255, 0.9) 50%, rgba(238, 242, 255, 0.6) 100%);
      border-radius: 50px;
      padding: 12px 40px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
      margin-top: 10px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .plr-ribbon-text {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 900;
      font-size: 1.4rem;
      letter-spacing: 3px;
      color: #0f172a;
      text-transform: uppercase;
      font-style: italic;
    }

    .arrow-chevrons {
      color: #8b5cf6;
      font-size: 1.3rem;
      letter-spacing: -3px;
    }

    .arrow-chevrons.blue-side {
      color: #0d6efd;
    }

    @media (max-width: 991px) {
      .mega-headline-title {
        font-size: 4rem;
      }

      .shield-number-badge {
        width: 110px;
        height: 125px;
      }

      .shield-number-text {
        font-size: 5rem;
      }

      .ready-use-text {
        font-size: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .title-showcase-stage {
        flex-direction: column;
        text-align: center;
      }

      .mega-headline-title {
        text-align: center;
        font-size: 3rem;
      }

      .subhead-capsule-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
      }

      .plr-ribbon-text {
        font-size: 1rem;
        letter-spacing: 1px;
      }
    }


 .visible-xs,
        .visible-sm,
        .visible-md,
        .visible-lg {
            display: none !important
        }

        @media (max-width:767px) {
            .visible-xs {
                display: block !important
            }

        }




        @media (max-width:767px) {
            .hidden-xs {
                display: none !important
            }
        }


    .testimonial-wrapper {
      max-width: 900px;
      width: 100%;
      margin: auto;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: 24px;
      padding: 50px 60px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
      position: relative;
    }

    .quote-icon {
      font-size: 2.5rem;
      color: #2563eb;
      opacity: 0.2;
      position: absolute;
      top: 35px;
      left: 45px;
    }

    .avatar-img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #eff6ff;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    }

    .star-rating {
      color: #f59e0b;
      font-size: 0.95rem;
    }

    .testimonial-text {
      font-size: 1.15rem;
      line-height: 1.7;
      color: #334155;
      font-weight: 500;
    }

    .client-name {
      font-size: 1.1rem;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 2px;
    }

    .client-role {
      font-size: 0.88rem;
      color: #64748b;
      font-weight: 600;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 48px;
      height: 48px;
      background-color: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
      transition: all 0.3s ease;
    }

    .carousel-control-prev {
      left: -24px;
    }

    .carousel-control-next {
      right: -24px;
    }

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: #2563eb;
      border-color: #2563eb;
      color: #ffffff;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      filter: invert(0.3);
      width: 1.2rem;
      height: 1.2rem;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      filter: invert(1);
    }

    .carousel-indicators {
      bottom: -45px;
    }

    .carousel-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #cbd5e1;
      border: none;
      margin: 0 5px;
      transition: all 0.3s ease;
    }

    .carousel-indicators .active {
      width: 28px;
      border-radius: 12px;
      background-color: #2563eb;
    }

    @media (max-width: 768px) {
      .testimonial-card {
        padding: 40px 25px;
      }

      .carousel-control-prev {
        left: 0;
      }

      .carousel-control-next {
        right: 0;
      }

      .quote-icon {
        display: none;
      }
    }