/* ============================================================
   Sales CRM landing - premium SaaS
   Proxima Nova pastel blobs rounded corners floating shots
   ============================================================ */

@font-face{
  font-family: 'Proxima Nova';
  src: url('assets/fonts/ProximaNovaLight.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Proxima Nova';
  src: url('assets/fonts/ProximaNovaRegular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face{
  font-family: 'Proxima Nova';
  src: url('assets/fonts/ProximaNovaBold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root{
  --ink:        #111827;
  --ink-2:      #4B5563;
  --ink-3:      #6B7280;
  --ink-4:      #9CA3AF;
  --line:       #E5E7EB;
  --line-2:     #F3F4F6;
  --bg:         #FFFFFF;
  --surface:    #FAFAFA;
  --surface-2:  #F5F5F7;

  --brand:      #2842FF;
  --brand-600:  #1A2DC9;
  --brand-50:   #EEF1FF;
  --brand-100:  #DBE2FF;

  --pink:       #FBCFE8;
  --pink-2:     #FCE7F3;
  --peach:      #FED7AA;
  --sky:        #BFDBFE;
  --sky-2:      #DBEAFE;
  --lilac:      #DDD6FE;

  --r-sm:       10px;
  --r-md:       14px;
  --r-lg:       20px;
  --r-xl:       28px;
  --r-2xl:      40px;
  --r-pill:     999px;

  --shadow-sm:  0 1px 2px rgba(17,24,39,.05);
  --shadow-md:  0 8px 24px -8px rgba(17,24,39,.10);
  --shadow-lg:  0 20px 60px -16px rgba(17,24,39,.18), 0 8px 24px -12px rgba(17,24,39,.08);
  --shadow-xl:  0 40px 100px -20px rgba(17,24,39,.22), 0 16px 40px -16px rgba(17,24,39,.10);

  --container:  1240px;
  --gutter:     clamp(20px, 4vw, 40px);
  --nav-h:      72px;
}

*,*::before,*::after{ box-sizing: border-box; }

html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Proxima Nova', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img{ max-width: 100%; display: block; }
button{ font: inherit; cursor: pointer; }
a{ color: inherit; }

::selection{ background: var(--brand); color: #fff; }

.visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ===== Container ===== */
.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.wrap--narrow{ max-width: 880px; }

/* ===== Typography ===== */
.serif{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}
.serif em{
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
}

.display{
  font-size: clamp(36px, 5.2vw, 68px);
}
.h-xl{ font-size: clamp(30px, 3.8vw, 52px); }
.h-lg{ font-size: clamp(24px, 2.6vw, 36px); }
.h-md{ font-size: clamp(20px, 1.8vw, 26px); }

.lead{
  font-size: clamp(15.5px, 1.2vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  max-width: 56ch;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.eyebrow .dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}
.btn:hover{ background: var(--brand); }
.btn:active{ transform: translateY(1px); }

.btn--brand{ background: var(--brand); }
.btn--brand:hover{ background: var(--brand-600); }

.btn--ghost{
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover{
  background: #fff;
  border-color: var(--ink);
}

.btn--sm{ height: 38px; padding: 0 16px; font-size: 14px; }
.btn--lg{ height: 54px; padding: 0 28px; font-size: 16px; }

.btn--on-dark{ background: #fff; color: var(--ink); }
.btn--on-dark:hover{ background: var(--brand-100); color: var(--brand-600); }

/* ===== Nav ===== */
.nav{
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  max-width: 1180px;
  padding: 0 var(--gutter);
}
.nav__pill{
  height: 64px;
  padding: 0 14px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--r-pill);
  box-shadow: none;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, backdrop-filter .25s ease;
}
.nav.is-scrolled .nav__pill{
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-color: rgba(229,231,235,.8);
  box-shadow: var(--shadow-md);
}
.nav__logo{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav__logo-mark{
  width: 30px; height: 30px;
  border-radius: 8px;
  background: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.nav__logo-mark svg{ display: block; }
.nav__links{
  display: flex;
  gap: 4px;
}
.nav__links a{
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  transition: background .2s ease, color .2s ease;
}
.nav__links a:hover{ background: var(--surface-2); color: var(--ink); }
.nav__cta{ display: flex; gap: 8px; align-items: center; }

.burger{
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  border-radius: var(--r-pill);
  padding: 0;
  position: relative;
}
.burger span{
  position: absolute;
  left: 11px; right: 11px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, top .2s ease;
}
.burger span:nth-child(1){ top: 14px; }
.burger span:nth-child(2){ top: 19px; }
.burger span:nth-child(3){ top: 24px; }
.burger[aria-expanded="true"] span:nth-child(1){ top: 19px; transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3){ top: 19px; transform: rotate(-45deg); }

.mobile-menu{
  position: fixed;
  inset: calc(var(--nav-h) + 32px) 16px auto 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 49;
}
.mobile-menu a{
  text-decoration: none;
  color: var(--ink);
  padding: 12px 14px;
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--r-md);
}
.mobile-menu a:hover{ background: var(--surface-2); }
.mobile-menu .btn{ margin-top: 8px; }

/* ===== Hero ===== */
.hero{
  position: relative;
  padding: 24px 0 56px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 0% 25%,  rgba(191,219,254,.55) 0%, transparent 60%),
    radial-gradient(50% 55% at 100% 20%, rgba(251,207,232,.55) 0%, transparent 60%),
    radial-gradient(50% 50% at 50% 90%,  rgba(221,214,254,.45) 0%, transparent 60%),
    radial-gradient(40% 40% at 80% 75%,  rgba(254,215,170,.35) 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FBFBFE 100%);
}
.hero__inner{
  text-align: center;
  padding: clamp(24px, 4vw, 56px) 0 clamp(20px, 3vw, 40px);
}
.hero__eyebrow{
  display: inline-flex;
  margin-bottom: 28px;
}
.hero__title{ max-width: 18ch; margin: 0 auto; }
.hero__lead{
  margin: 24px auto 0;
  max-width: 60ch;
}
.hero__form{
  margin: 36px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
}
.hero__input{
  flex: 1 1 280px;
  height: 54px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font: inherit;
  font-size: 15.5px;
  color: var(--ink);
  outline: none;
  box-shadow: var(--shadow-sm);
}
.hero__input::placeholder{ color: var(--ink-4); }
.hero__input:focus{
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(40,66,255,.15);
}
.hero__form .btn{ height: 54px; padding: 0 28px; font-size: 15.5px; }
.hero__note{
  margin: 14px 0 0;
  font-size: 13.5px;
  color: var(--ink-3);
}

/* Floating screenshot composition */
.hero__stage{
  position: relative;
  margin: clamp(40px, 6vw, 80px) auto 0;
  max-width: 980px;
}
.hero__shot{
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.6);
  box-shadow: var(--shadow-xl);
  background: #fff;
}
.hero__shot img{ width: 100%; height: auto; display: block; }
.hero__chip{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 12px 12px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--r-pill);
  box-shadow: var(--shadow-lg);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.hero__chip .ic{
  width: 32px; height: 32px;
  border-radius: var(--r-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}
.hero__chip .ic--mint{ background: linear-gradient(135deg, #10B981, #059669); }
.hero__chip .ic--pink{ background: linear-gradient(135deg, #EC4899, #F97316); }
.hero__chip small{
  display: block;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}
.hero__chip--tl{ top: -18px; left: -12px; }
.hero__chip--br{ bottom: -16px; right: -10px; }
@media (max-width: 720px){
  .hero__chip--tl, .hero__chip--br{ display: none; }
}

/* ===== Logos strip ===== */
.logos{
  padding: 24px 0 64px;
}
.logos__caption{
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.logos__row{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px 56px;
  opacity: .7;
}
.logos__row span{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: -0.01em;
}

/* ===== Section: features grid (3 pastel cards) ===== */
.section{
  padding: clamp(60px, 9vw, 120px) 0;
}
.section__head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 72px);
}
.section__caption{
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  background: var(--brand-50);
  color: var(--brand-600);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 16px;
}
.section__head p{
  margin: 16px auto 0;
  max-width: 56ch;
  font-size: clamp(15px, 1.2vw, 17px);
  color: var(--ink-2);
}

.cards-3{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px){ .cards-3{ grid-template-columns: repeat(3, 1fr); } }

.fcard{
  border-radius: var(--r-xl);
  padding: clamp(24px, 2.6vw, 36px);
  background: var(--surface);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 280px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.fcard:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }

.fcard--sky{    background: linear-gradient(150deg, #EFF6FF, #DBEAFE 90%); border-color: rgba(191,219,254,.6); }
.fcard--pink{   background: linear-gradient(150deg, #FDF2F8, #FCE7F3 90%); border-color: rgba(251,207,232,.6); }
.fcard--lilac{  background: linear-gradient(150deg, #F5F3FF, #E0E7FF 90%); border-color: rgba(221,214,254,.7); }
.fcard--peach{  background: linear-gradient(150deg, #FFF7ED, #FFEDD5 90%); border-color: rgba(254,215,170,.7); }
.fcard--mint{   background: linear-gradient(150deg, #ECFDF5, #D1FAE5 90%); border-color: rgba(167,243,208,.7); }

.fcard__ico{
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
}
.fcard h3{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.fcard p{
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}

/* ===== Scene (big screenshot block with rounded card) ===== */
.scene{
  padding: clamp(50px, 7vw, 96px) 0;
}
.scene__card{
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 56px);
  background: linear-gradient(150deg, #FFFFFF, #F8FAFF);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.scene__card--pink{
  background:
    radial-gradient(80% 80% at 100% 0%, rgba(251,207,232,.55) 0%, transparent 60%),
    radial-gradient(80% 80% at 0% 100%, rgba(221,214,254,.45) 0%, transparent 60%),
    #FFFFFF;
}
.scene__card--peach{
  background:
    radial-gradient(80% 80% at 0% 0%, rgba(254,215,170,.45) 0%, transparent 60%),
    radial-gradient(80% 80% at 100% 100%, rgba(191,219,254,.45) 0%, transparent 60%),
    #FFFFFF;
}
.scene__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 960px){
  .scene__grid{
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.9fr);
    gap: 56px;
  }
  .scene__grid--reverse > div:first-child{ order: 2; }
}
.scene__copy h2{
  margin-bottom: 16px;
}
.scene__copy p{
  margin: 0 0 16px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.scene__copy ul{
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.scene__copy ul li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--ink);
}
.scene__copy ul li::before{
  content: '';
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center / 12px 12px no-repeat;
}
.scene__shot{
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: 1px solid var(--line);
}
.scene__shot img{ width: 100%; height: auto; display: block; }

/* Stacked scene: text above, large screenshot below */
.scene__card--stack{
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.scene__intro{
  text-align: center;
  max-width: 720px;
}
.scene__intro h2{ margin-bottom: 14px; }
.scene__intro p{
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}
.scene__shot--wide{
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
}

.scene__chip{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--brand-600);
  margin-bottom: 16px;
}

/* ===== Pricing ===== */
.pricing{ padding: clamp(60px, 9vw, 120px) 0; }
.tiers{
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 880px){ .tiers{ grid-template-columns: repeat(3, 1fr); } }

.tier{
  border-radius: var(--r-xl);
  padding: clamp(28px, 2.6vw, 36px);
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tier:hover{ transform: translateY(-2px); box-shadow: var(--shadow-md); }

.tier--featured{
  background: linear-gradient(165deg, #1E1B4B 0%, #3730A3 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.tier--featured:hover{ box-shadow: var(--shadow-xl); }
.tier__badge{
  position: absolute;
  top: 18px; right: 18px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.18);
  color: #fff;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tier__name{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}
.tier__sub{
  margin: -8px 0 0;
  font-size: 13.5px;
  color: var(--ink-3);
}
.tier--featured .tier__sub{ color: rgba(255,255,255,.7); }

.tier__price{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 600;
  font-size: clamp(40px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.tier__price small{
  font-family: 'Proxima Nova', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  letter-spacing: 0;
  margin-left: 6px;
}
.tier--featured .tier__price small{ color: rgba(255,255,255,.65); }

.tier__list{
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier__list li{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.tier--featured .tier__list li{ color: rgba(255,255,255,.85); }
.tier__list li::before{
  content: '';
  flex: 0 0 18px;
  width: 18px; height: 18px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--brand-100) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%234F46E5' d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center / 12px 12px no-repeat;
}
.tier--featured .tier__list li::before{
  background: rgba(255,255,255,.2) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M9.55 17.6 4 12.05l1.4-1.4 4.15 4.15 9.05-9.05 1.4 1.4z'/></svg>") center / 12px 12px no-repeat;
}

.tier .btn{ width: 100%; }

.pricing__note{
  margin: 28px auto 0;
  max-width: 600px;
  text-align: center;
  font-size: 13.5px;
  color: var(--ink-3);
}
.pricing__note button.linkish{
  background: none;
  border: 0;
  padding: 0;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
}

/* ===== FAQ ===== */
.faq{ padding: clamp(60px, 9vw, 120px) 0; }
.faq__list{ display: flex; flex-direction: column; gap: 10px; max-width: 820px; margin: 0 auto; }
.qa{
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: #fff;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.qa:hover{ border-color: var(--brand-100); }
.qa[open]{ box-shadow: var(--shadow-md); border-color: var(--brand-100); }
.qa summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
}
.qa summary::-webkit-details-marker{ display: none; }
.qa__plus{
  flex: 0 0 28px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--surface-2);
  position: relative;
  transition: background .2s ease, transform .25s ease;
}
.qa__plus::before, .qa__plus::after{
  content: '';
  position: absolute;
  background: var(--ink);
  border-radius: 1px;
}
.qa__plus::before{ top: 13px; left: 8px; right: 8px; height: 2px; }
.qa__plus::after{ left: 13px; top: 8px; bottom: 8px; width: 2px; transition: transform .2s ease; }
.qa[open] .qa__plus{ background: var(--brand); transform: rotate(180deg); }
.qa[open] .qa__plus::before, .qa[open] .qa__plus::after{ background: #fff; }
.qa[open] .qa__plus::after{ transform: rotate(90deg); }

.qa__body{ padding: 0 24px 22px; }
.qa__body p{
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ===== Final CTA (rounded card with gradient) ===== */
.endcta{
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 9vw, 120px);
}
.endcta__card{
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(80% 100% at 100% 0%, rgba(124,58,237,.55) 0%, transparent 60%),
    radial-gradient(80% 100% at 0% 100%, rgba(236,72,153,.45) 0%, transparent 60%),
    linear-gradient(135deg, #1E1B4B 0%, #2842FF 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.endcta__card h2{ color: #fff; max-width: 22ch; margin: 0 auto; }
.endcta__card h2 em{ color: #C7D2FE; }
.endcta__card p{
  margin: 16px auto 28px;
  max-width: 50ch;
  color: rgba(255,255,255,.78);
  font-size: 16px;
}
.endcta__form{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.endcta__form input{
  flex: 1 1 240px;
  height: 54px;
  padding: 0 22px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font: inherit;
  font-size: 15.5px;
  color: #fff;
  outline: none;
}
.endcta__form input::placeholder{ color: rgba(255,255,255,.5); }
.endcta__form input:focus{ border-color: #fff; background: rgba(255,255,255,.18); }
.endcta__hint{
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}

/* ===== Footer ===== */
.footer{
  padding: 40px 0 48px;
  border-top: 1px solid var(--line);
}
.footer__row{
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--ink-3);
}
.footer a{ color: var(--ink-3); text-decoration: none; }
.footer a:hover{ color: var(--ink); }
.footer__nav{ display: flex; gap: 18px; flex-wrap: wrap; }

/* ===== Modal ===== */
.modal{
  border: 0;
  padding: 0;
  background: transparent;
  max-width: 480px;
  width: calc(100% - 32px);
  border-radius: var(--r-xl);
}
.modal::backdrop{
  background: rgba(17,24,39,.55);
  backdrop-filter: blur(4px);
}
.modal__inner{
  position: relative;
  background: #fff;
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
}
.modal__close{
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
}
.modal__close:hover{ background: var(--surface-2); color: var(--ink); }
.modal__title{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0 0 10px;
}
.modal__lead{ margin: 0 0 22px; color: var(--ink-2); font-size: 15px; }
.modal__field{ margin-bottom: 14px; }
.modal__field label{
  display: block;
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink-3);
}
.modal__field input{
  width: 100%;
  height: 50px;
  padding: 0 18px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: var(--surface);
  font: inherit;
  color: var(--ink);
  outline: none;
}
.modal__field input:focus{
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(40,66,255,.15);
}
.modal__field input.is-invalid{
  border-color: #DC2626;
  box-shadow: 0 0 0 4px rgba(220,38,38,.12);
}
.modal__hint{ margin: 12px 0 0; font-size: 12.5px; color: var(--ink-3); }
.modal__hint a{ color: var(--brand); }
.modal__done{ text-align: center; }
.modal__done h3{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 600;
  font-size: 22px;
  margin: 0 0 8px;
}
.modal__done p{ color: var(--ink-2); font-size: 14.5px; margin: 0 0 20px; }

/* ===== Legal modal (wide, tabbed) ===== */
.modal--wide{
  width: min(760px, calc(100% - 32px));
  max-width: 760px;
}
.modal__inner--legal{
  padding: 0;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--r-xl);
}
.legal__tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 18px 64px 0 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.legal__tab{
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  margin-bottom: -1px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--ink-3);
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease;
}
.legal__tab:hover{ color: var(--ink); }
.legal__tab.is-active{ color: var(--ink); border-bottom-color: var(--brand); }

.legal__body{
  padding: 24px clamp(20px, 4vw, 36px) clamp(20px, 4vw, 36px);
  overflow-y: auto;
}
.legal__pane{ display: none; }
.legal__pane.is-active{ display: block; }

.legal__h{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 6px;
}
.legal__meta{
  margin: 0 0 18px;
  color: var(--ink-3);
  font-size: 13px;
}
.legal__pane h3{
  font-family: 'Proxima Nova', system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0;
  margin: 20px 0 6px;
}
.legal__pane p{
  margin: 0 0 10px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
}
.legal__pane ul{
  margin: 4px 0 12px;
  padding-left: 22px;
}
.legal__pane ul li{
  margin: 4px 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.legal__pane a{ color: var(--brand); }

/* ===== Reveal on scroll ===== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible{ opacity: 1; transform: none; }

/* Hero entrance (no JS needed - runs on load) */
@keyframes hero-rise {
  0%   { opacity: 0; transform: translateY(28px); }
  100% { opacity: 1; transform: none; }
}
@keyframes hero-shot-rise {
  0%   { opacity: 0; transform: translateY(48px) scale(.98); }
  100% { opacity: 1; transform: none; }
}
@keyframes chip-pop {
  0%   { opacity: 0; transform: translateY(8px) scale(.9); }
  100% { opacity: 1; transform: none; }
}
@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(12px, -10px) scale(1.04); }
}
.hero__eyebrow { animation: hero-rise .7s cubic-bezier(.2,.7,.2,1) both; }
.hero__title   { animation: hero-rise .8s .08s cubic-bezier(.2,.7,.2,1) both; }
.hero__lead    { animation: hero-rise .8s .16s cubic-bezier(.2,.7,.2,1) both; }
.hero__form    { animation: hero-rise .8s .24s cubic-bezier(.2,.7,.2,1) both; }
.hero__note    { animation: hero-rise .8s .32s cubic-bezier(.2,.7,.2,1) both; }
.hero__stage   { animation: hero-shot-rise 1s .35s cubic-bezier(.2,.7,.2,1) both; }
.hero__chip--tl{ animation: chip-pop .6s 1.1s cubic-bezier(.2,.7,.2,1) both; }
.hero__chip--br{ animation: chip-pop .6s 1.3s cubic-bezier(.2,.7,.2,1) both; }
.hero__bg      { animation: blob-drift 18s ease-in-out infinite; }

/* Card hover lift (smoother) */
.fcard, .tier, .scene__card{ transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s cubic-bezier(.2,.7,.2,1); }
.scene__card{ will-change: transform; }
.scene__card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-lg); }

/* Buttons smoother */
.btn{ transition: transform .2s cubic-bezier(.2,.7,.2,1), background .25s ease, border-color .25s ease, box-shadow .25s ease, color .25s ease; }
.btn:hover{ transform: translateY(-1px); }

/* FAQ chevron + body smoother */
.qa{ transition: box-shadow .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease; }
.qa__plus{ transition: background .25s ease, transform .35s cubic-bezier(.2,.7,.2,1); }

/* Legal modal pane fade */
.legal__pane{ animation: hero-rise .35s ease both; }

/* ===== Responsive ===== */
@media (max-width: 900px){
  .nav__links{ display: none; }
  .nav__cta .btn--ghost{ display: none; }
  .burger{ display: inline-flex; }
}
@media (min-width: 900px){
  .mobile-menu{ display: none !important; }
}

@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html{ scroll-behavior: auto; }
  .reveal{ opacity: 1; transform: none; }
}
