/* ============================================================
   Ahoy 2026 — elevated look & feel
   Layered on top of Bootstrap grid + the existing markup.
   ============================================================ */

:root {
  --ink: #17161B;
  --indigo: #5A4FE8;
  --indigo-600: #4B3FE0;
  --cream: #F6F4EE;
  --muted: #6B6975;
  --line: #ECEAE3;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--indigo); color: #fff; }
.mono { font-family: 'Space Mono', monospace; }
.eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  color: #9A98A2; margin-bottom: 12px; display: block;
}
.eyebrow.indigo { color: var(--indigo); }

/* ---------- keyframes ---------- */
@keyframes floatY  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatY2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes waveDrift { 0% { transform: translateX(0); } 100% { transform: translateX(-50px); } }
@keyframes dotPulse { 0%,100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
@keyframes msgIn { 0% { opacity: 0; transform: translateY(8px); } 100% { opacity: 1; transform: translateY(0); } }

/* ============================================================
   HEADER / NAV  (Bootstrap collapse = hamburger preserved)
   ============================================================ */
.ahoy-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.ahoy-header .navbar { padding: 12px 0; }
.ahoy-header .logo {
  font-weight: 800; font-size: 23px; letter-spacing: -.5px;
  color: var(--ink); text-decoration: none; font-family: "Poppins", serif; color: var(--primaryColor);
}
.ahoy-header .logo span {
  position: relative; color: var(--ink); color: #615FFD;
}
.ahoy-header .logo span::after {
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 6px; height: 6px; border-radius: 50%; color: var(--primaryColor);
}
.ahoy-header .nav-item { margin: 0 2px; }
.ahoy-header .page-link {
  font-weight: 600; font-size: 14.5px; color: #46454D !important;
  background: transparent; border: 0; padding: 8px 12px; border-radius: 9px;
  transition: color .15s, background .15s;
}
.ahoy-header .page-link:hover { color: var(--ink) !important; background: var(--cream); }
.ahoy-header .nav-item.active .page-link,
.ahoy-header .page-link.active { color: var(--indigo) !important; }

.nav-rating { display: flex; align-items: center; gap: 7px; margin-right: 4px; }
.nav-rating .stars { color: #F5A524; font-size: 13px; letter-spacing: 1px; }
.nav-rating .count { font-size: 13px; color: #46454D; font-weight: 600; }

.primary-btn {
  text-decoration: none; display: inline-block; white-space: nowrap;
  background: var(--indigo); color: #fff;
  font-weight: 700; font-size: 14.5px;
  padding: 11px 22px; border: 0; border-radius: 11px;
  box-shadow: 0 6px 18px rgba(90,79,232,.28);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.primary-btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(90,79,232,.4); }
.primary-btn.lg { font-size: 16px; padding: 15px 28px; border-radius: 13px; }
.ghost-btn {
  text-decoration: none; display: inline-block;
  background: #fff; color: var(--ink); font-weight: 700; font-size: 16px;
  padding: 14px 26px; border: 1.5px solid #E4E2DA; border-radius: 13px;
  transition: border-color .15s, transform .15s;
}
.ghost-btn:hover { color: var(--ink); border-color: var(--ink); transform: translateY(-2px); }

/* hamburger */
.ahoy-header .navbar-toggler {
  border: 1.5px solid var(--line); border-radius: 10px; padding: 6px 9px;
}
.ahoy-header .navbar-toggler:focus { box-shadow: none; }
.ahoy-header .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%2317161B' stroke-width='2.4' stroke-linecap='round' d='M5 8h20M5 15h20M5 22h20'/%3E%3C/svg%3E");
}

/* ============================================================
   ANNOUNCEMENT STRIP
   ============================================================ */
.announce-strip {
  background: var(--ink); color: #fff; text-align: center;
  padding: 9px 16px; font-size: 13.5px; font-weight: 500;
}
.announce-strip .tag {
  font-family: 'Space Mono', monospace; font-size: 11px; background: var(--indigo);
  padding: 3px 7px; border-radius: 5px; margin-right: 10px; letter-spacing: .4px;
}
.announce-strip .arrow { opacity: .55; margin-left: 8px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 60px 0 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff; padding: 7px 13px 7px 8px;
  border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero-badge .new {
  font-family: 'Space Mono', monospace; font-size: 10.5px; background: var(--indigo);
  padding: 3px 8px; border-radius: 999px; letter-spacing: .5px;
}
.hero h1 {
  font-size: clamp(42px, 6vw, 72px); line-height: 1.02; font-weight: 800;
  letter-spacing: -2px; margin: 0 0 20px;
}
.hero h1 .uline { position: relative; display: inline-block; }
.hero h1 .uline::after {
  content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 13px;
  background: var(--rainbow); border-radius: 8px; z-index: -1; opacity: .85;
}
.hero .lede {
  font-size: 18px; line-height: 1.55; color: #46454D; font-weight: 500;
  max-width: 430px; margin: 0 0 30px;
}
.hero-ctas { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-proof { display: flex; align-items: center; gap: 13px; }
.hero-proof .avatars { display: flex; }
.hero-proof .avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2.5px solid #fff;
  display: inline-block; margin-left: -8px;
}
.hero-proof .txt { font-size: 13.5px; color: var(--muted); font-weight: 500; }
.hero-proof .txt b { color: var(--ink); }

/* floating bubbles (reuses original <ul> markup) */
.home-banner-right { position: relative; min-height: 320px; }
.home-banner-right ul {
  list-style: none; margin: 0; padding: 0; position: relative; min-height: 300px;
}
.home-banner-right ul li {
  position: absolute; max-width: 300px;
  background: #fff; border: 1.5px solid var(--line);
  box-shadow: 0 12px 30px rgba(23,22,27,.08);
  padding: 13px 17px; font-size: 14px; font-weight: 600; color: var(--ink);
  border-radius: 18px 18px 4px 18px;
}
.home-banner-right ul li:nth-child(1) { top: 4px;   right: 0;  animation: floatY 5.5s ease-in-out infinite; }
.home-banner-right ul li:nth-child(2) { top: 96px;  right: 70px; animation: floatY2 6.2s ease-in-out infinite; }
.home-banner-right ul li:nth-child(3) {
  top: 196px; right: 0; color: #fff; background: var(--indigo); border-color: var(--indigo);
  box-shadow: 0 14px 30px rgba(90,79,232,.3); animation: floatY 6.8s ease-in-out infinite;
}

/* rainbow wave */
/*.hero-wave { position: relative; margin-top: -10px; pointer-events: none; line-height: 0; }
.hero-wave svg { display: block; width: 110%; height: auto; margin-left: -5%; animation: waveDrift 14s ease-in-out infinite alternate; } */
.hero-wave {   background-image: url(../images/home-banner.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 250px;
    margin-top: -20px;
}

.choose_platform {   background-image: url(../images/choose_platform.png);
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: 240px 300px;
    padding-bottom: 350px;

}

/* ============================================================
   FOUNDATION / CONTEXT SLIDER (Swiper preserved)
   ============================================================ */
.foundation { padding: 8px 0 0; margin-top: -80px;}
.foundation .single-slide-wrapper {
  background: var(--indigo); border-radius: 28px; padding: 44px 46px;
  overflow: hidden; position: relative; min-height: auto;
  box-shadow: 0 30px 60px -20px rgba(90,79,232,.45);
}
.foundation .single-slide-wrapper::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 300px at 85% 120%, rgba(255,255,255,.16), transparent);
  pointer-events: none;
}
.foundation .slide-left-content { position: relative; z-index: 2; }
.foundation .single-slide-wrapper h2 {
  font-size: clamp(26px,3.4vw,34px); font-weight: 800; letter-spacing: -1px;
  color: #fff; margin: 0 0 14px;
}
.foundation .single-slide-wrapper p {
  font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.85);
  font-weight: 500; max-width: 420px; margin: 0 0 22px;
}
.foundation .slider-list { display: flex; flex-direction: column; gap: 10px; padding: 0; margin: 0; max-width: 380px; }
.foundation .slider-list li {
  list-style: none; color: #fff; font-weight: 600; font-size: 15px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: 13px 16px; border-radius: 13px;
}
.foundation .slide-img-wrapper { position: relative; z-index: 2; text-align: center; }
.foundation .slide-img-wrapper img { max-width: 100%; height: auto; filter: drop-shadow(0 12px 20px rgba(0,0,0,.18)); }

.foundation .nav-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin: 26px 0 0; padding: 0;
}
.foundation .nav-pills .nav-link {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700; font-size: 14.5px; cursor: pointer;
  padding: 11px 20px; border-radius: 999px; min-width: auto; width: auto;
  background: #fff; color: #46454D; border: 1.5px solid #E4E2DA;
  transition: all .15s;
}
.foundation .nav-pills .nav-link:hover { border-color: var(--ink); }
.foundation .nav-pills .nav-link.active {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 8px 20px rgba(23,22,27,.18);
}

/* ============================================================
   STEPS (feature rows)
   ============================================================ */
.step-wrapper { padding: 96px 0 0; }
.single-step { margin: 0 0 100px; }
.single-step .eyebrow { margin-bottom: 14px; }
.single-step h2 {
  font-size: clamp(30px,4vw,38px); font-weight: 800; letter-spacing: -1.2px;
  line-height: 1.08; color: var(--ink); margin: 0 0 16px;
}
.single-step p {
  font-size: 17px; line-height: 1.6; color: #46454D; font-weight: 500;
  max-width: 460px; margin: 0 0 22px;
}
.step-points { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.step-points li { font-size: 15px; font-weight: 600; display: flex; gap: 11px; align-items: center; }
.step-points li::before { content: "\2713"; color: var(--indigo); font-weight: 800; }
.step-img { text-align: center; }
.step-img img { max-width: 100%; height: auto; filter: drop-shadow(0 30px 50px rgba(23,22,27,.18)); }

/* ============================================================
   QUIP DEMO (interactive)
   ============================================================ */
.quip-card {
  background: #fff; border: 1px solid var(--line); border-radius: 26px;
  box-shadow: 0 30px 60px -28px rgba(23,22,27,.32); overflow: hidden; max-width: 420px;
}
.quip-head { background: var(--ink); padding: 16px 20px; display: flex; align-items: center; gap: 11px; }
.quip-head .avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--indigo);
  display: flex; align-items: center; justify-content: center; flex: 0 0 38px;
}
.quip-head .avatar svg { display: block; }
.quip-head .name { color: #fff; font-weight: 800; font-size: 15px; line-height: 1.1; }
.quip-head .status { color: #7BE0A0; font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 5px; }
.quip-head .status .dot { width: 6px; height: 6px; border-radius: 50%; background: #7BE0A0; display: inline-block; }
.quip-log {
  padding: 18px; display: flex; flex-direction: column; gap: 11px;
  height: 300px; overflow-y: auto; background: #FBFAF7;
}
.quip-msg { max-width: 82%; font-size: 13.5px; font-weight: 500; line-height: 1.5; padding: 12px 15px; animation: msgIn .25s ease; }
.quip-msg.coach { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: #2A2930; border-radius: 16px 16px 16px 4px; }
.quip-msg.user  { align-self: flex-end; background: var(--indigo); color: #fff; border-radius: 16px 16px 4px 16px; }
.quip-typing { align-self: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 16px 16px 16px 4px; padding: 13px 15px; display: none; gap: 5px; }
.quip-typing.show { display: flex; }
.quip-typing span { width: 7px; height: 7px; border-radius: 50%; background: #9A98A2; animation: dotPulse 1s infinite; }
.quip-typing span:nth-child(2) { animation-delay: .15s; }
.quip-typing span:nth-child(3) { animation-delay: .3s; }
.quip-chips { padding: 14px 16px; border-top: 1px solid var(--line); display: flex; gap: 8px; flex-wrap: wrap; }
.quip-chip {
  background: var(--cream); border: 1px solid #E4E2DA; color: #3D33B8;
  font-weight: 700; font-size: 12.5px; padding: 9px 13px; border-radius: 11px;
  cursor: pointer; font-family: inherit; transition: background .15s, transform .12s;
}
.quip-chip:hover { background: #EDEBFF; transform: translateY(-1px); }
.quip-note {
  display: inline-flex; align-items: center; gap: 10px; background: var(--cream);
  border: 1px solid var(--line); border-radius: 13px; padding: 12px 16px;
  font-size: 14px; font-weight: 600;
}

/* ============================================================
   BUILD HABITS CTA
   ============================================================ */
.cta-top-wrap { padding: 110px 0 0; }
.cta-inner {
  position: relative; background: var(--cream); border-radius: 28px;
  padding: 60px 28px 0; overflow: hidden; text-align: center;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.cta-inner .side-img { flex: 0 0 auto; }
.cta-inner .side-img img { max-width: 150px; height: auto; display: block; }
.cta-inner .middle { flex: 1; padding-bottom: 64px; }
.cta-inner .middle .streak {
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 1.5px;
  color: #9A98A2; margin-bottom: 14px;
}
.cta-inner .middle h2 {
  font-size: clamp(32px,5vw,50px); font-weight: 800; letter-spacing: -1.6px;
  color: var(--ink); margin: 0 0 12px;
}
.cta-inner .middle p { font-size: 17px; color: #46454D; font-weight: 500; max-width: 420px; margin: 0 auto 26px; }

/* ============================================================
   STAT BAND (cta swiper preserved)
   ============================================================ */
.cta-area { margin-top: 96px; background: var(--indigo); padding: 70px 0; }
.cta-area .signle-slide { text-align: center; }
.cta-area .signle-slide h1 {
  font-size: clamp(24px,3.2vw,34px); font-weight: 800; letter-spacing: -.8px;
  color: #fff; line-height: 1.25; margin: 0 auto 16px; max-width: 760px;
}
.cta-area .signle-slide p { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,.82); font-weight: 500; max-width: 620px; margin: 0 auto; }
.cta-area .signle-slide .bignum {
  font-size: clamp(64px,10vw,120px); font-weight: 800; letter-spacing: -4px;
  color: #fff; line-height: .9; margin-bottom: 6px; display: block;
}

/* ============================================================
   OUTCOMES / TESTIMONIALS
   ============================================================ */
.outcomes { padding: 90px 0 0; }
.outcomes h1 {
  font-size: clamp(30px,4.2vw,44px); font-weight: 800; letter-spacing: -1.2px;
  text-align: center; margin: 0 0 44px;
}
.single-outcome {
  position: relative; background: var(--cream); border: 1px solid var(--line);
  border-radius: 20px; padding: 28px 26px 84px; height: 100%;
}
.single-outcome .stars { color: #F5A524; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.single-outcome p { font-size: 15px; line-height: 1.6; font-weight: 600; color: #2A2930; margin: 0; }
.single-outcome .who { position: absolute; left: 26px; bottom: 10px; display: flex; align-items: center; gap: 10px; }
.single-outcome .who img { width: 42px; height: 42px; object-fit: contain; }
.single-outcome .who .nm { font-weight: 700; font-size: 13px; }
.single-outcome .who .rl { font-size: 11.5px; color: var(--muted); }
.single-outcome.dark { background: var(--indigo); border-color: var(--indigo); }
.single-outcome.dark .stars { color: #FFD66B; }
.single-outcome.dark p { color: #fff; }
.single-outcome.dark .who .nm { color: #fff; }
.single-outcome.dark .who .rl { color: rgba(255,255,255,.7); }

/* ============================================================
   GET STARTED
   ============================================================ */
.get-started-appstore { padding: 96px 0 0; background: transparent; }
.get-started-inner {
  position: relative; background: var(--ink); border-radius: 28px;
  padding: 60px 40px; overflow: hidden; text-align: center;
}
.get-started-inner::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 120px;
  background: var(--rainbow); opacity: .16;
}
.get-started-inner > * { position: relative; z-index: 2; }
.get-started-inner h1 {
  font-size: clamp(32px,5vw,54px); font-weight: 800; letter-spacing: -1.8px;
  color: #fff; margin: 0 0 14px;
}
.get-started-inner .sub { font-size: 17px; color: rgba(255,255,255,.75); font-weight: 500; max-width: 420px; margin: 0 auto 30px; }
.store-badges { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.store-badges a { transition: transform .15s; display: inline-block; }
.store-badges a:hover { transform: translateY(-3px); }
.store-badges img { height: 54px; width: auto; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer-area { padding: 64px 0 48px; }
.footer-area .footer-top { border-top: 1px solid var(--line); padding-top: 44px; }
.footer-logo a { color: var(--ink); font-size: 23px; font-weight: 800; letter-spacing: -.5px; text-decoration: none; font-family: "Poppins", serif;}
.footer-logo a span { position: relative;color: #615FFD; }
.footer-logo a span::after {
  content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; border-radius: 50%;
}
.footer-tag { font-size: 13.5px; color: var(--muted); line-height: 1.55; font-weight: 500; margin: 10px 0 0; max-width: 260px; }
.footer-links { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-links h3 {
  font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: 1px;
  color: #9A98A2; margin: 0 0 14px; text-transform: uppercase; font-weight: 700;
}
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links ul li a { color: #46454D; font-size: 14px; font-weight: 600; text-decoration: none; transition: color .15s; }
.footer-links ul li a:hover { color: var(--indigo); }
.footer-copy { margin-top: 36px; font-size: 12.5px; color: #9A98A2; font-weight: 500; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .home-banner-right { margin-top: 40px; min-height: auto; }
  .home-banner-right ul { display: flex; flex-direction: column; gap: 14px; min-height: auto; }
  .home-banner-right ul li { position: static; animation: none; max-width: 100%; }
  .home-banner-right ul li:nth-child(2) { align-self: flex-end; }
  .foundation .slide-img-wrapper { margin-top: 28px; }
  .quip-card { margin: 0 auto 32px; }
}

@media (max-width: 767.98px) {
  /* mobile nav panel */
  .ahoy-header .navbar-collapse {
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    margin-top: 12px; padding: 14px; box-shadow: 0 18px 40px rgba(23,22,27,.1);
  }
  .ahoy-header .nav-item { margin: 2px 0; }
  .ahoy-header .page-link { display: block; }
  .ahoy-header .nav-rating { padding: 6px 12px; }
  .ahoy-header .nav-appstore { margin-top: 8px !important; }
  .ahoy-header .nav-appstore .primary-btn { display: block; text-align: center; }

  .hero { padding: 40px 0 0; }
  .single-step { margin-bottom: 64px; }
  .single-step .step-img { margin-bottom: 28px; }
  .cta-inner { flex-direction: column; align-items: center; gap: 8px; padding-top: 40px; }
  .cta-inner .side-img img { max-width: 110px; }
  .cta-inner .middle { padding-bottom: 36px; }
  .store-badges img { height: 46px; }
}

@media (max-width: 575.98px) {
  .foundation .single-slide-wrapper { padding: 32px 26px; }
  .single-outcome { padding-bottom: 60px; }
}

/* ============================================================
   INNER PAGES — shared system
   ============================================================ */

/* page hero / breadcrumb */
.page-hero { padding: 60px 0 0; }
.page-hero .kicker {
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--indigo); margin-bottom: 14px; display: block;
}
.page-hero h1 {
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 800; letter-spacing: -1.8px;
  line-height: 1.04; margin: 0; color: var(--ink);
}
.page-hero .lead {
  font-size: 18px; line-height: 1.55; color: #46454D; font-weight: 500; margin: 18px 0 0;
}
.page-hero .rainbow-rule {
  height: 6px; width: 110px; background: var(--rainbow);
  border-radius: 6px; margin-top: 30px;
}

/* generic readable content */
.page-section { padding: 56px 0; }
.prose { font-size: 16.5px; line-height: 1.75; color: #46454D; font-weight: 400; }
.prose p { margin: 0 0 18px; }
.prose b, .prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--indigo); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid rgba(90,79,232,.25); }
.prose a:hover { border-bottom-color: var(--indigo); }
.prose h2 { font-size: 26px; font-weight: 800; letter-spacing: -.6px; color: var(--ink); margin: 0 0 18px; }

/* statement block (skill-people intro) */
.statement {
  background: var(--cream); border-radius: 28px; padding: 52px 48px;
}
.statement h2 {
  font-size: clamp(28px, 3.6vw, 40px); font-weight: 800; letter-spacing: -1.2px;
  color: var(--ink); margin: 0 0 18px; line-height: 1.12;
}
.statement p { font-size: 17px; line-height: 1.7; color: #46454D; font-weight: 500; margin: 0; max-width: 720px; }
.statement strong { color: var(--indigo); }

/* about cards */
.single-about {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  padding: 30px 32px; margin-bottom: 18px;
  transition: transform .15s, box-shadow .15s;
}
.single-about:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(23,22,27,.07); }
.about-badge {
  width: 56px; height: 56px; border-radius: 16px; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Mono', monospace; font-weight: 700; font-size: 18px; color: var(--indigo);
}
.single-about h2 { font-size: 20px; font-weight: 800; letter-spacing: -.5px; color: var(--ink); margin: 0; }
.single-about p { font-size: 15.5px; line-height: 1.6; color: #46454D; font-weight: 500; margin: 0 0 6px; }

/* note / disclaimer block */
.note-block {
  background: var(--ink); border-radius: 24px; padding: 40px 44px; color: #fff;
  position: relative; overflow: hidden;
}
.note-block::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 80px;
  background: var(--rainbow); opacity: .16;
}
.note-block > * { position: relative; z-index: 2; }
.note-block h2 { font-size: 24px; font-weight: 800; letter-spacing: -.5px; color: #fff; margin: 0 0 12px; }
.note-block p { font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.82); font-weight: 500; margin: 0; }

/* ---------- PLANS ---------- */
.plan-section { padding: 64px 0 0; text-align: center; }
.plan-section h1 {
  font-size: clamp(34px, 5vw, 56px); font-weight: 800; letter-spacing: -1.8px;
  margin: 0 0 12px; color: var(--ink);
}
.plan-section > .container .lead {
  font-size: 18px; color: #46454D; font-weight: 500; margin: 0 0 6px;
}
.plan-wrapper {
  display: flex; gap: 22px; justify-content: center; flex-wrap: wrap;
  margin: 40px 0 0;
}
.single-plan {
  position: relative; background: #fff; border: 1.5px solid #E4E2DA; border-radius: 22px;
  padding: 32px 30px; width: 320px; max-width: 100%; text-align: left; cursor: pointer;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.single-plan:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(23,22,27,.08); }
.single-plan:has(input:checked) {
  border-color: var(--indigo); box-shadow: 0 18px 40px rgba(90,79,232,.2);
}
.single-plan input[type="radio"] {
  position: absolute; top: 26px; right: 26px; width: 22px; height: 22px;
  accent-color: var(--indigo); cursor: pointer; margin: 0;
}
.single-plan label {
  display: block; font-size: 38px; font-weight: 800; letter-spacing: -1.5px;
  color: var(--ink); cursor: pointer; margin: 0 0 4px; line-height: 1;
}
.single-plan label span { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; margin-left: 4px; }
.single-plan h3 {
  font-family: 'Space Mono', monospace; font-size: 12px; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--indigo); margin: 0 0 14px; font-weight: 700;
}
.single-plan p { font-size: 14.5px; line-height: 1.55; color: #46454D; font-weight: 500; margin: 0; }
.single-plan .badge-best {
  position: absolute; top: -12px; left: 30px; background: var(--ink); color: #fff;
  font-family: 'Space Mono', monospace; font-size: 10.5px; letter-spacing: .6px;
  padding: 5px 11px; border-radius: 999px; font-weight: 700;
}

/* ---------- SUPPORT (accordion) ---------- */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  overflow: hidden; transition: box-shadow .15s;
}
.faq-item[open] { box-shadow: 0 14px 30px rgba(23,22,27,.06); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 20px 24px;
  font-size: 16px; font-weight: 700; color: var(--ink);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 22px; font-weight: 600; color: var(--indigo);
  flex: 0 0 auto; transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body {
  padding: 0 24px 22px; font-size: 15px; line-height: 1.65; color: #46454D; font-weight: 450;
}
.faq-item .faq-body a { color: var(--indigo); font-weight: 600; text-decoration: none; }
.support-foot { margin-top: 28px; font-size: 15px; color: #46454D; font-weight: 500; }
.support-foot a { color: var(--indigo); font-weight: 700; text-decoration: none; }

/* ---------- CONTACT FORM ---------- */
.contact-card {
  background: #fff; border: 1px solid var(--line); border-radius: 24px;
  padding: 36px 34px; max-width: 560px; box-shadow: 0 24px 50px -28px rgba(23,22,27,.22);
}
.contact-card label {
  display: block; margin: 18px 0 6px; font-weight: 700; font-size: 13.5px; color: var(--ink);
}
.contact-card label:first-of-type { margin-top: 0; }
.contact-card input, .contact-card textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid #E4E2DA; border-radius: 12px;
  font-family: inherit; font-size: 15px; color: var(--ink); background: #FBFAF7;
  transition: border-color .15s, background .15s;
}
.contact-card input:focus, .contact-card textarea:focus {
  outline: none; border-color: var(--indigo); background: #fff;
}
.contact-card textarea { resize: vertical; min-height: 120px; }
.contact-card .g-recaptcha { margin: 20px 0 4px; }
.contact-card button[type="submit"] {
  margin-top: 22px; width: 100%; border: 0; cursor: pointer;
  background: var(--indigo); color: #fff; font-weight: 700; font-size: 16px;
  padding: 15px; border-radius: 13px; box-shadow: 0 10px 26px rgba(90,79,232,.3);
  transition: transform .15s, box-shadow .15s;
}
.contact-card button[type="submit"]:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(90,79,232,.42); }
.contact-card button:disabled { background: #B8B5C7; box-shadow: none; cursor: not-allowed; transform: none; }
.contact-aside h2 { font-size: 26px; font-weight: 800; letter-spacing: -.8px; margin: 0 0 14px; }
.contact-aside p { font-size: 16px; line-height: 1.65; color: #46454D; font-weight: 500; }
.contact-aside a { color: var(--indigo); font-weight: 600; text-decoration: none; }

/* ---------- COMING SOON ---------- */
.coming-soon { position: relative; padding: 80px 0 0; overflow: hidden; }
.coming-soon .badge-soon {
  display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: #fff;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; margin-bottom: 24px;
  white-space: nowrap;
}
.coming-soon .badge-soon .dot { width: 7px; height: 7px; border-radius: 50%; background: #7BE0A0; flex: 0 0 7px; }
.coming-soon h1 {
  font-size: clamp(42px, 6.5vw, 78px); font-weight: 800; letter-spacing: -2.2px;
  line-height: 1.02; margin: 0 0 20px; color: var(--ink);
}
.coming-soon h1 .uline { position: relative; display: inline-block; }
.coming-soon h1 .uline::after {
  content: ""; position: absolute; left: 0; bottom: 4px; width: 100%; height: 13px;
  background: var(--rainbow); border-radius: 8px; z-index: -1; opacity: .85;
}
.coming-soon p { font-size: 18.5px; line-height: 1.55; color: #46454D; font-weight: 500; max-width: 470px; margin: 0 0 30px; }
.coming-soon .cs-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* footer alignment helper for inner pages */
.footer-area .footer-links.left { justify-content: flex-start; }

/* legal / doc prose */
.doc-date {
  display: inline-block; font-family: 'Space Mono', monospace; font-size: 12px;
  letter-spacing: .8px; color: var(--muted); background: var(--cream);
  border: 1px solid var(--line); padding: 7px 13px; border-radius: 999px; margin-bottom: 28px;
}
.legal { font-size: 15.5px; line-height: 1.7; color: #46454D; font-weight: 400; }
.legal p { margin: 0 0 16px; }
.legal b, .legal strong { color: var(--ink); font-weight: 700; }
.legal > b, .legal p > b:only-child {
  display: inline-block; font-size: 18px; letter-spacing: -.3px; margin-top: 14px;
}
.legal a { color: var(--indigo); font-weight: 600; text-decoration: none; border-bottom: 1.5px solid rgba(90,79,232,.25); }
.legal a:hover { border-bottom-color: var(--indigo); }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 8px; }
.legal li::marker { color: var(--indigo); }

/* responsive — inner pages */
@media (max-width: 767.98px) {
  .statement { padding: 36px 28px; }
  .note-block { padding: 32px 28px; }
  .single-about { padding: 24px 24px; }
  .single-about .about-badge { margin-bottom: 14px; }
  .contact-card { padding: 28px 22px; }
  .contact-aside { margin-bottom: 28px; }
}
