/* =========================================================
   HEDGE11 HOMEPAGE V3
   Public marketing only.
   ========================================================= */
/* Let the public homepage use the full viewport */

body:not(.signed-in) main{
  max-width:none;
  width:100%;
  padding:0;
}

body:not(.signed-in) .h11m-home{
  width:100%;
}

body:not(.signed-in) .h11v3-hero,
body:not(.signed-in) .h11m-section{
  width:min(1180px,calc(100% - 56px));
  margin-inline:auto;
}

@media(max-width:760px){
  body:not(.signed-in) .h11v3-hero,
  body:not(.signed-in) .h11m-section{
    width:calc(100% - 36px);
  }
}

.h11m-home{
  --v3-blue:#4777ff;
  --v3-blue-dark:#244fc6;
  --v3-coral:#ff735e;
  --v3-orange:#ffad57;
  --v3-violet:#8d73ff;
  --v3-cream:#f4f0e7;
  --v3-ink:#101921;

  overflow:hidden;
}


/* ---------- Shared ---------- */

.h11v3-fullbleed{
  margin-inline:calc(50% - 50vw);
  padding-inline:max(
    28px,
    calc((100vw - 1180px) / 2)
  );
}

.h11v3-kicker{
  margin:0 0 13px;
  color:var(--green);
  font-size:10px;
  font-weight:800;
  letter-spacing:.18em;
}

.h11v3-kicker-dark{
  color:#1d7259;
}

.h11v3-kicker-light{
  color:#dce6ff;
}

.h11v3-text-link{
  color:#edf4f6;
  font-size:14px;
  font-weight:700;
  text-decoration:none;
}

.h11v3-text-link:hover{
  color:var(--green);
}

.h11v3-white-link{
  display:inline-flex;
  margin-top:12px;
  color:white;
  font-weight:800;
  text-decoration:none;
}

.h11v3-white-link:hover{
  text-decoration:underline;
}


/* =========================================================
   HERO
   ========================================================= */

.h11v3-hero{
  position:relative;
  display:grid;
  grid-template-columns:
    minmax(0,.88fr)
    minmax(540px,1.12fr);
  gap:54px;
  align-items:center;
  min-height:690px;
  padding:72px 0 92px;
}

.h11v3-hero::before{
  content:"";
  position:absolute;
  top:3%;
  right:-22%;
  width:720px;
  height:720px;
  border-radius:50%;
  background:
    radial-gradient(
      circle,
      rgba(71,119,255,.18),
      rgba(82,224,160,.08) 38%,
      transparent 69%
    );
  filter:blur(10px);
  pointer-events:none;
}

.h11v3-hero-copy{
  position:relative;
  z-index:3;
}

.h11v3-hero-copy h1{
  max-width:610px;
  margin:0;
  font:
    800
    clamp(52px,5.8vw,79px)/.97
    Manrope;
  letter-spacing:-.06em;
}

.h11v3-hero-copy h1 span{
  display:block;
  color:var(--green);
}

.h11v3-lede{
  max-width:550px;
  margin:25px 0 0;
  color:#b6c4cc;
  font-size:18px;
  line-height:1.58;
}

.h11v3-actions{
  display:flex;
  align-items:center;
  gap:19px;
  margin-top:30px;
  flex-wrap:wrap;
}

.h11v3-trust{
  display:flex;
  gap:19px;
  margin-top:21px;
  flex-wrap:wrap;
  color:#788e9a;
  font-size:11px;
}

.h11v3-trust span::before{
  content:"✓";
  margin-right:6px;
  color:var(--green);
  font-weight:800;
}


/* Hero stage */

.h11v3-hero-stage{
  position:relative;
  min-height:510px;
  display:grid;
  place-items:center;
  isolation:isolate;
}

.h11v3-hero-window{
  position:relative;
  z-index:4;
  width:92%;
  overflow:hidden;
  border:
    1px solid
    rgba(255,255,255,.13);
  border-radius:21px;
  background:#09141c;
  box-shadow:
    0 38px 90px rgba(0,0,0,.47),
    0 0 70px rgba(71,119,255,.08);
  transform:
    perspective(1200px)
    rotateY(-4deg)
    rotateZ(-1deg);
  animation:
    h11v3-float-main
    6s ease-in-out infinite;
}

.h11v3-hero-window img{
  display:block;
  width:100%;
}

.h11v3-browser-bar{
  height:33px;
  display:flex;
  align-items:center;
  gap:6px;
  padding:0 12px;
  background:#101d26;
  color:#657b86;
  font-size:9px;
}

.h11v3-browser-bar i{
  width:7px;
  height:7px;
  border-radius:50%;
  background:#40535d;
}

.h11v3-browser-bar i:first-child{
  background:var(--v3-coral);
}

.h11v3-browser-bar i:nth-child(2){
  background:var(--v3-orange);
}

.h11v3-browser-bar i:nth-child(3){
  background:var(--green);
}

.h11v3-browser-bar span{
  margin-left:6px;
}


/* Orbs */

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

.h11v3-orb-blue{
  width:240px;
  height:240px;
  right:2%;
  top:4%;
  background:
    rgba(71,119,255,.2);
}

.h11v3-orb-green{
  width:190px;
  height:190px;
  left:5%;
  bottom:4%;
  background:
    rgba(82,224,160,.17);
}

.h11v3-orb-coral{
  width:130px;
  height:130px;
  right:10%;
  bottom:3%;
  background:
    rgba(255,115,94,.12);
}


/* Floating sportsbook chips */

.h11v3-floating-book{
  position:absolute;
  z-index:6;
  display:flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border:
    1px solid
    rgba(255,255,255,.13);
  border-radius:999px;
  background:
    rgba(13,25,34,.94);
  box-shadow:
    0 16px 35px
    rgba(0,0,0,.35);
  color:#edf5f7;
  font-size:11px;
  font-weight:800;
  backdrop-filter:blur(12px);
}

.h11v3-floating-book img{
  width:27px;
  height:27px;
  object-fit:contain;
}

.h11v3-book-one{
  top:8%;
  left:0;
  animation:
    h11v3-float-chip
    4.5s ease-in-out infinite;
}

.h11v3-book-two{
  right:-2%;
  top:22%;
  animation:
    h11v3-float-chip
    5.2s ease-in-out infinite reverse;
}


/* Profit bubble */

.h11v3-profit-bubble{
  position:absolute;
  z-index:7;
  right:-2%;
  bottom:7%;
  width:180px;
  padding:18px 20px;
  border:
    1px solid
    rgba(82,224,160,.55);
  border-radius:18px;
  background:
    linear-gradient(
      145deg,
      rgba(16,35,38,.98),
      rgba(10,23,29,.98)
    );
  box-shadow:
    0 22px 55px rgba(0,0,0,.4),
    0 0 38px rgba(82,224,160,.12);
  animation:
    h11v3-float-profit
    5s ease-in-out infinite;
}

.h11v3-profit-bubble small{
  display:block;
  color:#87a19a;
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.h11v3-profit-bubble strong{
  display:block;
  margin:3px 0;
  color:var(--green);
  font:800 34px Manrope;
}

.h11v3-profit-bubble span{
  color:#b7c7c9;
  font-size:11px;
}

.h11v3-hero-note{
  position:absolute;
  z-index:5;
  left:8%;
  bottom:5%;
  display:flex;
  align-items:center;
  gap:8px;
  color:#8398a2;
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.h11v3-hero-note span{
  width:22px;
  height:1px;
  background:var(--green);
}


/* =========================================================
   LIGHT AHA SECTION
   ========================================================= */

.h11v3-aha{
  position:relative;
  padding-top:100px;
  padding-bottom:105px;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(82,224,160,.17),
      transparent 30%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(71,119,255,.12),
      transparent 34%
    ),
    var(--v3-cream);
  color:var(--v3-ink);
}

.h11v3-aha::before{
  content:"";
  position:absolute;
  width:380px;
  height:380px;
  right:-170px;
  top:-180px;
  border:
    55px solid
    rgba(255,173,87,.13);
  border-radius:50%;
}

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

.h11v3-aha-heading{
  max-width:820px;
}

.h11v3-aha-heading h2{
  margin:0;
  font:
    800
    clamp(47px,6vw,76px)/.98
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-aha-heading h2 span{
  display:block;
  color:#24745b;
}

.h11v3-aha-heading>p:last-child{
  max-width:640px;
  margin:22px 0 0;
  color:#526169;
  font-size:17px;
  line-height:1.6;
}


/* matchup */

.h11v3-match-visual{
  display:grid;
  grid-template-columns:
    minmax(0,1fr)
    150px
    minmax(0,1fr);
  align-items:center;
  gap:18px;
  margin-top:58px;
}

.h11v3-bet{
  position:relative;
  min-height:250px;
  padding:27px;
  overflow:hidden;
  border-radius:24px;
  color:white;
  box-shadow:
    0 26px 55px
    rgba(20,32,38,.16);
}

.h11v3-bet::after{
  content:"";
  position:absolute;
  width:170px;
  height:170px;
  right:-55px;
  bottom:-70px;
  border:
    28px solid
    rgba(255,255,255,.08);
  border-radius:50%;
}

.h11v3-bet-blue{
  background:
    linear-gradient(
      135deg,
      #244fc6,
      #4777ff
    );
  transform:rotate(-1.2deg);
}

.h11v3-bet-coral{
  background:
    linear-gradient(
      135deg,
      #e45655,
      #ff835f
    );
  transform:rotate(1.2deg);
}

.h11v3-bet-book{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:34px;
}

.h11v3-bet-book img{
  width:36px;
  height:36px;
  object-fit:contain;
  padding:4px;
  border-radius:9px;
  background:
    rgba(255,255,255,.92);
}

.h11v3-bet-book span{
  font-size:11px;
  font-weight:800;
  letter-spacing:.1em;
}

.h11v3-bet>small{
  display:block;
  margin-bottom:6px;
  opacity:.7;
  font-size:9px;
  font-weight:800;
  letter-spacing:.12em;
}

.h11v3-bet>strong{
  display:block;
  font:
    800
    clamp(25px,3vw,38px)
    Manrope;
}

.h11v3-bet-numbers{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-top:21px;
}

.h11v3-bet-numbers b{
  font:
    800
    clamp(27px,3vw,40px)
    Manrope;
}

.h11v3-bet-numbers em{
  font:
    700
    20px
    Manrope;
  font-style:normal;
}


/* center VS */

.h11v3-versus{
  display:grid;
  place-items:center;
  text-align:center;
}

.h11v3-versus span{
  color:#718087;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-versus b{
  display:grid;
  place-items:center;
  width:76px;
  height:76px;
  margin:10px 0;
  border-radius:50%;
  background:var(--v3-ink);
  color:white;
  font:800 21px Manrope;
  box-shadow:
    0 18px 35px
    rgba(16,25,33,.16);
}

.h11v3-versus i{
  width:1px;
  height:42px;
  background:#bdc2bd;
}


/* result */

.h11v3-aha-result{
  max-width:530px;
  margin:54px auto 0;
  text-align:center;
}

.h11v3-aha-result>span{
  color:#68777e;
  font-size:9px;
  font-weight:800;
  letter-spacing:.16em;
}

.h11v3-aha-result strong{
  display:block;
  margin:3px 0 -5px;
  color:#20785a;
  font:
    800
    clamp(62px,8vw,105px)
    Manrope;
  letter-spacing:-.07em;
}

.h11v3-aha-result p{
  margin:0;
  color:#5b6b71;
  font-weight:700;
}


/* =========================================================
   PROMOTION WORLD
   ========================================================= */

.h11v3-promo-world{
  position:relative;
  padding-top:105px;
  padding-bottom:110px;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 78% 25%,
      rgba(164,118,255,.55),
      transparent 28%
    ),
    radial-gradient(
      circle at 68% 100%,
      rgba(255,112,92,.32),
      transparent 31%
    ),
    linear-gradient(
      125deg,
      #1c49b6,
      #5b50ce 53%,
      #742b91
    );
}

.h11v3-promo-inner{
  display:grid;
  grid-template-columns:
    minmax(0,.92fr)
    minmax(520px,1.08fr);
  gap:70px;
  align-items:center;
}

.h11v3-promo-copy h2{
  margin:0;
  max-width:580px;
  color:white;
  font:
    800
    clamp(42px,5.4vw,68px)/1
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-promo-copy h2 span{
  color:#baf7dc;
}

.h11v3-promo-copy>p:not(.h11v3-kicker){
  max-width:560px;
  margin:25px 0 7px;
  color:rgba(255,255,255,.78);
  font-size:17px;
  line-height:1.62;
}


/* Promo cloud */

.h11v3-promo-cloud{
  position:relative;
  min-height:470px;
}

.h11v3-promo-ticket{
  position:absolute;
  display:grid;
  padding:24px;
  border:
    1px solid
    rgba(255,255,255,.24);
  border-radius:22px;
  background:
    rgba(10,18,31,.88);
  color:white;
  box-shadow:
    0 30px 60px
    rgba(18,12,49,.3);
  backdrop-filter:blur(12px);
}

.h11v3-promo-ticket small{
  color:#9cafc5;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-promo-ticket strong{
  margin:7px 0 -2px;
  font:
    800
    clamp(33px,4vw,54px)
    Manrope;
  letter-spacing:-.05em;
}

.h11v3-promo-ticket span{
  color:var(--green);
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
}

.h11v3-ticket-one{
  width:270px;
  top:16px;
  left:8%;
  transform:rotate(-5deg);
  animation:
    h11v3-ticket-one
    6s ease-in-out infinite;
}

.h11v3-ticket-two{
  width:240px;
  top:168px;
  right:3%;
  transform:rotate(5deg);
  animation:
    h11v3-ticket-two
    6.8s ease-in-out infinite;
}

.h11v3-ticket-three{
  width:260px;
  bottom:5px;
  left:11%;
  transform:rotate(-2deg);
  animation:
    h11v3-ticket-three
    7.2s ease-in-out infinite;
}


/* Small sportsbook logos */

.h11v3-mini-logo{
  position:absolute;
  z-index:4;
  display:grid;
  place-items:center;
  width:68px;
  height:68px;
  border:
    1px solid
    rgba(255,255,255,.23);
  border-radius:20px;
  background:
    rgba(255,255,255,.94);
  box-shadow:
    0 20px 40px
    rgba(20,10,50,.24);
}

.h11v3-mini-logo img{
  width:45px;
  height:45px;
  object-fit:contain;
}

.h11v3-mini-one{
  right:18%;
  top:15px;
  transform:rotate(8deg);
}

.h11v3-mini-two{
  left:0;
  top:205px;
  transform:rotate(-8deg);
}

.h11v3-mini-three{
  right:9%;
  bottom:5px;
  transform:rotate(6deg);
}


/* =========================================================
   PRODUCT REVEAL
   ========================================================= */

.h11v3-product{
  position:relative;
  padding-top:110px;
  padding-bottom:125px;
  background:
    radial-gradient(
      circle at 50% 75%,
      rgba(71,119,255,.1),
      transparent 36%
    ),
    #09131b;
}

.h11v3-product-heading{
  max-width:760px;
  margin-bottom:58px;
}

.h11v3-product-heading h2{
  margin:0;
  font:
    800
    clamp(44px,5.6vw,70px)/.99
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-product-heading h2 span{
  display:block;
  color:#8395ff;
}

.h11v3-product-heading>p:last-child{
  max-width:620px;
  margin:22px 0 0;
  color:#94a8b3;
  font-size:17px;
  line-height:1.6;
}

.h11v3-product-stage{
  position:relative;
  min-height:610px;
}

.h11v3-dashboard-shot{
  position:absolute;
  left:0;
  top:0;
  width:78%;
  overflow:hidden;
  border:
    1px solid
    rgba(255,255,255,.12);
  border-radius:22px;
  background:#0b151d;
  box-shadow:
    0 45px 90px
    rgba(0,0,0,.43);
}

.h11v3-dashboard-shot img{
  display:block;
  width:100%;
}

.h11v3-sportsbook-shot{
  position:absolute;
  right:0;
  bottom:0;
  width:45%;
  overflow:hidden;
  border:
    1px solid
    rgba(141,115,255,.42);
  border-radius:19px;
  background:#0c1620;
  box-shadow:
    0 32px 70px
    rgba(0,0,0,.45),
    0 0 45px
    rgba(71,119,255,.1);
  transform:rotate(1.4deg);
}

.h11v3-sportsbook-shot img{
  display:block;
  width:100%;
}


/* product callouts */

.h11v3-product-callout{
  position:absolute;
  z-index:5;
  left:2%;
  bottom:65px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:11px 15px;
  border:
    1px solid
    rgba(82,224,160,.33);
  border-radius:13px;
  background:
    rgba(10,22,29,.94);
  box-shadow:
    0 18px 40px
    rgba(0,0,0,.34);
  backdrop-filter:blur(10px);
}

.h11v3-product-callout>span{
  display:grid;
  place-items:center;
  width:29px;
  height:29px;
  border-radius:50%;
  background:
    rgba(82,224,160,.12);
  color:var(--green);
  font-size:10px;
  font-weight:800;
}

.h11v3-product-callout>div{
  display:grid;
  gap:1px;
}

.h11v3-product-callout small{
  color:#758a95;
  font-size:7px;
  font-weight:800;
  letter-spacing:.12em;
}

.h11v3-product-callout strong{
  font-size:12px;
}

.h11v3-callout-two{
  left:35%;
  bottom:20px;
  border-color:
    rgba(71,119,255,.38);
}

.h11v3-callout-two>span{
  background:
    rgba(71,119,255,.14);
  color:#7799ff;
}

.h11v3-callout-three{
  left:auto;
  right:4%;
  bottom:215px;
  border-color:
    rgba(255,115,94,.36);
}

.h11v3-callout-three>span{
  background:
    rgba(255,115,94,.12);
  color:#ff8d79;
}


/* =========================================================
   MOTION
   ========================================================= */

@keyframes h11v3-float-main{
  0%,
  100%{
    transform:
      perspective(1200px)
      rotateY(-4deg)
      rotateZ(-1deg)
      translateY(0);
  }

  50%{
    transform:
      perspective(1200px)
      rotateY(-4deg)
      rotateZ(-1deg)
      translateY(-9px);
  }
}

@keyframes h11v3-float-chip{
  0%,
  100%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-8px);
  }
}

@keyframes h11v3-float-profit{
  0%,
  100%{
    transform:
      translateY(0)
      rotate(1deg);
  }

  50%{
    transform:
      translateY(-10px)
      rotate(-1deg);
  }
}

@keyframes h11v3-ticket-one{
  0%,
  100%{
    transform:
      rotate(-5deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(-3deg)
      translateY(-10px);
  }
}

@keyframes h11v3-ticket-two{
  0%,
  100%{
    transform:
      rotate(5deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(3deg)
      translateY(9px);
  }
}

@keyframes h11v3-ticket-three{
  0%,
  100%{
    transform:
      rotate(-2deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(0deg)
      translateY(-8px);
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:980px){

  .h11v3-hero{
    grid-template-columns:1fr;
    padding-top:60px;
  }

  .h11v3-hero-stage{
    width:min(760px,100%);
    margin:auto;
  }

  .h11v3-promo-inner{
    grid-template-columns:1fr;
  }

  .h11v3-promo-cloud{
    width:min(650px,100%);
    margin:auto;
  }

  .h11v3-product-stage{
    min-height:520px;
  }

}


@media(max-width:760px){

  .h11v3-fullbleed{
    padding-inline:18px;
  }

  .h11v3-hero{
    min-height:0;
    padding:46px 0 64px;
  }

  .h11v3-hero-copy h1{
    font-size:46px;
  }

  .h11v3-lede{
    font-size:16px;
  }

  .h11v3-hero-stage{
    min-height:360px;
    margin-top:12px;
  }

  .h11v3-hero-window{
    width:100%;
    transform:none;
    animation:none;
  }

  .h11v3-floating-book{
    display:none;
  }

  .h11v3-profit-bubble{
    right:8px;
    bottom:0;
    width:155px;
    padding:13px 15px;
  }

  .h11v3-profit-bubble strong{
    font-size:27px;
  }

  .h11v3-hero-note{
    display:none;
  }


  /* Aha */

  .h11v3-aha{
    padding-top:76px;
    padding-bottom:80px;
  }

  .h11v3-aha-heading h2{
    font-size:45px;
  }

  .h11v3-match-visual{
    grid-template-columns:1fr;
    gap:15px;
    margin-top:40px;
  }

  .h11v3-versus{
    min-height:75px;
  }

  .h11v3-versus i{
    display:none;
  }

  .h11v3-versus b{
    width:54px;
    height:54px;
    margin:7px;
  }

  .h11v3-bet{
    min-height:210px;
  }

  .h11v3-bet-blue,
  .h11v3-bet-coral{
    transform:none;
  }


  /* Promotions */

  .h11v3-promo-world{
    padding-top:78px;
    padding-bottom:75px;
  }

  .h11v3-promo-copy h2{
    font-size:44px;
  }

  .h11v3-promo-cloud{
    min-height:485px;
    margin-top:25px;
  }

  .h11v3-ticket-one{
    left:2%;
  }

  .h11v3-ticket-two{
    right:0;
  }

  .h11v3-ticket-three{
    left:5%;
  }

  .h11v3-mini-logo{
    width:54px;
    height:54px;
    border-radius:15px;
  }

  .h11v3-mini-logo img{
    width:36px;
    height:36px;
  }


  /* Product */

  .h11v3-product{
    padding-top:80px;
    padding-bottom:90px;
  }

  .h11v3-product-heading h2{
    font-size:45px;
  }

  .h11v3-product-stage{
    min-height:440px;
  }

  .h11v3-dashboard-shot{
    position:relative;
    width:100%;
  }

  .h11v3-sportsbook-shot{
    width:68%;
    right:0;
    bottom:25px;
  }

  .h11v3-product-callout{
    display:none;
  }

}


/* Respect reduced-motion preferences */

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

  .h11v3-hero-window,
  .h11v3-floating-book,
  .h11v3-profit-bubble,
  .h11v3-promo-ticket{
    animation:none;
  }

}
/* =========================================================
   HOMEPAGE V3 — MIDDLE EXPERIENCE
   ========================================================= */


/* =========================================================
   SPORTSBOOK MARQUEE
   ========================================================= */

.h11v3-book-marquee{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
  padding:21px 0;
  border-block:
    1px solid rgba(255,255,255,.08);
  background:#111b25;
}

.h11v3-marquee-track{
  display:flex;
  width:max-content;
  animation:
    h11v3-marquee
    32s linear infinite;
}

.h11v3-marquee-set{
  display:flex;
  align-items:center;
  gap:16px;
  padding-right:16px;
  white-space:nowrap;
}

.h11v3-marquee-set img{
  width:31px;
  height:31px;
  margin-left:22px;
  object-fit:contain;
}

.h11v3-marquee-set b{
  color:#dce5e9;
  font-size:12px;
}

.h11v3-marquee-set>span,
.h11v3-marquee-set>strong{
  margin-inline:25px;
  font:
    800 13px Manrope;
  letter-spacing:.15em;
}

.h11v3-marquee-set>span{
  color:#8194a0;
}

.h11v3-marquee-set>strong{
  color:var(--green);
}

@keyframes h11v3-marquee{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}


/* =========================================================
   REAL MATCH
   ========================================================= */

.h11v3-real-match{
  display:grid;
  grid-template-columns:
    minmax(330px,.72fr)
    minmax(0,1.28fr);
  gap:65px;
  align-items:center;
  padding:115px 0 125px;
}

.h11v3-real-copy h2{
  margin:0;
  font:
    800
    clamp(42px,5vw,65px)/1
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-real-copy h2 span{
  display:block;
  color:#ff826e;
}

.h11v3-real-copy>p:not(.h11v3-kicker){
  max-width:490px;
  margin:23px 0 0;
  color:#93a7b2;
  font-size:16px;
  line-height:1.65;
}

.h11v3-real-result{
  margin-top:37px;
}

.h11v3-real-result small{
  display:block;
  color:#718690;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-real-result strong{
  display:block;
  margin:2px 0 -3px;
  color:var(--green);
  font:
    800
    clamp(58px,7vw,92px)
    Manrope;
  letter-spacing:-.07em;
}

.h11v3-real-result span{
  color:#a7b5bc;
  font-size:12px;
}


/* Match composition */

.h11v3-real-stage{
  position:relative;
  min-height:535px;
}

.h11v3-real-shot-main{
  position:absolute;
  left:4%;
  top:45px;
  width:79%;
  overflow:hidden;
  border:
    1px solid
    rgba(255,255,255,.12);
  border-radius:20px;
  background:#0d1821;
  box-shadow:
    0 35px 80px
    rgba(0,0,0,.42);
  transform:rotate(-1.5deg);
}

.h11v3-real-shot-main img{
  display:block;
  width:100%;
}

.h11v3-real-stake{
  position:absolute;
  z-index:4;
  display:grid;
  min-width:185px;
  padding:15px 18px;
  border-radius:15px;
  box-shadow:
    0 22px 45px rgba(0,0,0,.36);
}

.h11v3-real-stake small{
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
  opacity:.7;
}

.h11v3-real-stake span{
  margin-top:8px;
  font-size:11px;
}

.h11v3-real-stake strong{
  margin-top:1px;
  font:800 27px Manrope;
}

.h11v3-real-stake-one{
  left:-2%;
  top:5px;
  background:
    linear-gradient(
      135deg,
      #3766e3,
      #4d7cff
    );
  color:white;
  transform:rotate(-4deg);
  animation:
    h11v3-real-chip-one
    5.5s ease-in-out infinite;
}

.h11v3-real-stake-two{
  right:0;
  top:155px;
  background:
    linear-gradient(
      135deg,
      #e65f56,
      #ff8566
    );
  color:white;
  transform:rotate(3deg);
  animation:
    h11v3-real-chip-two
    6s ease-in-out infinite;
}

.h11v3-second-match{
  position:absolute;
  z-index:3;
  right:2%;
  bottom:0;
  width:43%;
  overflow:hidden;
  border:
    1px solid
    rgba(141,115,255,.4);
  border-radius:16px;
  background:#111c25;
  box-shadow:
    0 27px 60px
    rgba(0,0,0,.4);
  transform:rotate(2deg);
}

.h11v3-second-match img{
  display:block;
  width:100%;
}

.h11v3-second-match span{
  display:block;
  padding:9px 12px;
  color:#879aa4;
  font-size:9px;
  font-weight:700;
}


/* =========================================================
   JOURNEY
   ========================================================= */

.h11v3-journey{
  padding-top:105px;
  padding-bottom:110px;
  background:
    radial-gradient(
      circle at 90% 5%,
      rgba(255,115,94,.14),
      transparent 26%
    ),
    radial-gradient(
      circle at 5% 100%,
      rgba(71,119,255,.12),
      transparent 29%
    ),
    #e9f1ed;
  color:#13211e;
}

.h11v3-journey-head{
  max-width:820px;
}

.h11v3-journey-head h2{
  margin:0;
  font:
    800
    clamp(44px,5.5vw,70px)/1
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-journey-head h2 span{
  display:block;
  color:#34755f;
}

.h11v3-journey-line{
  display:grid;
  grid-template-columns:
    1fr 45px
    1fr 45px
    1fr 45px
    1fr;
  gap:10px;
  align-items:center;
  margin-top:62px;
}

.h11v3-journey-line article{
  position:relative;
  min-height:215px;
  padding:20px 4px;
}

.h11v3-journey-number{
  display:grid;
  place-items:center;
  width:51px;
  height:51px;
  margin-bottom:29px;
  border-radius:50%;
  background:#15231f;
  color:white;
  font:800 12px Manrope;
  box-shadow:
    0 12px 24px
    rgba(35,61,51,.13);
}

.h11v3-journey-line small{
  color:#668077;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-journey-line strong{
  display:block;
  max-width:220px;
  margin:7px 0 9px;
  font:
    800 19px/1.15
    Manrope;
}

.h11v3-journey-line p{
  max-width:210px;
  margin:0;
  color:#66736e;
  font-size:12px;
  line-height:1.5;
}

.h11v3-journey-arrow{
  color:#9aac9f;
  font-size:25px;
  text-align:center;
}

.h11v3-journey-finish
.h11v3-journey-number{
  background:#24b87e;
  color:#062017;
}


/* =========================================================
   HUMAN
   ========================================================= */

.h11v3-human{
  position:relative;
  min-height:650px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  overflow:hidden;
  background:#172657;
}

.h11v3-human-image{
  position:absolute;
  inset:0 48% 0 0;
}

.h11v3-human-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.h11v3-human-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(15,26,49,.08),
      rgba(23,38,87,.25) 64%,
      #172657 100%
    );
}

.h11v3-human-copy{
  position:relative;
  z-index:3;
  grid-column:2;
  align-self:center;
  max-width:560px;
  padding:80px 0 80px 42px;
}

.h11v3-human-copy h2{
  margin:0;
  color:white;
  font:
    800
    clamp(43px,5.2vw,67px)/1
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-human-copy h2 span{
  display:block;
  color:#86efc3;
}

.h11v3-human-copy>p:not(.h11v3-kicker){
  max-width:500px;
  margin:22px 0 0;
  color:rgba(255,255,255,.74);
  font-size:16px;
  line-height:1.62;
}

.h11v3-human-copy>p +
p{
  margin-top:12px !important;
}

.h11v3-founder-play{
  display:flex;
  align-items:center;
  gap:15px;
  margin-top:31px;
  padding:0;
  border:0;
  background:transparent;
  color:white;
  text-align:left;
}

.h11v3-founder-play>span{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  flex:none;
  border:
    1px solid
    rgba(255,255,255,.35);
  border-radius:50%;
  background:
    rgba(255,255,255,.1);
  color:white;
  transition:
    transform .2s ease,
    background .2s ease;
}

.h11v3-founder-play:hover>span{
  transform:scale(1.08);
  background:
    rgba(82,224,160,.2);
}

.h11v3-founder-play>div{
  display:grid;
  gap:3px;
}

.h11v3-founder-play strong{
  font-size:14px;
}

.h11v3-founder-play small{
  color:rgba(255,255,255,.55);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes h11v3-real-chip-one{
  0%,
  100%{
    transform:
      rotate(-4deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(-2deg)
      translateY(-9px);
  }
}

@keyframes h11v3-real-chip-two{
  0%,
  100%{
    transform:
      rotate(3deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(1deg)
      translateY(9px);
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:980px){

  .h11v3-real-match{
    grid-template-columns:1fr;
  }

  .h11v3-real-copy{
    max-width:650px;
  }

  .h11v3-real-stage{
    width:min(760px,100%);
    margin:auto;
  }

  .h11v3-journey-line{
    grid-template-columns:1fr 1fr;
    gap:22px;
  }

  .h11v3-journey-arrow{
    display:none;
  }

  .h11v3-human{
    min-height:720px;
    grid-template-columns:1fr;
  }

  .h11v3-human-image{
    inset:0;
  }

  .h11v3-human-overlay{
    background:
      linear-gradient(
        0deg,
        #172657 6%,
        rgba(23,38,87,.82) 47%,
        rgba(23,38,87,.18) 100%
      );
  }

  .h11v3-human-copy{
    grid-column:1;
    align-self:end;
    padding:
      260px 0
      65px;
  }

}


@media(max-width:760px){

  .h11v3-book-marquee{
    padding-block:16px;
  }

  .h11v3-real-match{
    padding:
      80px 0
      90px;
  }

  .h11v3-real-copy h2{
    font-size:44px;
  }

  .h11v3-real-stage{
    min-height:420px;
  }

  .h11v3-real-shot-main{
    left:0;
    width:92%;
  }

  .h11v3-real-stake{
    min-width:145px;
    padding:12px 14px;
  }

  .h11v3-real-stake strong{
    font-size:22px;
  }

  .h11v3-second-match{
    width:54%;
  }


  .h11v3-journey{
    padding-top:78px;
    padding-bottom:80px;
  }

  .h11v3-journey-head h2{
    font-size:43px;
  }

  .h11v3-journey-line{
    grid-template-columns:1fr;
    margin-top:40px;
  }

  .h11v3-journey-line article{
    min-height:0;
    padding:
      17px 0
      25px 72px;
    border-bottom:
      1px solid
      rgba(19,33,30,.12);
  }

  .h11v3-journey-number{
    position:absolute;
    left:0;
    top:14px;
    margin:0;
  }


  .h11v3-human{
    min-height:690px;
  }

  .h11v3-human-copy{
    padding:
      260px 0
      55px;
  }

  .h11v3-human-copy h2{
    font-size:43px;
  }

}


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

  .h11v3-marquee-track,
  .h11v3-real-stake{
    animation:none;
  }

}
/* =========================================================
   HOMEPAGE V3 — FINAL SECTIONS
   ========================================================= */


/* =========================================================
   CREDIBILITY
   ========================================================= */

.h11v3-credibility{
  padding-top:110px;
  padding-bottom:115px;
  color:#13221e;
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(141,115,255,.13),
      transparent 30%
    ),
    #f3eee6;
}

.h11v3-credibility-inner{
  display:grid;
  grid-template-columns:
    minmax(300px,.8fr)
    minmax(500px,1.2fr);
  gap:80px;
  align-items:center;
}

.h11v3-credibility-copy h2{
  margin:0;
  font:
    800
    clamp(45px,5.5vw,71px)/.98
    Manrope;
  letter-spacing:-.06em;
}

.h11v3-credibility-copy h2 span{
  display:block;
  color:#34765f;
}

.h11v3-credibility-copy>p:not(.h11v3-kicker){
  max-width:490px;
  margin:23px 0 0;
  color:#60716b;
  font-size:16px;
  line-height:1.65;
}

.h11v3-dark-link{
  display:inline-flex;
  margin-top:25px;
  color:#183229;
  font-size:14px;
  font-weight:800;
  text-decoration:none;
}

.h11v3-dark-link:hover{
  color:#25805f;
}


/* Proof stack */

.h11v3-proof-stack{
  display:grid;
  gap:14px;
}

.h11v3-proof-item{
  position:relative;
  display:grid;
  grid-template-columns:
    44px minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  min-height:145px;
  padding:22px 25px;
  overflow:hidden;
  border-radius:21px;
  color:white;
  box-shadow:
    0 20px 45px
    rgba(32,42,39,.13);
  transition:
    transform .2s ease;
}

.h11v3-proof-item:hover{
  transform:translateX(-6px);
}

.h11v3-proof-item>span{
  display:grid;
  place-items:center;
  width:38px;
  height:38px;
  border:
    1px solid rgba(255,255,255,.35);
  border-radius:50%;
  font-size:9px;
  font-weight:800;
}

.h11v3-proof-item>div{
  position:relative;
  z-index:2;
}

.h11v3-proof-item small{
  display:block;
  margin-bottom:4px;
  opacity:.65;
  font-size:8px;
  font-weight:800;
  letter-spacing:.13em;
}

.h11v3-proof-item strong{
  display:block;
  font:
    800 20px Manrope;
}

.h11v3-proof-item p{
  max-width:390px;
  margin:5px 0 0;
  opacity:.72;
  font-size:11px;
  line-height:1.45;
}

.h11v3-proof-item>b{
  position:relative;
  z-index:2;
  font:
    800
    clamp(25px,3vw,37px)
    Manrope;
  letter-spacing:-.04em;
}

.h11v3-proof-item::after{
  content:"";
  position:absolute;
  right:-55px;
  bottom:-90px;
  width:190px;
  height:190px;
  border:
    35px solid
    rgba(255,255,255,.07);
  border-radius:50%;
}

.h11v3-proof-blue{
  background:
    linear-gradient(
      135deg,
      #315fd6,
      #4b78f5
    );
}

.h11v3-proof-green{
  margin-left:45px;
  background:
    linear-gradient(
      135deg,
      #17785a,
      #27b67f
    );
}

.h11v3-proof-coral{
  margin-left:12px;
  background:
    linear-gradient(
      135deg,
      #d85d54,
      #f47e61
    );
}


/* =========================================================
   HONEST SECTION
   ========================================================= */

.h11v3-honest{
  position:relative;
  padding-top:105px;
  padding-bottom:115px;
  overflow:hidden;
  background:
    radial-gradient(
      circle at 0 100%,
      rgba(255,110,84,.18),
      transparent 30%
    ),
    radial-gradient(
      circle at 100% 0,
      rgba(71,119,255,.13),
      transparent 32%
    ),
    #0b151d;
}

.h11v3-honest-head{
  max-width:830px;
}

.h11v3-honest-head h2{
  margin:0;
  font:
    800
    clamp(44px,5.6vw,71px)/.99
    Manrope;
  letter-spacing:-.055em;
}

.h11v3-honest-head h2 span{
  display:block;
  color:#ff816d;
}

.h11v3-risk-list{
  display:grid;
  grid-template-columns:
    repeat(3,1fr);
  gap:1px;
  margin-top:60px;
  border-top:
    1px solid
    rgba(255,255,255,.1);
  border-bottom:
    1px solid
    rgba(255,255,255,.1);
}

.h11v3-risk-list article{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:18px;
  min-height:240px;
  padding:34px 30px;
  border-right:
    1px solid
    rgba(255,255,255,.1);
  transition:
    background .2s ease;
}

.h11v3-risk-list article:last-child{
  border-right:0;
}

.h11v3-risk-list article:hover{
  background:
    rgba(255,255,255,.025);
}

.h11v3-risk-icon{
  display:grid;
  place-items:center;
  width:48px;
  height:48px;
  border:
    1px solid
    rgba(255,129,109,.35);
  border-radius:15px;
  background:
    rgba(255,129,109,.08);
  color:#ff8976;
  font:
    800 19px Manrope;
}

.h11v3-risk-list small{
  display:block;
  color:#738b96;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
}

.h11v3-risk-list strong{
  display:block;
  margin:10px 0 10px;
  font:
    800 20px Manrope;
}

.h11v3-risk-list p{
  margin:0;
  color:#91a5af;
  font-size:13px;
  line-height:1.55;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.h11v3-final{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(
      120deg,
      #214fcb 0%,
      #5a4dcc 49%,
      #934588 100%
    );
}

.h11v3-final::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(7,19,31,.12),
      transparent 55%
    );
  pointer-events:none;
}

.h11v3-final-inner{
  position:relative;
  z-index:4;
  width:58%;
  padding:105px 0;
}

.h11v3-final-inner h2{
  margin:0;
  color:white;
  font:
    800
    clamp(54px,7vw,92px)/.94
    Manrope;
  letter-spacing:-.065em;
}

.h11v3-final-inner h2 span{
  display:block;
  color:#a7f5d2;
}

.h11v3-final-inner>p:not(.h11v3-kicker){
  max-width:510px;
  margin:24px 0 0;
  color:rgba(255,255,255,.75);
  font-size:17px;
  line-height:1.6;
}

.h11v3-final-actions{
  display:flex;
  align-items:center;
  gap:17px;
  margin-top:31px;
}

.h11v3-final-actions small{
  color:rgba(255,255,255,.6);
}

.h11v3-final-button{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:24px;
  min-height:58px;
  padding:0 26px;
  border:0;
  border-radius:12px;
  background:#f6f2e9;
  color:#17231f;
  box-shadow:
    0 18px 38px
    rgba(23,20,66,.24);
  font-weight:800;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.h11v3-final-button:hover{
  transform:translateY(-3px);
  box-shadow:
    0 24px 46px
    rgba(23,20,66,.3);
}

.h11v3-final-button span{
  font-size:19px;
}


/* Floating equation */

.h11v3-final-math{
  position:absolute;
  z-index:3;
  right:max(
    28px,
    calc((100vw - 1180px) / 2)
  );
  top:50%;
  display:flex;
  align-items:center;
  gap:13px;
  transform:
    translateY(-50%)
    rotate(-4deg);
  padding:24px 27px;
  border:
    1px solid
    rgba(255,255,255,.22);
  border-radius:22px;
  background:
    rgba(12,19,47,.3);
  box-shadow:
    0 28px 65px
    rgba(27,14,70,.2);
  backdrop-filter:blur(15px);
  animation:
    h11v3-final-float
    6s ease-in-out infinite;
}

.h11v3-final-math span{
  color:white;
  font:
    800
    clamp(20px,2.2vw,31px)
    Manrope;
}

.h11v3-final-math i{
  color:
    rgba(255,255,255,.5);
  font-style:normal;
  font-weight:800;
}

.h11v3-final-math strong{
  color:#9cf1ca;
  font:
    800
    clamp(27px,3.4vw,46px)
    Manrope;
}

.h11v3-final-orb{
  position:absolute;
  border:
    45px solid
    rgba(255,255,255,.07);
  border-radius:50%;
}

.h11v3-final-orb-one{
  width:360px;
  height:360px;
  right:-130px;
  top:-150px;
}

.h11v3-final-orb-two{
  width:250px;
  height:250px;
  left:42%;
  bottom:-170px;
}


/* =========================================================
   MOTION
   ========================================================= */

@keyframes h11v3-final-float{
  0%,
  100%{
    transform:
      translateY(-50%)
      rotate(-4deg);
  }

  50%{
    transform:
      translateY(calc(-50% - 10px))
      rotate(-2deg);
  }
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media(max-width:980px){

  .h11v3-credibility-inner{
    grid-template-columns:1fr;
  }

  .h11v3-proof-stack{
    max-width:720px;
  }

  .h11v3-risk-list{
    grid-template-columns:1fr;
  }

  .h11v3-risk-list article{
    min-height:0;
    border-right:0;
    border-bottom:
      1px solid
      rgba(255,255,255,.1);
  }

  .h11v3-risk-list article:last-child{
    border-bottom:0;
  }

  .h11v3-final{
    min-height:650px;
    align-items:flex-start;
  }

  .h11v3-final-inner{
    width:100%;
    padding-top:85px;
  }

  .h11v3-final-math{
    right:28px;
    top:auto;
    bottom:65px;
    transform:rotate(-3deg);
  }

}


@media(max-width:760px){

  .h11v3-credibility{
    padding-top:78px;
    padding-bottom:80px;
  }

  .h11v3-credibility-copy h2{
    font-size:44px;
  }

  .h11v3-proof-item{
    grid-template-columns:
      37px 1fr;
    padding:19px;
  }

  .h11v3-proof-item>b{
    grid-column:2;
    margin-top:4px;
  }

  .h11v3-proof-green,
  .h11v3-proof-coral{
    margin-left:0;
  }


  .h11v3-honest{
    padding-top:78px;
    padding-bottom:80px;
  }

  .h11v3-honest-head h2{
    font-size:43px;
  }

  .h11v3-risk-list{
    margin-top:42px;
  }

  .h11v3-risk-list article{
    grid-template-columns:45px 1fr;
    padding:
      27px 0;
  }


  .h11v3-final{
    min-height:620px;
  }

  .h11v3-final-inner{
    padding-top:75px;
  }

  .h11v3-final-inner h2{
    font-size:54px;
  }

  .h11v3-final-actions{
    align-items:flex-start;
    flex-direction:column;
  }

  .h11v3-final-button{
    width:100%;
  }

  .h11v3-final-math{
    left:18px;
    right:auto;
    bottom:55px;
    max-width:
      calc(100% - 36px);
    padding:18px;
    gap:9px;
  }

}


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

  .h11v3-final-math{
    animation:none;
  }

}
/* =========================================================
   HOMEPAGE V3 — REFINEMENT PASS
   Less staccato, more breathing room, calmer cards
   ========================================================= */


/* ---------------------------------------------------------
   Keep important content away from viewport edges
   --------------------------------------------------------- */

.h11v3-real-match{
  width:min(1180px,calc(100% - 80px));
  margin-inline:auto;
}

@media(max-width:760px){
  .h11v3-real-match{
    width:calc(100% - 36px);
  }
}


/* ---------------------------------------------------------
   SOFTEN THE LIGHT SECTIONS
   --------------------------------------------------------- */

.h11v3-aha{
  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(82,224,160,.08),
      transparent 31%
    ),
    radial-gradient(
      circle at 88% 78%,
      rgba(71,119,255,.055),
      transparent 32%
    ),
    linear-gradient(
      180deg,
      #eeeae2 0%,
      #f2eee7 52%,
      #ece9e3 100%
    );
}

.h11v3-journey{
  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(255,115,94,.07),
      transparent 27%
    ),
    radial-gradient(
      circle at 4% 100%,
      rgba(71,119,255,.06),
      transparent 31%
    ),
    linear-gradient(
      180deg,
      #dfe8e2 0%,
      #e7ece7 100%
    );
}

.h11v3-credibility{
  background:
    radial-gradient(
      circle at 95% 10%,
      rgba(141,115,255,.07),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ebe6de 0%,
      #f0ebe3 100%
    );
}


/* ---------------------------------------------------------
   TONE DOWN THE PURPLE PROMOTION SECTION
   Keep the color — reduce the nightclub effect
   --------------------------------------------------------- */

.h11v3-promo-world{
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(141,115,255,.28),
      transparent 31%
    ),
    radial-gradient(
      circle at 72% 100%,
      rgba(255,112,92,.14),
      transparent 32%
    ),
    linear-gradient(
      125deg,
      #314d9e 0%,
      #5450aa 52%,
      #65417e 100%
    );
}


/* ---------------------------------------------------------
   AHA BET CARDS
   Less toy-like / less flat blue-vs-red
   --------------------------------------------------------- */

.h11v3-bet{
  border:1px solid rgba(255,255,255,.14);
  box-shadow:
    0 24px 50px rgba(30,38,40,.13);
}

.h11v3-bet-blue{
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(84,124,255,.18),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #182a45,
      #203752
    );
  border-color:rgba(71,119,255,.38);
}

.h11v3-bet-coral{
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(255,126,99,.15),
      transparent 36%
    ),
    linear-gradient(
      145deg,
      #31262a,
      #3c2b30
    );
  border-color:rgba(255,115,94,.35);
}

.h11v3-bet-blue .h11v3-bet-numbers b{
  color:#82a0ff;
}

.h11v3-bet-coral .h11v3-bet-numbers b{
  color:#ff927e;
}

.h11v3-bet-blue .h11v3-bet-book img,
.h11v3-bet-coral .h11v3-bet-book img{
  background:rgba(255,255,255,.94);
}


/* ---------------------------------------------------------
   REAL MATCH FLOATING CARDS
   Keep them — make them feel like software callouts,
   not colorful coupons
   --------------------------------------------------------- */

.h11v3-real-stake{
  border:1px solid rgba(255,255,255,.13);
  background:
    rgba(17,28,37,.96);
  backdrop-filter:blur(12px);
}

.h11v3-real-stake-one{
  background:
    linear-gradient(
      145deg,
      rgba(23,39,55,.98),
      rgba(15,26,36,.98)
    );
  border-color:rgba(71,119,255,.5);
}

.h11v3-real-stake-one small{
  color:#819eff;
}

.h11v3-real-stake-one strong{
  color:#8ea7ff;
}

.h11v3-real-stake-two{
  background:
    linear-gradient(
      145deg,
      rgba(43,31,34,.98),
      rgba(25,24,29,.98)
    );
  border-color:rgba(255,115,94,.45);
}

.h11v3-real-stake-two small{
  color:#ff8c77;
}

.h11v3-real-stake-two strong{
  color:#ff947f;
}


/* ---------------------------------------------------------
   CALMER TYPOGRAPHY RHYTHM
   Not every headline needs to dominate the viewport
   --------------------------------------------------------- */

.h11v3-promo-copy h2{
  font-size:clamp(40px,4.7vw,61px);
}

.h11v3-real-copy h2{
  font-size:clamp(40px,4.5vw,58px);
}

.h11v3-journey-head h2{
  font-size:clamp(40px,4.7vw,60px);
}

.h11v3-credibility-copy h2{
  font-size:clamp(40px,4.7vw,60px);
}

.h11v3-honest-head h2{
  font-size:clamp(40px,4.8vw,61px);
}


/* ---------------------------------------------------------
   MORE VISUAL BREATHING ROOM
   --------------------------------------------------------- */

.h11v3-product{
  padding-top:100px;
  padding-bottom:110px;
}

.h11v3-real-match{
  padding-top:105px;
  padding-bottom:110px;
}

.h11v3-journey{
  padding-top:95px;
  padding-bottom:100px;
}

.h11v3-human{
  min-height:610px;
}

.h11v3-credibility{
  padding-top:100px;
  padding-bottom:105px;
}

.h11v3-honest{
  padding-top:95px;
  padding-bottom:105px;
}


/* ---------------------------------------------------------
   Softer transition into darker sections
   --------------------------------------------------------- */

.h11v3-product::before,
.h11v3-honest::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:70px;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.025),
      transparent
    );
}


/* ---------------------------------------------------------
   Reduce intensity of the final CTA slightly
   --------------------------------------------------------- */

.h11v3-final{
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(145,103,255,.34),
      transparent 29%
    ),
    linear-gradient(
      120deg,
      #294fae 0%,
      #5148a7 53%,
      #784577 100%
    );
}

.h11v3-final-inner h2 span{
  color:#b5efd5;
}
/* =========================================================
   REAL PROMOTION COLLAGE
   ========================================================= */

.h11v3-promo-collage{
  position:relative;
  min-height:500px;
}

.h11v3-promo-image{
  position:absolute;
  overflow:hidden;
  margin:0;
  border:1px solid rgba(255,255,255,.2);
  border-radius:18px;
  background:#111827;
  box-shadow:
    0 28px 60px rgba(18,12,49,.28);
}

.h11v3-promo-image img{
  display:block;
  width:100%;
  height:auto;
}

.h11v3-promo-image-main{
  z-index:3;
  top:82px;
  left:11%;
  width:58%;
  transform:rotate(-3deg);
  animation:
    h11v3-real-promo-main
    6.5s ease-in-out infinite;
}

.h11v3-promo-image-top{
  z-index:2;
  top:2px;
  right:1%;
  width:47%;
  transform:rotate(4deg);
  animation:
    h11v3-real-promo-top
    7.2s ease-in-out infinite;
}

.h11v3-promo-image-bottom{
  z-index:4;
  right:2%;
  bottom:5px;
  width:47%;
  transform:rotate(2deg);
  animation:
    h11v3-real-promo-bottom
    6.8s ease-in-out infinite;
}

.h11v3-promo-logo{
  position:absolute;
  z-index:6;
  display:grid;
  place-items:center;
  width:62px;
  height:62px;
  border:1px solid rgba(255,255,255,.25);
  border-radius:18px;
  background:rgba(255,255,255,.95);
  box-shadow:
    0 18px 38px rgba(20,10,50,.22);
}

.h11v3-promo-logo img{
  width:40px;
  height:40px;
  object-fit:contain;
}

.h11v3-promo-logo-one{
  left:0;
  bottom:78px;
  transform:rotate(-8deg);
}

.h11v3-promo-logo-two{
  right:7%;
  top:180px;
  transform:rotate(7deg);
}


@keyframes h11v3-real-promo-main{
  0%,
  100%{
    transform:
      rotate(-3deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(-2deg)
      translateY(-9px);
  }
}

@keyframes h11v3-real-promo-top{
  0%,
  100%{
    transform:
      rotate(4deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(2deg)
      translateY(8px);
  }
}

@keyframes h11v3-real-promo-bottom{
  0%,
  100%{
    transform:
      rotate(2deg)
      translateY(0);
  }

  50%{
    transform:
      rotate(4deg)
      translateY(-8px);
  }
}


@media(max-width:760px){

  .h11v3-promo-collage{
    min-height:430px;
  }

  .h11v3-promo-image-main{
    top:70px;
    left:0;
    width:72%;
  }

  .h11v3-promo-image-top{
    width:55%;
  }

  .h11v3-promo-image-bottom{
    width:58%;
  }

  .h11v3-promo-logo{
    width:48px;
    height:48px;
    border-radius:14px;
  }

  .h11v3-promo-logo img{
    width:31px;
    height:31px;
  }

}


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

  .h11v3-promo-image{
    animation:none;
  }

}
/* =========================================================
   HOMEPAGE V3 — FLOW REFINEMENT
   ========================================================= */


/* ---------------------------------------------------------
   PROMO → PRODUCT
   Soften the hard purple-to-dark cut
   --------------------------------------------------------- */

.h11v3-promo-world{
  position:relative;
}

.h11v3-promo-world::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:95px;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(9,19,27,0) 0%,
      rgba(9,19,27,.3) 45%,
      #09131b 100%
    );
}

.h11v3-product{
  margin-top:-1px;
}


/* ---------------------------------------------------------
   REAL MATCH
   Pull it inward and make it feel more intentional
   --------------------------------------------------------- */

.h11v3-real-match{
  width:min(1120px,calc(100% - 96px));
  margin-inline:auto;
  gap:54px;
}

.h11v3-real-stage{
  min-height:500px;
}

.h11v3-real-shot-main{
  left:7%;
  width:74%;
}

.h11v3-real-stake-one{
  left:1%;
}

.h11v3-real-stake-two{
  right:3%;
}

.h11v3-second-match{
  right:4%;
  width:39%;
}


/* ---------------------------------------------------------
   REAL MATCH CARD TREATMENT
   Less bright / less coupon-like
   --------------------------------------------------------- */

.h11v3-real-stake{
  min-width:170px;
  padding:14px 16px;
  border-radius:14px;
  box-shadow:
    0 18px 38px rgba(0,0,0,.32);
}

.h11v3-real-stake-one{
  background:
    linear-gradient(
      145deg,
      #182737,
      #101c27
    );
  border-color:
    rgba(93,130,255,.42);
}

.h11v3-real-stake-two{
  background:
    linear-gradient(
      145deg,
      #2b2327,
      #1c1b20
    );
  border-color:
    rgba(255,130,104,.38);
}

.h11v3-real-stake-one strong{
  color:#90a7ff;
}

.h11v3-real-stake-two strong{
  color:#ff9a83;
}


/* ---------------------------------------------------------
   JOURNEY → HUMAN
   Blend the transition instead of a hard color cut
   --------------------------------------------------------- */

.h11v3-journey{
  position:relative;
  overflow:hidden;
}

.h11v3-journey::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:90px;
  pointer-events:none;
  background:
    linear-gradient(
      180deg,
      rgba(23,38,87,0) 0%,
      rgba(23,38,87,.12) 55%,
      rgba(23,38,87,.28) 100%
    );
}

.h11v3-human{
  margin-top:-1px;
}


/* ---------------------------------------------------------
   Slightly reduce overall saturation
   --------------------------------------------------------- */

.h11v3-promo-world{
  filter:saturate(.92);
}

.h11v3-final{
  filter:saturate(.94);
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media(max-width:760px){

  .h11v3-real-match{
    width:calc(100% - 36px);
  }

  .h11v3-real-shot-main{
    left:0;     
    width:92%;
  }

  .h11v3-second-match{
    right:0;
    width:54%;
  }

}
/* =========================================================
   BASIC IDEA — MATCH BOARD
   No cards. One connected explanation.
   ========================================================= */

.h11v3-aha{
  padding-top:92px;
  padding-bottom:100px;
}

.h11v3-aha-inner{
  width:min(1120px,calc(100% - 72px));
  margin-inline:auto;
}

.h11v3-aha-heading{
  max-width:760px;
}

.h11v3-aha-heading h2{
  font-size:clamp(44px,5vw,64px);
}


/* ---------------------------------------------------------
   MATCH BOARD
   --------------------------------------------------------- */

.h11v3-match-board{
  max-width:1040px;
  margin:58px auto 0;
}

.h11v3-event-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:13px;
  margin-bottom:28px;
  text-align:center;
}

.h11v3-event-label span{
  color:#718078;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-event-label strong{
  color:#25332e;
  font:700 15px Manrope;
}


/* ---------------------------------------------------------
   TWO SIDES
   --------------------------------------------------------- */

.h11v3-match-sides{
  display:grid;
  grid-template-columns:
    minmax(0,1fr)
    120px
    minmax(0,1fr);
  align-items:stretch;
}

.h11v3-match-side{
  display:grid;
  grid-template-columns:
    minmax(145px,.72fr)
    minmax(190px,1fr);
  gap:34px;
  align-items:center;
  min-height:220px;
  padding:29px 34px;
  border-block:
    1px solid rgba(25,45,38,.15);
}

.h11v3-match-side-left{
  border-left:
    1px solid rgba(25,45,38,.15);
  border-radius:18px 0 0 18px;
}

.h11v3-match-side-right{
  border-right:
    1px solid rgba(25,45,38,.15);
  border-radius:0 18px 18px 0;
}


/* Sportsbook identity */

.h11v3-side-book{
  display:flex;
  align-items:center;
  gap:11px;
}

.h11v3-side-book img{
  width:43px;
  height:43px;
  padding:5px;
  object-fit:contain;
  border:
    1px solid rgba(20,40,34,.12);
  border-radius:11px;
  background:rgba(255,255,255,.62);
}

.h11v3-side-book div{
  display:grid;
  gap:2px;
}

.h11v3-side-book small{
  color:#7b8882;
  font-size:7px;
  font-weight:800;
  letter-spacing:.14em;
}

.h11v3-side-book strong{
  color:#26362f;
  font:800 14px Manrope;
}


/* Selection */

.h11v3-side-selection{
  display:grid;
}

.h11v3-side-selection>small{
  margin-bottom:7px;
  color:#77837e;
  font-size:8px;
  font-weight:800;
  letter-spacing:.14em;
}

.h11v3-side-selection h3{
  margin:0;
  color:#17241f;
  font:
    800
    clamp(25px,2.4vw,33px)/1
    Manrope;
  letter-spacing:-.035em;
}

.h11v3-side-odds{
  margin-top:18px;
  font:
    800
    clamp(32px,3vw,43px)
    Manrope;
}

.h11v3-match-side-left
.h11v3-side-odds{
  color:#536fcf;
}

.h11v3-match-side-right
.h11v3-side-odds{
  color:#c86d5d;
}

.h11v3-side-stake{
  margin-top:2px;
  color:#596760;
  font-size:13px;
  font-weight:700;
}


/* ---------------------------------------------------------
   CENTER CONNECTION
   --------------------------------------------------------- */

.h11v3-match-center{
  display:grid;
  place-items:center;
  align-content:center;
  gap:9px;
  color:#7d8883;
}

.h11v3-match-center>span,
.h11v3-match-center>small{
  font-size:7px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-match-center-line{
  display:flex;
  align-items:center;
  width:100%;
}

.h11v3-match-center-line i{
  flex:1;
  height:1px;
  background:
    rgba(33,52,45,.22);
}

.h11v3-match-center-line b{
  display:grid;
  place-items:center;
  width:54px;
  height:54px;
  flex:none;
  margin:0 8px;
  border-radius:50%;
  background:#111a20;
  color:white;
  font:800 16px Manrope;
  box-shadow:
    0 12px 25px rgba(19,27,25,.12);
}


/* ---------------------------------------------------------
   CONVERGENCE
   --------------------------------------------------------- */

.h11v3-converge{
  max-width:600px;
  margin:0 auto;
}

.h11v3-converge-lines{
  position:relative;
  height:64px;
}

.h11v3-converge-lines::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  width:1px;
  height:28px;
  background:
    rgba(42,73,61,.24);
}

.h11v3-converge-lines i{
  position:absolute;
  top:0;
  width:48%;
  height:1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(48,84,70,.3)
    );
}

.h11v3-converge-lines i:first-child{
  left:0;
  transform:
    rotate(8deg);
  transform-origin:right center;
}

.h11v3-converge-lines i:last-child{
  right:0;
  transform:
    rotate(-8deg);
  transform-origin:left center;
  background:
    linear-gradient(
      90deg,
      rgba(48,84,70,.3),
      transparent
    );
}

.h11v3-converge-result{
  text-align:center;
}

.h11v3-converge-result small{
  display:block;
  color:#718078;
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.h11v3-converge-result strong{
  display:block;
  margin:4px 0 -4px;
  color:#33785e;
  font:
    800
    clamp(52px,5.5vw,72px)
    Manrope;
  letter-spacing:-.06em;
}

.h11v3-converge-result span{
  color:#69766f;
  font-size:12px;
  font-weight:700;
}


/* ---------------------------------------------------------
   SUBTLE MOTION
   --------------------------------------------------------- */

.h11v3-match-side-left{
  animation:
    h11v3-side-left
    6s ease-in-out infinite;
}

.h11v3-match-side-right{
  animation:
    h11v3-side-right
    6s ease-in-out infinite;
}

@keyframes h11v3-side-left{
  0%,
  100%{
    transform:translateX(0);
  }

  50%{
    transform:translateX(4px);
  }
}

@keyframes h11v3-side-right{
  0%,
  100%{
    transform:translateX(0);
  }

  50%{
    transform:translateX(-4px);
  }
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media(max-width:760px){

  .h11v3-aha-inner{
    width:100%;
  }

  .h11v3-match-board{
    margin-top:40px;
  }

  .h11v3-event-label{
    align-items:flex-start;
    flex-direction:column;
    gap:4px;
  }

  .h11v3-match-sides{
    grid-template-columns:1fr;
  }

  .h11v3-match-side{
    grid-template-columns:1fr 1fr;
    gap:20px;
    min-height:170px;
    padding:22px 18px;
    border:
      1px solid rgba(25,45,38,.14);
  }

  .h11v3-match-side-left{
    border-radius:15px 15px 0 0;
  }

  .h11v3-match-side-right{
    border-radius:0 0 15px 15px;
  }

  .h11v3-match-center{
    min-height:70px;
  }

  .h11v3-match-center-line{
    max-width:160px;
  }

  .h11v3-side-book img{
    width:36px;
    height:36px;
  }

  .h11v3-side-selection h3{
    font-size:23px;
  }

  .h11v3-side-odds{
    font-size:30px;
  }

  .h11v3-converge-lines{
    height:45px;
  }

}


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

  .h11v3-match-side-left,
  .h11v3-match-side-right{
    animation:none;
  }

}
/* =========================================================
   HEDGE11 SHOWS ITS WORK — PREMIUM CARD PASS
   ========================================================= */

.h11v3-credibility{
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(80,105,255,.06),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #e9e5de 0%,
      #efebe4 100%
    );
}

.h11v3-proof-stack{
  position:relative;
  gap:13px;
}

.h11v3-proof-stack::before{
  content:"";
  position:absolute;
  inset:-26px -24px -24px 18px;
  pointer-events:none;
  opacity:.18;
  background-image:
    linear-gradient(
      rgba(40,55,65,.14) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(40,55,65,.14) 1px,
      transparent 1px
    );
  background-size:26px 26px;
  mask-image:
    linear-gradient(
      90deg,
      transparent,
      black 18%,
      black 82%,
      transparent
    );
}

.h11v3-proof-item{
  position:relative;
  z-index:2;
  min-height:132px;
  padding:20px 24px;
  border:
    1px solid
    rgba(255,255,255,.08);
  border-radius:17px;
  background:
    linear-gradient(
      145deg,
      rgba(20,29,37,.99),
      rgba(12,21,28,.99)
    );
  color:#edf3f5;
  box-shadow:
    0 20px 42px rgba(24,32,36,.16);
  overflow:hidden;
  transition:
    transform .2s ease,
    box-shadow .2s ease;
}

.h11v3-proof-item:hover{
  transform:translateX(-4px);
  box-shadow:
    0 26px 48px rgba(24,32,36,.2);
}

.h11v3-proof-item::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:4px;
  border-radius:4px;
}

.h11v3-proof-item::after{
  content:"";
  position:absolute;
  width:185px;
  height:185px;
  right:-75px;
  top:-85px;
  border-radius:50%;
  opacity:.14;
  filter:blur(2px);
}

.h11v3-proof-blue{
  background:
    linear-gradient(
      145deg,
      #151f2a,
      #0f1820
    );
}

.h11v3-proof-blue::before{
  background:#6f8cff;
}

.h11v3-proof-blue::after{
  background:#5377ff;
}

.h11v3-proof-green{
  margin-left:34px;
  background:
    linear-gradient(
      145deg,
      #14241f,
      #0e1b17
    );
}

.h11v3-proof-green::before{
  background:#5ee2a5;
}

.h11v3-proof-green::after{
  background:#4cd495;
}

.h11v3-proof-coral{
  margin-left:8px;
  background:
    linear-gradient(
      145deg,
      #241d20,
      #19171b
    );
}

.h11v3-proof-coral::before{
  background:#ef8873;
}

.h11v3-proof-coral::after{
  background:#e77363;
}

.h11v3-proof-item>span{
  position:relative;
  z-index:2;
  width:34px;
  height:34px;
  border:
    1px solid
    rgba(255,255,255,.13);
  background:
    rgba(255,255,255,.035);
  color:#aebcc3;
  font-size:8px;
}

.h11v3-proof-item small{
  color:#7f929c;
}

.h11v3-proof-item strong{
  color:#eef3f5;
  font-size:19px;
}

.h11v3-proof-item p{
  color:#81949e;
  opacity:1;
  max-width:370px;
}

.h11v3-proof-item>b{
  position:relative;
  z-index:2;
  min-width:110px;
  text-align:right;
  font:
    800
    clamp(26px,3vw,38px)
    Manrope;
  letter-spacing:-.045em;
}

.h11v3-proof-blue>b{
  color:#8ea4ff;
}

.h11v3-proof-green>b{
  color:#70e5b0;
}

.h11v3-proof-coral>b{
  color:#f09582;
}


/* Mobile */

@media(max-width:760px){

  .h11v3-proof-stack::before{
    display:none;
  }

  .h11v3-proof-item{
    grid-template-columns:
      34px minmax(0,1fr);
    min-height:0;
    padding:18px;
  }

  .h11v3-proof-item>b{
    grid-column:2;
    min-width:0;
    margin-top:3px;
    text-align:left;
  }

  .h11v3-proof-green,
  .h11v3-proof-coral{
    margin-left:0;
  }

}