/* =========================================================
   ASC FLAGSHIP HOME
========================================================= */

:root{
  --asc-bg-1:#f8fbfe;
  --asc-bg-2:#edf4f9;
  --asc-bg-3:#e8f0f6;
  --asc-text-1:#0d1b29;
  --asc-text-2:#5d6f82;
  --asc-text-3:#738599;
  --asc-line:rgba(214,224,233,.92);
  --asc-line-soft:rgba(223,231,238,.72);
  --asc-white:rgba(255,255,255,.78);
  --asc-white-2:rgba(255,255,255,.62);
  --asc-accent-1:#d9e8f5;
  --asc-accent-2:#c6dceb;
  --asc-accent-3:#9cb8d0;
  --asc-deep:#0f1b28;
  --asc-shadow-sm:0 10px 24px rgba(17,27,38,.05);
  --asc-shadow-md:0 20px 50px rgba(16,24,40,.07);
  --asc-shadow-lg:0 30px 90px rgba(12,20,31,.12);
  --asc-shadow-xl:0 40px 120px rgba(10,18,28,.16);
  --asc-radius-sm:18px;
  --asc-radius-md:24px;
  --asc-radius-lg:32px;
  --asc-container:min(1320px, calc(100% - 48px));
}

html{
  scroll-behavior:smooth;
}

body.asc-home-premium-page.asc-home-flagship-page{
  margin:0;
  min-height:100vh;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
  color:var(--asc-text-1);
  background:
    radial-gradient(circle at 0% 0%, rgba(216,231,243,.92), transparent 24%),
    radial-gradient(circle at 100% 100%, rgba(224,237,246,.88), transparent 28%),
    linear-gradient(180deg, var(--asc-bg-1) 0%, var(--asc-bg-2) 42%, #edf3f8 100%);
}

body.asc-home-premium-page .site,
body.asc-home-premium-page #page{
  margin:0;
  max-width:none;
  width:100%;
  min-height:100vh;
  background:transparent;
}

.ascHomePremium{
  position:relative;
  min-height:100vh;
  overflow:hidden;
}

.ascHomePremium__noise{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.06;
  background-image:
    radial-gradient(rgba(16, 24, 40, .35) .6px, transparent .6px);
  background-size: 10px 10px;
  mix-blend-mode:soft-light;
}

.ascHomePremium__ambient{
  position:absolute;
  border-radius:999px;
  filter:blur(95px);
  opacity:.5;
  pointer-events:none;
  will-change:transform;
}

.ascHomePremium__ambient--one{
  width:460px;
  height:460px;
  top:-120px;
  left:-120px;
  background:rgba(205,223,237,.88);
}

.ascHomePremium__ambient--two{
  width:480px;
  height:480px;
  right:-140px;
  top:160px;
  background:rgba(225,236,245,.92);
}

.ascHomePremium__ambient--three{
  width:400px;
  height:400px;
  left:42%;
  bottom:-150px;
  background:rgba(214,230,244,.82);
}

.ascHomePremium__container{
  width:var(--asc-container);
  margin:0 auto;
  position:relative;
}

.ascScrollProgress{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:3px;
  z-index:9999;
  background:rgba(255,255,255,.2);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}

.ascScrollProgress span{
  display:block;
  width:0%;
  height:100%;
  background:linear-gradient(90deg, #bfd5e6 0%, #7f9ab4 100%);
  box-shadow:0 0 22px rgba(126,153,180,.45);
}

/* Topbar */
.ascHomePremium__topbar{
  position:sticky;
  top:0;
  z-index:30;
  padding:16px 0 10px;
  background:rgba(247,251,255,.56);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(224,232,239,.72);
}

.ascHomePremium__topbarInner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  min-height:72px;
}

.ascHomePremium__brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:#132334;
  font-weight:900;
  letter-spacing:-.03em;
}

.ascHomePremium__brandMark{
  width:50px;
  height:50px;
  border-radius:17px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(216,225,233,.95);
  box-shadow:
    0 16px 32px rgba(19,31,47,.07),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.ascHomePremium__brandSvg{
  width:30px;
  height:18px;
}

.ascHomePremium__brandText{
  font-family:"Manrope", Inter, system-ui, sans-serif;
  font-size:17px;
  font-weight:900;
}

.ascHomePremium__topNav{
  display:flex;
  align-items:center;
  gap:22px;
}

.ascHomePremium__topNav a{
  position:relative;
  text-decoration:none;
  color:#607386;
  font-size:13px;
  font-weight:800;
  letter-spacing:-.01em;
  padding:8px 0;
}

.ascHomePremium__topNav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:2px;
  background:linear-gradient(90deg, #9cb6cf 0%, #47627b 100%);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s ease;
}

.ascHomePremium__topNav a:hover,
.ascHomePremium__topNav a.is-active{
  color:#173149;
}

.ascHomePremium__topNav a:hover::after,
.ascHomePremium__topNav a.is-active::after{
  transform:scaleX(1);
}

.ascHomePremium__topbarActions{
  display:flex;
  align-items:center;
  gap:10px;
}

.ascHomePremium__topLink{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 16px;
  border-radius:15px;
  text-decoration:none;
  color:#284866;
  font-size:14px;
  font-weight:800;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(217,227,236,.95);
  box-shadow:0 8px 18px rgba(14,22,34,.04);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.ascHomePremium__topLink::before,
.ascHomePremium__btn::before,
.ascHomePremium__ctaLinks a::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.55) 45%, transparent 70%);
  transform:translateX(-130%);
  transition:transform .75s ease;
}

.ascHomePremium__topLink:hover::before,
.ascHomePremium__btn:hover::before,
.ascHomePremium__ctaLinks a:hover::before{
  transform:translateX(130%);
}

.ascHomePremium__topLink:hover{
  transform:translateY(-1px);
}

.ascHomePremium__topLink--primary{
  background:linear-gradient(180deg,#dbe8f3 0%, #cfdfeb 100%);
  color:#183248;
  box-shadow:
    0 16px 30px rgba(39,67,95,.10),
    inset 0 1px 0 rgba(255,255,255,.72);
}

/* Hero */
.ascHomePremium__main{
  position:relative;
  z-index:2;
}

.ascHomePremium__hero{
  position:relative;
  padding:48px 0 62px;
}

.ascHeroCanvas{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  pointer-events:none;
  opacity:.42;
}

.ascHomePremium__heroGrid{
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:42px;
  align-items:center;
}

.ascHomePremium__copy{
  padding:24px 0;
  position:relative;
  z-index:2;
}

.ascHomePremium__eyebrow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:24px;
}

.ascHomePremium__eyebrowBadge{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 15px;
  border-radius:999px;
  background:linear-gradient(180deg, #edf5fb 0%, #dfeaf3 100%);
  color:#1a2d3f;
  font-size:12px;
  font-weight:900;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.ascHomePremium__eyebrowBadge--soft{
  background:rgba(255,255,255,.74);
  border:1px solid rgba(220,229,237,.95);
}

.ascHomePremium__title,
.ascHomePremium__sectionHead h2,
.ascSignatureBand__title,
.ascHomePremium__cta h2{
  font-family:"Manrope", Inter, system-ui, sans-serif;
  font-weight:900;
  letter-spacing:-.065em;
  text-wrap:balance;
}

.ascHomePremium__title{
  margin:0 0 18px;
  font-size:clamp(58px, 7vw, 98px);
  line-height:.9;
  max-width:920px;
  color:#0d1b29;
  text-shadow:0 2px 22px rgba(255,255,255,.18);
}

.ascHomePremium__title .is-accent{
  display:inline-block;
  background:linear-gradient(180deg, #7d98b2 0%, #32485f 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.ascHomePremium__subtitle{
  margin:0;
  max-width:720px;
  color:var(--asc-text-2);
  font-size:19px;
  line-height:1.85;
  text-wrap:pretty;
}

.ascHomePremium__actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}

.ascHomePremium__btn{
  position:relative;
  overflow:hidden;
  min-height:56px;
  padding:0 22px;
  border-radius:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  font-weight:900;
  border:1px solid rgba(210,221,231,.98);
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
  will-change:transform;
}

.ascHomePremium__btn:hover{
  transform:translateY(-2px);
}

.ascHomePremium__btn--primary{
  color:#132434;
  background:linear-gradient(180deg, #dce9f4 0%, #cbddeb 100%);
  box-shadow:
    0 18px 36px rgba(32,58,82,.12),
    inset 0 1px 0 rgba(255,255,255,.75);
}

.ascHomePremium__btn--ghost{
  color:#355068;
  background:rgba(255,255,255,.84);
  border:1px solid rgba(216,226,235,.98);
}

.ascHomePremium__miniStats{
  margin-top:32px;
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:14px;
}

.ascMiniStat{
  padding:18px 18px;
  border-radius:20px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(220,230,239,.88);
  box-shadow:
    0 14px 28px rgba(20,32,47,.05),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.ascMiniStat strong{
  display:block;
  margin-bottom:6px;
  color:#172838;
  font-size:28px;
  line-height:1;
  letter-spacing:-.05em;
  font-family:"Manrope", Inter, sans-serif;
}

.ascMiniStat span{
  display:block;
  color:#64778b;
  font-size:13px;
  line-height:1.55;
}

.ascHomePremium__visual{
  display:flex;
  justify-content:center;
}

.ascShowcase{
  width:100%;
  max-width:620px;
  perspective:1200px;
}

.ascShowcase__window{
  border-radius:34px;
  border:1px solid rgba(214,223,232,.96);
  background:rgba(255,255,255,.80);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:
    0 32px 90px rgba(17,27,38,.12),
    0 10px 24px rgba(17,27,38,.08),
    inset 0 1px 0 rgba(255,255,255,.6);
  overflow:hidden;
}

.ascShowcase__bar{
  display:flex;
  gap:8px;
  padding:14px 16px;
  border-bottom:1px solid rgba(226,233,240,.92);
}

.ascShowcase__bar span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#d7e3ec;
}

.ascShowcase__body{
  display:grid;
  grid-template-columns:170px 1fr;
  min-height:455px;
}

.ascShowcase__sidebar{
  padding:18px;
  border-right:1px solid rgba(227,233,240,.92);
  background:rgba(248,251,253,.78);
}

.ascShowcase__navItem{
  padding:12px 14px;
  border-radius:14px;
  color:#5e7082;
  font-size:13px;
  font-weight:800;
}

.ascShowcase__navItem + .ascShowcase__navItem{
  margin-top:8px;
}

.ascShowcase__navItem.is-active{
  background:linear-gradient(180deg, #e7f0f7 0%, #dce8f2 100%);
  color:#1b344b;
}

.ascShowcase__content{
  padding:26px;
}

.ascShowcase__headline{
  font-size:24px;
  font-family:"Manrope", Inter, sans-serif;
  font-weight:900;
  letter-spacing:-.04em;
  color:#172534;
  margin-bottom:18px;
}

.ascShowcase__cards{
  display:grid;
  gap:12px;
  margin-bottom:16px;
}

.ascShowcaseCard{
  padding:16px;
  border-radius:20px;
  background:linear-gradient(180deg, #fbfdfe 0%, #f2f7fb 100%);
  border:1px solid rgba(220,229,237,.94);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.7),
    0 10px 22px rgba(16,24,40,.04);
}

.ascShowcaseCard strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
  color:#182837;
}

.ascShowcaseCard span{
  display:block;
  font-size:13px;
  color:#66788b;
}

.ascShowcase__panel{
  padding:16px;
  border-radius:18px;
  background:rgba(246,250,253,.95);
  border:1px solid rgba(224,231,238,.96);
}

.ascShowcase__panelTitle{
  margin-bottom:10px;
  font-size:13px;
  font-weight:900;
  color:#1d3248;
  text-transform:uppercase;
  letter-spacing:.06em;
}

.ascShowcase__list{
  margin:0;
  padding-left:18px;
  color:#66798d;
  font-size:13px;
  line-height:1.7;
}

/* Trust strip */
.ascTrustStrip{
  padding:10px 0 28px;
}

.ascTrustStrip__inner{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.ascTrustStrip__inner span{
  min-height:38px;
  padding:0 16px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  border:1px solid rgba(218,228,237,.96);
  background:rgba(255,255,255,.66);
  color:#5f7284;
  font-size:12px;
  font-weight:900;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

/* Signature band */
.ascSignatureBand{
  padding:20px 0 34px;
}

.ascSignatureBand__shell{
  position:relative;
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:28px;
  align-items:center;
  padding:36px;
  border-radius:32px;
  overflow:hidden;
  background:
    radial-gradient(circle at top left, rgba(82,120,170,.20) 0%, rgba(82,120,170,0) 28%),
    radial-gradient(circle at bottom right, rgba(63,130,100,.14) 0%, rgba(63,130,100,0) 28%),
    linear-gradient(180deg, #122131 0%, #0d1825 100%);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 30px 80px rgba(10,18,28,.24);
}

.ascSignatureBand__shell::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:linear-gradient(135deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 38%);
}

.ascSignatureBand__copy,
.ascSignatureBand__visual{
  position:relative;
  z-index:1;
}

.ascSignatureBand__eyebrow{
  margin-bottom:12px;
  color:rgba(199,217,235,.82);
  font-size:11px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}

.ascSignatureBand__title{
  margin:0 0 14px;
  color:#f3f7fb;
  font-size:clamp(30px, 4vw, 48px);
  line-height:.96;
}

.ascSignatureBand__sub{
  margin:0;
  color:rgba(212,224,236,.82);
  font-size:15px;
  line-height:1.85;
  max-width:680px;
}

.ascSignatureBand__points{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px;
}

.ascSignatureBand__points span{
  min-height:36px;
  padding:0 14px;
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  color:#edf4fb;
  font-size:12px;
  font-weight:800;
}

.ascSignatureBand__glass{
  display:grid;
  gap:12px;
  padding:18px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.14),
    0 18px 36px rgba(0,0,0,.18);
}

.ascSignatureBand__metric{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.ascSignatureBand__metric strong{
  display:block;
  margin-bottom:6px;
  color:#ffffff;
  font-size:15px;
  letter-spacing:-.02em;
}

.ascSignatureBand__metric span{
  display:block;
  color:rgba(214,226,239,.82);
  font-size:13px;
  line-height:1.7;
}

/* Sections */
.ascHomePremium__section{
  padding:54px 0;
}

.ascHomePremium__section--soft{
  background:rgba(255,255,255,.34);
  border-top:1px solid rgba(225,232,239,.7);
  border-bottom:1px solid rgba(225,232,239,.7);
}

.ascHomePremium__sectionHead{
  margin-bottom:26px;
  max-width:860px;
}

.ascHomePremium__sectionHead h2{
  margin:0 0 12px;
  font-size:clamp(38px, 4vw, 58px);
  line-height:.94;
  color:#152433;
}

.ascHomePremium__sectionHead p{
  margin:0;
  color:#637487;
  font-size:17px;
  line-height:1.8;
  text-wrap:pretty;
}

/* Tour */
.ascProductTour{
  display:grid;
  gap:18px;
}

.ascProductTour__tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.ascProductTour__tab{
  appearance:none;
  border:1px solid rgba(217,227,236,.96);
  background:rgba(255,255,255,.76);
  color:#5d7083;
  min-height:44px;
  padding:0 16px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  cursor:pointer;
  transition:transform .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
}

.ascProductTour__tab:hover{
  transform:translateY(-1px);
}

.ascProductTour__tab.is-active{
  color:#163149;
  background:linear-gradient(180deg, #e8f1f7 0%, #dbe8f1 100%);
  box-shadow:0 10px 20px rgba(29,48,68,.06);
}

.ascProductTour__stage{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 340px;
  gap:24px;
  padding:28px;
  border-radius:30px;
  border:1px solid rgba(217,227,236,.96);
  background:
    linear-gradient(180deg, rgba(255,255,255,.85) 0%, rgba(247,251,254,.82) 100%);
  box-shadow:
    0 26px 60px rgba(16,24,40,.07),
    inset 0 1px 0 rgba(255,255,255,.72);
}

.ascProductTour__content{
  display:none;
  animation:ascFadeUp .35s ease;
}

.ascProductTour__content.is-active{
  display:block;
}

.ascProductTour__meta{
  margin-bottom:10px;
  color:#708396;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ascProductTour__content h3{
  margin:0 0 12px;
  color:#132334;
  font-family:"Manrope", Inter, sans-serif;
  font-size:32px;
  line-height:1;
  letter-spacing:-.05em;
}

.ascProductTour__content p{
  margin:0 0 14px;
  color:#66788b;
  font-size:15px;
  line-height:1.85;
  max-width:720px;
}

.ascProductTour__content ul{
  margin:0;
  padding-left:18px;
  color:#66788b;
  font-size:14px;
  line-height:1.8;
}

.ascProductTour__visual{
  display:flex;
  align-items:center;
  justify-content:center;
}

.ascProductTourMock{
  width:100%;
  padding:16px;
  border-radius:24px;
  border:1px solid rgba(217,227,236,.95);
  background:rgba(248,251,254,.88);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

.ascProductTourMock__top{
  display:flex;
  gap:8px;
  margin-bottom:16px;
}

.ascProductTourMock__top span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:#d7e3ec;
}

.ascProductTourMock__grid{
  display:grid;
  gap:12px;
}

.ascProductTourMock__line{
  height:12px;
  border-radius:999px;
  background:linear-gradient(90deg, #e6eef5 0%, #dce8f1 100%);
}

.ascProductTourMock__line.w-70{ width:70%; }
.ascProductTourMock__line.w-40{ width:40%; }

.ascProductTourMock__card{
  height:88px;
  border-radius:18px;
  background:linear-gradient(180deg, #ffffff 0%, #f3f7fb 100%);
  border:1px solid rgba(220,229,237,.96);
}

/* Grids */
.ascPlatformGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.ascValueGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:18px;
}

.ascHomePremium__steps{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.ascPlatformCard,
.ascValueCard,
.ascStepCard{
  position:relative;
  overflow:hidden;
  padding:24px;
  border-radius:24px;
  border:1px solid rgba(218,227,235,.96);
  background:
    linear-gradient(180deg, rgba(255,255,255,.84) 0%, rgba(248,251,254,.72) 100%);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:
    0 18px 36px rgba(19,31,46,.05),
    inset 0 1px 0 rgba(255,255,255,.8);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease,
    background .2s ease;
}

.ascPlatformCard::after,
.ascValueCard::after,
.ascStepCard::after,
.ascHomePremium__cta::after{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.95), transparent);
}

.ascPlatformCard:hover,
.ascValueCard:hover,
.ascStepCard:hover{
  transform:translateY(-4px);
  border-color:rgba(207,220,231,.98);
  box-shadow:0 26px 48px rgba(18,31,46,.08);
}

.ascPlatformCard h3,
.ascStepCard h3{
  margin:0 0 10px;
  font-size:21px;
  line-height:1.12;
  color:#182635;
  letter-spacing:-.03em;
  font-family:"Manrope", Inter, sans-serif;
}

.ascPlatformCard p,
.ascStepCard p{
  margin:0;
  color:#66788b;
  font-size:14px;
  line-height:1.8;
}

.ascValueCard strong{
  display:block;
  margin-bottom:8px;
  font-size:19px;
  color:#142230;
  letter-spacing:-.03em;
  font-family:"Manrope", Inter, sans-serif;
}

.ascValueCard span{
  display:block;
  color:#66798c;
  font-size:14px;
  line-height:1.8;
}

.ascStepCard__num{
  width:46px;
  height:46px;
  border-radius:15px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  font-size:13px;
  font-weight:900;
  color:#1b334a;
  background:linear-gradient(180deg, #e5eff7 0%, #d8e6f1 100%);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.8);
}

/* FAQ */
.ascFaq{
  display:grid;
  gap:14px;
}

.ascFaq__item{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(217,227,236,.96);
  background:rgba(255,255,255,.74);
  box-shadow:var(--asc-shadow-sm);
}

.ascFaq__item button{
  width:100%;
  text-align:left;
  padding:22px 24px;
  border:0;
  background:transparent;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:#162636;
  font-family:"Manrope", Inter, sans-serif;
  font-size:18px;
  font-weight:800;
}

.ascFaq__item button i{
  position:relative;
  width:18px;
  height:18px;
  flex:0 0 18px;
}

.ascFaq__item button i::before,
.ascFaq__item button i::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width:16px;
  height:2px;
  background:#6b7e92;
  border-radius:2px;
  transform:translate(-50%, -50%);
  transition:transform .2s ease, opacity .2s ease;
}

.ascFaq__item button i::after{
  transform:translate(-50%, -50%) rotate(90deg);
}

.ascFaq__item.is-open button i::after{
  opacity:0;
  transform:translate(-50%, -50%) rotate(90deg) scale(.3);
}

.ascFaq__body{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}

.ascFaq__body p{
  margin:0;
  padding:0 24px 22px;
  color:#66788b;
  font-size:15px;
  line-height:1.85;
}

/* CTA */
.ascHomePremium__cta{
  position:relative;
  overflow:hidden;
  padding:30px;
  border-radius:32px;
  border:1px solid rgba(214,223,232,.96);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86) 0%, rgba(248,252,255,.92) 100%),
    radial-gradient(circle at top left, rgba(214,232,246,.32) 0%, rgba(214,232,246,0) 28%);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  box-shadow:
    0 28px 60px rgba(16,24,40,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
  display:flex;
  justify-content:space-between;
  gap:28px;
  align-items:center;
}

.ascHomePremium__ctaKicker{
  margin-bottom:8px;
  color:#708295;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.ascHomePremium__cta h2{
  margin:0 0 10px;
  font-size:clamp(34px, 4vw, 50px);
  line-height:.95;
  letter-spacing:-.05em;
  color:#13212f;
}

.ascHomePremium__cta p{
  margin:0;
  color:#66788b;
  font-size:15px;
  line-height:1.8;
  max-width:700px;
}

.ascHomePremium__ctaLinks{
  display:grid;
  gap:10px;
  min-width:290px;
}

.ascHomePremium__ctaLinks a{
  position:relative;
  overflow:hidden;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:0 18px;
  text-decoration:none;
  border-radius:16px;
  background:linear-gradient(180deg, #eef5fb 0%, #e0ebf4 100%);
  border:1px solid rgba(216,226,235,.96);
  color:#22384c;
  font-size:14px;
  font-weight:900;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.ascHomePremium__ctaLinks a:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 24px rgba(32,58,82,.10);
}

/* Footer */
.ascHomePremium__footer{
  padding:20px 0 28px;
}

.ascHomePremium__footerInner{
  display:flex;
  justify-content:space-between;
  gap:20px;
  color:#718294;
  font-size:13px;
  border-top:1px solid rgba(223,231,238,.9);
  padding-top:18px;
}

/* Reveal */
.ascReveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .8s ease, transform .8s ease;
}

.ascReveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* Split words */
.ascWord{
  display:inline-block;
  opacity:0;
  filter:blur(8px);
  transform:translateY(16px);
  transition:opacity .55s ease, transform .55s ease, filter .55s ease;
  margin-right:.22em;
}

.is-split-visible .ascWord{
  opacity:1;
  filter:blur(0);
  transform:translateY(0);
}

.is-split-visible .ascWord:nth-child(1){transition-delay:.03s}
.is-split-visible .ascWord:nth-child(2){transition-delay:.06s}
.is-split-visible .ascWord:nth-child(3){transition-delay:.09s}
.is-split-visible .ascWord:nth-child(4){transition-delay:.12s}
.is-split-visible .ascWord:nth-child(5){transition-delay:.15s}
.is-split-visible .ascWord:nth-child(6){transition-delay:.18s}
.is-split-visible .ascWord:nth-child(7){transition-delay:.21s}
.is-split-visible .ascWord:nth-child(8){transition-delay:.24s}
.is-split-visible .ascWord:nth-child(9){transition-delay:.27s}
.is-split-visible .ascWord:nth-child(10){transition-delay:.30s}
.is-split-visible .ascWord:nth-child(11){transition-delay:.33s}
.is-split-visible .ascWord:nth-child(12){transition-delay:.36s}

/* Glow card */
.ascGlowCard{
  position:relative;
  overflow:hidden;
  isolation:isolate;
}

.ascGlowCard::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(320px circle at var(--mx, 50%) var(--my, 50%), rgba(255,255,255,.55), transparent 42%);
  opacity:0;
  transition:opacity .22s ease;
  z-index:0;
  pointer-events:none;
}

.ascGlowCard:hover::before{
  opacity:1;
}

.ascGlowCard > *{
  position:relative;
  z-index:1;
}

/* Magnetic */
.ascMagnetic{
  will-change:transform;
}

/* Animations */
@keyframes ascFadeUp{
  from{
    opacity:0;
    transform:translateY(12px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px){
  .ascHomePremium__heroGrid,
  .ascPlatformGrid,
  .ascHomePremium__steps,
  .ascSignatureBand__shell,
  .ascProductTour__stage{
    grid-template-columns:1fr;
  }

  .ascValueGrid{
    grid-template-columns:1fr;
  }

  .ascHomePremium__cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .ascHomePremium__ctaLinks{
    min-width:0;
    width:100%;
  }

  .ascHomePremium__miniStats{
    grid-template-columns:1fr;
  }
}

@media (max-width: 860px){
  .ascHomePremium__topNav{
    display:none;
  }

  .ascPlatformGrid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 720px){
  .ascHomePremium__container{
    width:min(1320px, calc(100% - 28px));
  }

  .ascHomePremium__topbarInner,
  .ascHomePremium__footerInner{
    flex-direction:column;
    align-items:flex-start;
  }

  .ascHomePremium__hero{
    padding-top:20px;
  }

  .ascShowcase__body{
    grid-template-columns:1fr;
  }

  .ascShowcase__sidebar{
    border-right:0;
    border-bottom:1px solid rgba(227,233,240,.92);
  }

  .ascHomePremium__title{
    font-size:42px;
  }

  .ascHomePremium__subtitle,
  .ascHomePremium__sectionHead p{
    font-size:16px;
  }

  .ascProductTour__content h3{
    font-size:26px;
  }

  .ascFaq__item button{
    font-size:16px;
    padding:18px 18px;
  }

  .ascFaq__body p{
    padding:0 18px 18px;
  }
}
/* =========================================================
   ASC FLAGSHIP SCALE REFINEMENT PATCH
   Add this after your current CSS
========================================================= */

:root{
  --asc-container:min(1200px, calc(100% - 40px));
}

/* General container rhythm */
.ascHomePremium__container{
  width:var(--asc-container);
}

/* Top bar tighter */
.ascHomePremium__topbar{
  padding:12px 0 8px;
}

.ascHomePremium__topbarInner{
  min-height:64px;
}

/* Hero: major fix */
.ascHomePremium__hero{
  padding:28px 0 34px;
}

.ascHomePremium__heroGrid{
  grid-template-columns:minmax(0, 1.02fr) minmax(420px, .98fr);
  gap:30px;
  align-items:center;
}

.ascHomePremium__copy{
  padding:10px 0;
}

.ascHomePremium__eyebrow{
  margin-bottom:16px;
}

.ascHomePremium__eyebrowBadge{
  min-height:30px;
  padding:0 12px;
  font-size:11px;
}

/* Main title much better scaled */
.ascHomePremium__title{
  margin:0 0 14px;
  font-size:clamp(40px, 5.2vw, 66px);
  line-height:.92;
  letter-spacing:-.06em;
  max-width:620px;
}

/* Accent a bit softer */
.ascHomePremium__title .is-accent{
  background:linear-gradient(180deg, #7089a1 0%, #40576d 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.ascHomePremium__subtitle{
  max-width:580px;
  font-size:16px;
  line-height:1.75;
  color:#627487;
}

.ascHomePremium__actions{
  margin-top:22px;
  gap:12px;
}

.ascHomePremium__btn{
  min-height:48px;
  padding:0 18px;
  border-radius:15px;
  font-size:13px;
}

.ascHomePremium__miniStats{
  margin-top:22px;
  gap:12px;
}

.ascMiniStat{
  padding:14px 15px;
  border-radius:16px;
}

.ascMiniStat strong{
  font-size:22px;
  margin-bottom:4px;
}

.ascMiniStat span{
  font-size:12px;
  line-height:1.45;
}

/* Visual side better proportioned */
.ascHomePremium__visual{
  justify-content:flex-end;
}

.ascShowcase{
  max-width:520px;
}

.ascShowcase__window{
  border-radius:26px;
}

.ascShowcase__bar{
  padding:12px 14px;
}

.ascShowcase__body{
  grid-template-columns:145px 1fr;
  min-height:360px;
}

.ascShowcase__sidebar{
  padding:14px;
}

.ascShowcase__navItem{
  padding:10px 12px;
  border-radius:12px;
  font-size:12px;
}

.ascShowcase__content{
  padding:18px;
}

.ascShowcase__headline{
  font-size:17px;
  margin-bottom:14px;
  line-height:1.3;
}

.ascShowcase__cards{
  gap:10px;
  margin-bottom:12px;
}

.ascShowcaseCard{
  padding:13px 14px;
  border-radius:16px;
}

.ascShowcaseCard strong{
  font-size:13px;
  margin-bottom:4px;
}

.ascShowcaseCard span{
  font-size:12px;
  line-height:1.5;
}

.ascShowcase__panel{
  padding:13px 14px;
  border-radius:16px;
}

.ascShowcase__panelTitle{
  font-size:11px;
  margin-bottom:8px;
}

.ascShowcase__list{
  font-size:12px;
  line-height:1.6;
}

/* Trust strip tighter */
.ascTrustStrip{
  padding:6px 0 18px;
}

.ascTrustStrip__inner span{
  min-height:32px;
  padding:0 13px;
  font-size:11px;
}

/* Signature band */
.ascSignatureBand{
  padding:14px 0 22px;
}

.ascSignatureBand__shell{
  padding:26px;
  gap:22px;
  border-radius:26px;
}

.ascSignatureBand__title{
  font-size:clamp(24px, 3vw, 38px);
  line-height:1.02;
}

.ascSignatureBand__sub{
  font-size:14px;
  line-height:1.7;
}

.ascSignatureBand__points{
  margin-top:16px;
  gap:8px;
}

.ascSignatureBand__points span{
  min-height:32px;
  padding:0 12px;
  font-size:11px;
}

.ascSignatureBand__glass{
  padding:14px;
  border-radius:18px;
  gap:10px;
}

.ascSignatureBand__metric{
  padding:14px;
  border-radius:14px;
}

.ascSignatureBand__metric strong{
  font-size:14px;
}

.ascSignatureBand__metric span{
  font-size:12px;
  line-height:1.6;
}

/* Main sections all tighter */
.ascHomePremium__section{
  padding:38px 0;
}

.ascHomePremium__sectionHead{
  margin-bottom:18px;
  max-width:720px;
}

.ascHomePremium__sectionHead h2{
  font-size:clamp(28px, 3.3vw, 42px);
  line-height:1;
  margin-bottom:10px;
}

.ascHomePremium__sectionHead p{
  font-size:15px;
  line-height:1.65;
}

/* Tour */
.ascProductTour{
  gap:14px;
}

.ascProductTour__tabs{
  gap:8px;
}

.ascProductTour__tab{
  min-height:40px;
  padding:0 14px;
  font-size:12px;
}

.ascProductTour__stage{
  grid-template-columns:1fr 280px;
  gap:18px;
  padding:22px;
  border-radius:24px;
}

.ascProductTour__meta{
  font-size:11px;
  margin-bottom:8px;
}

.ascProductTour__content h3{
  font-size:24px;
  line-height:1.05;
  margin-bottom:10px;
}

.ascProductTour__content p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:12px;
}

.ascProductTour__content ul{
  font-size:13px;
  line-height:1.7;
}

.ascProductTourMock{
  padding:14px;
  border-radius:18px;
}

.ascProductTourMock__card{
  height:68px;
  border-radius:14px;
}

/* Cards */
.ascPlatformGrid{
  gap:14px;
}

.ascValueGrid{
  gap:14px;
}

.ascHomePremium__steps{
  gap:14px;
}

.ascPlatformCard,
.ascValueCard,
.ascStepCard{
  padding:18px;
  border-radius:18px;
}

.ascPlatformCard h3,
.ascStepCard h3{
  font-size:18px;
  margin-bottom:8px;
}

.ascPlatformCard p,
.ascStepCard p{
  font-size:13px;
  line-height:1.65;
}

.ascValueCard strong{
  font-size:17px;
  margin-bottom:6px;
}

.ascValueCard span{
  font-size:13px;
  line-height:1.65;
}

.ascStepCard__num{
  width:40px;
  height:40px;
  border-radius:12px;
  margin-bottom:12px;
  font-size:12px;
}

/* FAQ */
.ascFaq{
  gap:12px;
}

.ascFaq__item{
  border-radius:18px;
}

.ascFaq__item button{
  padding:18px 18px;
  font-size:16px;
}

.ascFaq__body p{
  padding:0 18px 18px;
  font-size:14px;
  line-height:1.7;
}

/* CTA */
.ascHomePremium__cta{
  padding:22px;
  border-radius:24px;
  gap:20px;
}

.ascHomePremium__ctaKicker{
  margin-bottom:6px;
  font-size:11px;
}

.ascHomePremium__cta h2{
  font-size:clamp(28px, 3vw, 40px);
  line-height:1;
  margin-bottom:8px;
}

.ascHomePremium__cta p{
  font-size:14px;
  line-height:1.7;
}

.ascHomePremium__ctaLinks{
  min-width:240px;
  gap:8px;
}

.ascHomePremium__ctaLinks a{
  min-height:44px;
  font-size:13px;
  border-radius:14px;
}

/* Footer */
.ascHomePremium__footer{
  padding:12px 0 20px;
}

.ascHomePremium__footerInner{
  font-size:12px;
  padding-top:14px;
}

/* Better desktop scaling around laptop widths */
@media (max-width: 1280px){
  .ascHomePremium__title{
    font-size:clamp(38px, 4.8vw, 58px);
    max-width:560px;
  }

  .ascShowcase{
    max-width:480px;
  }

  .ascProductTour__stage{
    grid-template-columns:1fr 240px;
  }
}

/* Tablet */
@media (max-width: 1100px){
  .ascHomePremium__hero{
    padding:18px 0 24px;
  }

  .ascHomePremium__heroGrid,
  .ascPlatformGrid,
  .ascHomePremium__steps,
  .ascSignatureBand__shell,
  .ascProductTour__stage{
    grid-template-columns:1fr;
  }

  .ascHomePremium__visual{
    justify-content:flex-start;
  }

  .ascShowcase{
    max-width:100%;
  }

  .ascValueGrid{
    grid-template-columns:1fr;
  }

  .ascHomePremium__cta{
    flex-direction:column;
    align-items:flex-start;
  }

  .ascHomePremium__ctaLinks{
    width:100%;
    min-width:0;
  }

  .ascHomePremium__miniStats{
    grid-template-columns:1fr;
  }

  .ascSignatureBand__title{
    font-size:32px;
  }

  .ascHomePremium__section{
    padding:32px 0;
  }
}

/* Mobile */
@media (max-width: 720px){
  :root{
    --asc-container:min(100%, calc(100% - 24px));
  }

  .ascHomePremium__topbar{
    padding:10px 0 6px;
  }

  .ascHomePremium__topbarInner,
  .ascHomePremium__footerInner{
    flex-direction:column;
    align-items:flex-start;
  }

  .ascHomePremium__hero{
    padding-top:14px;
    padding-bottom:20px;
  }

  .ascHomePremium__title{
    font-size:34px;
    max-width:none;
  }

  .ascHomePremium__subtitle{
    font-size:15px;
    max-width:none;
  }

  .ascHomePremium__actions{
    width:100%;
  }

  .ascHomePremium__btn{
    min-height:46px;
  }

  .ascShowcase__body{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .ascShowcase__sidebar{
    border-right:0;
    border-bottom:1px solid rgba(227,233,240,.92);
  }

  .ascHomePremium__sectionHead h2{
    font-size:30px;
  }

  .ascProductTour__content h3{
    font-size:22px;
  }

  .ascHomePremium__cta h2{
    font-size:28px;
  }
}

/* =========================================================
   ASC SUBSCRIPTION MODAL
========================================================= */

.ascModal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  transition:opacity .24s ease, visibility .24s ease;
}

.ascModal.is-open{
  opacity:1;
  visibility:visible;
}

.ascModal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(10,18,28,.46);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.ascModal__dialog{
  position:relative;
  width:min(860px, 100%);
  max-height:min(92vh, 960px);
  overflow:auto;
  border-radius:28px;
  border:1px solid rgba(217,227,236,.96);
  background:
    linear-gradient(180deg, rgba(255,255,255,.95) 0%, rgba(248,252,255,.96) 100%);
  box-shadow:
    0 40px 100px rgba(8,16,26,.22),
    inset 0 1px 0 rgba(255,255,255,.92);
  padding:24px;
}

.ascModal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border:0;
  border-radius:14px;
  background:rgba(239,245,250,.95);
  color:#1b3247;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 10px 20px rgba(16,24,40,.06);
}

.ascModal__header{
  margin-bottom:20px;
  padding-right:52px;
}

.ascModal__eyebrow{
  margin-bottom:8px;
  color:#708396;
  font-size:12px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.ascModal__header h2{
  margin:0 0 10px;
  color:#132334;
  font-family:"Manrope", Inter, sans-serif;
  font-size:clamp(26px, 4vw, 40px);
  line-height:1;
  letter-spacing:-.05em;
}

.ascModal__header p{
  margin:0;
  color:#66788b;
  font-size:15px;
  line-height:1.75;
  max-width:680px;
}

.ascForm{
  display:grid;
  gap:16px;
}

.ascForm__grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.ascField{
  display:grid;
  gap:8px;
}

.ascField--full{
  grid-column:1 / -1;
}

.ascField label{
  color:#183046;
  font-size:13px;
  font-weight:800;
}

.ascField input,
.ascField select{
  width:100%;
  min-height:50px;
  padding:0 15px;
  border-radius:15px;
  border:1px solid rgba(214,224,233,.96);
  background:rgba(255,255,255,.94);
  color:#142536;
  font-size:14px;
  font-weight:600;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
  box-sizing:border-box;
}

.ascField select{
  padding-right:40px;
}

.ascField input:focus,
.ascField select:focus{
  border-color:#9db9d1;
  box-shadow:0 0 0 4px rgba(182,208,228,.24);
  background:#fff;
}

.ascForm__note{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(240,246,251,.9);
  border:1px solid rgba(220,229,237,.96);
  color:#637688;
  font-size:13px;
  line-height:1.65;
}

.ascForm__actions{
  display:flex;
  justify-content:flex-start;
}

.ascForm__submit{
  appearance:none;
  border:0;
  min-height:52px;
  padding:0 20px;
  border-radius:16px;
  background:linear-gradient(180deg, #dce9f4 0%, #cbddeb 100%);
  color:#173048;
  font-size:14px;
  font-weight:900;
  cursor:pointer;
  box-shadow:
    0 18px 36px rgba(32,58,82,.12),
    inset 0 1px 0 rgba(255,255,255,.78);
  transition:transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}

.ascForm__submit:hover{
  transform:translateY(-1px);
}

.ascForm__submit.is-loading{
  opacity:.7;
  pointer-events:none;
}

.ascForm__status{
  min-height:24px;
  font-size:14px;
  font-weight:700;
}

.ascForm__status.is-success{
  color:#1f6b46;
}

.ascForm__status.is-error{
  color:#a33434;
}

body.asc-modal-open{
  overflow:hidden;
}

@media (max-width: 720px){
  .ascModal{
    padding:12px;
  }

  .ascModal__dialog{
    padding:18px;
    border-radius:22px;
  }

  .ascForm__grid{
    grid-template-columns:1fr;
  }

  .ascModal__header h2{
    font-size:28px;
  }
}
.ascForm__helperLink{
  padding:14px 16px;
  border-radius:16px;
  background:rgba(248,251,254,.92);
  border:1px solid rgba(220,229,237,.96);
  color:#637688;
  font-size:13px;
  line-height:1.7;
}

.ascForm__helperLink a{
  color:#1d4766;
  font-weight:800;
  text-decoration:none;
  border-bottom:1px solid rgba(29,71,102,.24);
  word-break:break-word;
}

.ascForm__helperLink a:hover{
  color:#122f45;
  border-bottom-color:rgba(18,47,69,.45);
}

/* =========================================================
   ASC HOME FLAGSHIP — FINAL OVERRIDES
   Paste at the VERY BOTTOM
========================================================= */

/* ---------------------------------------------------------
   1) GLOBAL SCALE + CONTAINER
--------------------------------------------------------- */

:root{
  --asc-container:min(1180px, calc(100% - 36px)) !important;
}

.ascHomePremium__container{
  width:var(--asc-container) !important;
}

/* ---------------------------------------------------------
   2) TOPBAR REFINEMENT
--------------------------------------------------------- */

.ascHomePremium__topbar{
  padding:10px 0 8px !important;
  background:rgba(247,251,255,.72) !important;
  backdrop-filter:blur(16px) !important;
  -webkit-backdrop-filter:blur(16px) !important;
  border-bottom:1px solid rgba(224,232,239,.78) !important;
}

.ascHomePremium__topbarInner{
  min-height:62px !important;
  gap:18px !important;
}

.ascHomePremium__brand{
  gap:10px !important;
}

.ascHomePremium__brandMark{
  width:44px !important;
  height:44px !important;
  border-radius:15px !important;
}

.ascHomePremium__brandSvg{
  width:27px !important;
  height:16px !important;
}

.ascHomePremium__brandText{
  font-size:16px !important;
}

.ascHomePremium__topNav{
  gap:18px !important;
}

.ascHomePremium__topNav a{
  font-size:12px !important;
  padding:6px 0 !important;
}

.ascHomePremium__topLink{
  min-height:42px !important;
  padding:0 14px !important;
  border-radius:14px !important;
  font-size:13px !important;
}

/* ---------------------------------------------------------
   3) HERO LAYOUT + PROPORTION
--------------------------------------------------------- */

.ascHomePremium__hero{
  padding:20px 0 28px !important;
}

.ascHomePremium__heroGrid{
  display:grid !important;
  grid-template-columns:minmax(0, 1.05fr) minmax(420px, .95fr) !important;
  gap:28px !important;
  align-items:center !important;
}

.ascHomePremium__copy{
  padding:6px 0 !important;
}

.ascHomePremium__eyebrow{
  gap:8px !important;
  margin-bottom:16px !important;
}

.ascHomePremium__eyebrowBadge{
  min-height:30px !important;
  padding:0 12px !important;
  font-size:11px !important;
  border-radius:999px !important;
}

.ascHomePremium__title{
  margin:0 0 14px !important;
  font-size:clamp(38px, 5vw, 64px) !important;
  line-height:.92 !important;
  letter-spacing:-.06em !important;
  max-width:620px !important;
  text-wrap:balance !important;
}

.ascHomePremium__subtitle{
  margin:0 !important;
  max-width:580px !important;
  font-size:16px !important;
  line-height:1.72 !important;
  color:#627487 !important;
}

.ascHomePremium__actions{
  gap:12px !important;
  margin-top:22px !important;
}

.ascHomePremium__btn{
  min-height:48px !important;
  padding:0 18px !important;
  border-radius:15px !important;
  font-size:13px !important;
}

.ascHomePremium__miniStats{
  margin-top:22px !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:12px !important;
}

.ascMiniStat{
  padding:14px 15px !important;
  border-radius:16px !important;
}

.ascMiniStat strong{
  font-size:22px !important;
  margin-bottom:4px !important;
}

.ascMiniStat span{
  font-size:12px !important;
  line-height:1.45 !important;
}

/* ---------------------------------------------------------
   4) SHOWCASE / HERO VISUAL
--------------------------------------------------------- */

.ascHomePremium__visual{
  justify-content:flex-end !important;
}

.ascShowcase{
  max-width:500px !important;
  width:100% !important;
}

.ascShowcase__window{
  border-radius:28px !important;
  box-shadow:
    0 24px 64px rgba(17,27,38,.12),
    0 8px 20px rgba(17,27,38,.08),
    inset 0 1px 0 rgba(255,255,255,.62) !important;
}

.ascShowcase__bar{
  padding:12px 14px !important;
}

.ascShowcase__body{
  grid-template-columns:145px 1fr !important;
  min-height:360px !important;
}

.ascShowcase__sidebar{
  padding:14px !important;
}

.ascShowcase__navItem{
  padding:10px 12px !important;
  border-radius:12px !important;
  font-size:12px !important;
}

.ascShowcase__content{
  padding:18px !important;
}

.ascShowcase__headline{
  font-size:17px !important;
  line-height:1.3 !important;
  margin-bottom:14px !important;
}

.ascShowcase__cards{
  gap:10px !important;
  margin-bottom:12px !important;
}

.ascShowcaseCard{
  padding:13px 14px !important;
  border-radius:16px !important;
}

.ascShowcaseCard strong{
  font-size:13px !important;
  margin-bottom:4px !important;
}

.ascShowcaseCard span{
  font-size:12px !important;
  line-height:1.5 !important;
}

.ascShowcase__panel{
  padding:13px 14px !important;
  border-radius:16px !important;
}

.ascShowcase__panelTitle{
  font-size:11px !important;
  margin-bottom:8px !important;
}

.ascShowcase__list{
  font-size:12px !important;
  line-height:1.6 !important;
}

/* ---------------------------------------------------------
   5) TRUST STRIP
--------------------------------------------------------- */

.ascTrustStrip{
  padding:6px 0 18px !important;
}

.ascTrustStrip__inner{
  gap:8px !important;
}

.ascTrustStrip__inner span{
  min-height:32px !important;
  padding:0 13px !important;
  font-size:11px !important;
}

/* ---------------------------------------------------------
   6) SIGNATURE BAND
--------------------------------------------------------- */

.ascSignatureBand{
  padding:14px 0 22px !important;
}

.ascSignatureBand__shell{
  grid-template-columns:1.06fr .94fr !important;
  gap:22px !important;
  padding:26px !important;
  border-radius:26px !important;
}

.ascSignatureBand__title{
  font-size:clamp(24px, 3vw, 38px) !important;
  line-height:1.02 !important;
}

.ascSignatureBand__sub{
  font-size:14px !important;
  line-height:1.7 !important;
}

.ascSignatureBand__points{
  margin-top:16px !important;
  gap:8px !important;
}

.ascSignatureBand__points span{
  min-height:32px !important;
  padding:0 12px !important;
  font-size:11px !important;
}

.ascSignatureBand__glass{
  padding:14px !important;
  border-radius:18px !important;
  gap:10px !important;
}

.ascSignatureBand__metric{
  padding:14px !important;
  border-radius:14px !important;
}

.ascSignatureBand__metric strong{
  font-size:14px !important;
}

.ascSignatureBand__metric span{
  font-size:12px !important;
  line-height:1.6 !important;
}

/* ---------------------------------------------------------
   7) SECTION RHYTHM
--------------------------------------------------------- */

.ascHomePremium__section{
  padding:36px 0 !important;
}

.ascHomePremium__sectionHead{
  margin-bottom:18px !important;
  max-width:760px !important;
}

.ascHomePremium__sectionHead h2{
  margin:0 0 10px !important;
  font-size:clamp(28px, 3.3vw, 42px) !important;
  line-height:1 !important;
}

.ascHomePremium__sectionHead p{
  font-size:15px !important;
  line-height:1.65 !important;
}

/* ---------------------------------------------------------
   8) TOUR SECTION
--------------------------------------------------------- */

.ascProductTour{
  gap:14px !important;
}

.ascProductTour__tabs{
  gap:8px !important;
}

.ascProductTour__tab{
  min-height:40px !important;
  padding:0 14px !important;
  font-size:12px !important;
}

.ascProductTour__stage{
  grid-template-columns:1fr 270px !important;
  gap:18px !important;
  padding:22px !important;
  border-radius:24px !important;
}

.ascProductTour__meta{
  font-size:11px !important;
  margin-bottom:8px !important;
}

.ascProductTour__content h3{
  margin:0 0 10px !important;
  font-size:24px !important;
  line-height:1.05 !important;
}

.ascProductTour__content p{
  margin:0 0 12px !important;
  font-size:14px !important;
  line-height:1.7 !important;
}

.ascProductTour__content ul{
  font-size:13px !important;
  line-height:1.7 !important;
}

.ascProductTourMock{
  padding:14px !important;
  border-radius:18px !important;
}

.ascProductTourMock__card{
  height:68px !important;
  border-radius:14px !important;
}

/* ---------------------------------------------------------
   9) PLATFORM / VALUE / STEPS CARDS
--------------------------------------------------------- */

.ascPlatformGrid{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}

.ascValueGrid{
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
}

.ascHomePremium__steps{
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:14px !important;
}

.ascPlatformCard,
.ascValueCard,
.ascStepCard{
  padding:18px !important;
  border-radius:18px !important;
}

.ascPlatformCard h3,
.ascStepCard h3{
  margin:0 0 8px !important;
  font-size:18px !important;
  line-height:1.12 !important;
}

.ascPlatformCard p,
.ascStepCard p{
  font-size:13px !important;
  line-height:1.65 !important;
}

.ascValueCard strong{
  display:block !important;
  margin-bottom:6px !important;
  font-size:17px !important;
}

.ascValueCard span{
  font-size:13px !important;
  line-height:1.65 !important;
}

.ascStepCard__num{
  width:40px !important;
  height:40px !important;
  border-radius:12px !important;
  margin-bottom:12px !important;
  font-size:12px !important;
}

/* ---------------------------------------------------------
   10) FAQ
--------------------------------------------------------- */

.ascFaq{
  gap:12px !important;
}

.ascFaq__item{
  border-radius:18px !important;
}

.ascFaq__item button{
  padding:18px 18px !important;
  font-size:16px !important;
}

.ascFaq__body p{
  padding:0 18px 18px !important;
  font-size:14px !important;
  line-height:1.7 !important;
}

/* ---------------------------------------------------------
   11) CTA
--------------------------------------------------------- */

.ascHomePremium__cta{
  padding:22px !important;
  border-radius:24px !important;
  gap:20px !important;
}

.ascHomePremium__ctaKicker{
  margin-bottom:6px !important;
  font-size:11px !important;
}

.ascHomePremium__cta h2{
  margin:0 0 8px !important;
  font-size:clamp(28px, 3vw, 40px) !important;
  line-height:1 !important;
}

.ascHomePremium__cta p{
  font-size:14px !important;
  line-height:1.7 !important;
}

.ascHomePremium__ctaLinks{
  min-width:240px !important;
  gap:8px !important;
}

.ascHomePremium__ctaLinks a{
  min-height:44px !important;
  border-radius:14px !important;
  font-size:13px !important;
}

/* ---------------------------------------------------------
   12) FOOTER
--------------------------------------------------------- */

.ascHomePremium__footer{
  padding:12px 0 20px !important;
}

.ascHomePremium__footerInner{
  font-size:12px !important;
  padding-top:14px !important;
}

/* ---------------------------------------------------------
   13) MODAL REFINEMENT
--------------------------------------------------------- */

.ascModal__dialog{
  width:min(820px, 100%) !important;
  max-height:min(92vh, 920px) !important;
  border-radius:24px !important;
  padding:22px !important;
}

.ascModal__header{
  margin-bottom:18px !important;
}

.ascModal__header h2{
  font-size:clamp(24px, 4vw, 34px) !important;
}

.ascModal__header p{
  font-size:14px !important;
  line-height:1.7 !important;
}

.ascForm{
  gap:14px !important;
}

.ascForm__grid{
  gap:12px !important;
}

.ascField{
  gap:7px !important;
}

.ascField label{
  font-size:12px !important;
}

.ascField input,
.ascField select{
  min-height:46px !important;
  border-radius:14px !important;
  font-size:13px !important;
}

.ascForm__helperLink,
.ascForm__note{
  padding:12px 14px !important;
  border-radius:14px !important;
  font-size:12px !important;
}

.ascForm__submit{
  min-height:48px !important;
  border-radius:15px !important;
  font-size:13px !important;
}

/* ---------------------------------------------------------
   14) RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 1280px){
  .ascHomePremium__title{
    font-size:clamp(38px, 4.8vw, 58px) !important;
    max-width:560px !important;
  }

  .ascShowcase{
    max-width:470px !important;
  }

  .ascProductTour__stage{
    grid-template-columns:1fr 230px !important;
  }
}

@media (max-width: 1100px){
  .ascHomePremium__hero{
    padding:16px 0 22px !important;
  }

  .ascHomePremium__heroGrid,
  .ascPlatformGrid,
  .ascHomePremium__steps,
  .ascSignatureBand__shell,
  .ascProductTour__stage{
    grid-template-columns:1fr !important;
  }

  .ascHomePremium__visual{
    justify-content:flex-start !important;
  }

  .ascShowcase{
    max-width:100% !important;
  }

  .ascValueGrid{
    grid-template-columns:1fr !important;
  }

  .ascHomePremium__cta{
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .ascHomePremium__ctaLinks{
    width:100% !important;
    min-width:0 !important;
  }

  .ascHomePremium__miniStats{
    grid-template-columns:1fr !important;
  }

  .ascHomePremium__section{
    padding:30px 0 !important;
  }
}

@media (max-width: 860px){
  .ascHomePremium__topNav{
    display:none !important;
  }

  .ascPlatformGrid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 720px){
  :root{
    --asc-container:min(100%, calc(100% - 24px)) !important;
  }

  .ascHomePremium__topbar{
    padding:10px 0 6px !important;
  }

  .ascHomePremium__topbarInner,
  .ascHomePremium__footerInner{
    flex-direction:column !important;
    align-items:flex-start !important;
  }

  .ascHomePremium__hero{
    padding-top:14px !important;
    padding-bottom:20px !important;
  }

  .ascHomePremium__title{
    font-size:34px !important;
    max-width:none !important;
  }

  .ascHomePremium__subtitle{
    font-size:15px !important;
    max-width:none !important;
  }

  .ascHomePremium__actions{
    width:100% !important;
  }

  .ascHomePremium__btn{
    min-height:46px !important;
  }

  .ascShowcase__body{
    grid-template-columns:1fr !important;
    min-height:auto !important;
  }

  .ascShowcase__sidebar{
    border-right:0 !important;
    border-bottom:1px solid rgba(227,233,240,.92) !important;
  }

  .ascHomePremium__sectionHead h2{
    font-size:30px !important;
  }

  .ascProductTour__content h3{
    font-size:22px !important;
  }

  .ascHomePremium__cta h2{
    font-size:28px !important;
  }

  .ascModal{
    padding:12px !important;
  }

  .ascModal__dialog{
    padding:18px !important;
    border-radius:22px !important;
  }

  .ascForm__grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 480px){
  .ascHomePremium__brandText{
    font-size:15px !important;
  }

  .ascHomePremium__title{
    font-size:30px !important;
  }

  .ascHomePremium__subtitle{
    font-size:14px !important;
  }

  .ascHomePremium__sectionHead h2{
    font-size:26px !important;
  }

  .ascHomePremium__cta h2{
    font-size:24px !important;
  }

  .ascHomePremium__topbarActions{
    width:100% !important;
    flex-wrap:wrap !important;
  }

  .ascHomePremium__topLink{
    width:100% !important;
  }
}
/* =========================================================
   HOME HEADER BRAND — MATCH MANAGER DASHBOARD
========================================================= */

.ascHomePremium__brand.ascHomePremium__brand--official{
  display:inline-flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:0;
}

.ascHomePremium__brandLogoWrap{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:14px;
  background:linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(248,251,255,.92) 100%);
  border:1px solid rgba(228,236,244,.95);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:
    0 4px 12px rgba(16,24,40,.04),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.ascHomePremium__brandLogo{
  display:block;
  width:30px;
  height:30px;
  object-fit:contain;
}

.ascHomePremium__brandTextWrap{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
}

.ascHomePremium__brandTitle{
  display:block;
  font-family:"Playfair Display", Georgia, serif;
  font-size:28px;
  line-height:.96;
  font-weight:700;
  letter-spacing:-0.04em;
  color:#182434;
  white-space:nowrap;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

.ascHomePremium__brandTag{
  display:block;
  margin-top:4px;
  font-family:Inter, ui-sans-serif, system-ui, sans-serif;
  font-size:9px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#8a97a6;
  white-space:nowrap;
}

/* remove old svg sizing if still present */
.ascHomePremium__brandMark,
.ascHomePremium__brandSvg{
  display:none !important;
}

.ascHomePremium__brandText{
  display:none !important;
}

@media (max-width: 1024px){
  .ascHomePremium__brandLogoWrap{
    width:38px;
    height:38px;
    min-width:38px;
  }

  .ascHomePremium__brandLogo{
    width:28px;
    height:28px;
  }

  .ascHomePremium__brandTitle{
    font-size:24px;
  }

  .ascHomePremium__brandTag{
    font-size:8px;
    letter-spacing:.12em;
  }
}

@media (max-width: 640px){
  .ascHomePremium__brand{
    gap:10px;
  }

  .ascHomePremium__brandLogoWrap{
    width:34px;
    height:34px;
    min-width:34px;
    border-radius:12px;
  }

  .ascHomePremium__brandLogo{
    width:24px;
    height:24px;
  }

  .ascHomePremium__brandTitle{
    font-size:20px;
  }

  .ascHomePremium__brandTag{
    display:none;
  }
}


