:root {
  color-scheme: light;
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #f1f7ff;
  --text: #0d1533;
  --muted: #657086;
  --line: #dfe8f4;
  --blue: #1c63ff;
  --blue-strong: #0e48d7;
  --teal: #2cbfae;
  --green: #18a957;
  --violet: #7654de;
  --amber: #f5b43b;
  --rose: #f06a7a;
  --shadow: 0 24px 70px rgba(21, 41, 82, 0.12);
  --shadow-soft: 0 12px 34px rgba(36, 57, 98, 0.1);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

body::before {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  width: 100%;
  min-height: 80px;
  margin: 0;
  padding: 0 calc((100% - min(80vw, 1490px)) / 2);
  background: #ffffff;
  border: 0;
  box-shadow: none;
  transition: min-height 250ms ease;
}

.site-header.is-scrolled {
  min-height: 70px;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: visible;
  padding: clamp(64px, 8vw, 96px) clamp(24px, 6vw, 48px);
  border-radius: 0;
  background: transparent !important;
  color: var(--text);
  box-shadow: none;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: #f5f7fa;
  z-index: -1;
  pointer-events: none;
}

.hero::after {
  display: none;
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
  background: transparent !important;
}

.hero h1 {
  color: var(--text);
}

.hero h1 span {
  color: var(--text);
}

.hero-text {
  max-width: 42rem;
}

.hero-text span {
  display: inline-block;
}

.hero-text span + span::before {
  content: "";
  display: block;
  height: 10px;
}

.hero-visual {
  display: grid;
  place-items: center;
  background: transparent !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-visual .phone-mockup {
  box-shadow: none !important;
  filter: drop-shadow(0 34px 42px rgba(22, 32, 55, 0.16));
}

@media (max-width: 920px) {
  .hero {
    padding: clamp(48px, 10vw, 64px);
  }

  .hero {
    border-radius: 28px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 0;
    padding: 16px;
    min-height: auto;
    border: 0;
  }

  .main-pill-nav {
    overflow-x: auto;
    padding: 8px;
  }

  .main-pill-nav a {
    white-space: nowrap;
  }

  .hero {
    border-radius: 22px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: max-content;
  color: var(--text);
  font-weight: 800;
  letter-spacing: 0;
}

.site-header .brand {
  color: #14bdb7;
  font-size: clamp(1.6rem, 2.05vw, 2.55rem);
  font-weight: 900;
  line-height: 1;
}

.site-header .brand {
  flex: 0 0 auto;
  justify-self: start;
}

.brand-symbol {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 7px;
  background: #18c3bd;
}

.brand-symbol::before {
  content: "";
  width: 15px;
  height: 15px;
  border: 4px solid #ffffff;
  border-left-color: transparent;
  border-radius: 50%;
}

.brand-symbol::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 18px;
  width: 8px;
  height: 4px;
  border-top: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
}

.brand-symbol span {
  position: absolute;
  right: 10px;
  top: 9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #ffffff;
}

.brand-mark {
  height: 56px;
  width: 217px;
  display: block;
  mix-blend-mode: multiply;
  image-rendering: -webkit-optimize-contrast;
}

.main-pill-nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  min-height: 54px;
  padding: 6px 0;
}

.main-pill-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 4px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 500 !important;
  white-space: nowrap;
  transition: color 180ms ease, transform 180ms ease;
}

.main-pill-nav a:hover,
.main-pill-nav a:focus-visible {
  color: #1c63ff;
  transform: translateY(-1px);
  outline: 0;
}

.header-cta-group {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 99px;
  border: 1.5px solid #dbe4f0;
  background: #ffffff;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  transition: all 180ms ease;
  cursor: pointer;
}

.header-demo-btn:hover {
  border-color: #1c63ff;
  color: #1c63ff;
  background: #f8fbff;
  transform: translateY(-1px);
}

.header-sub-dropdown {
  position: relative;
  display: inline-flex;
}

.header-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 99px;
  background: linear-gradient(135deg, #1c63ff 0%, #7654de 100%);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(28, 99, 255, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  text-decoration: none;
}

.header-subscribe .sub-chevron {
  transition: transform 200ms ease;
}

.header-sub-dropdown:hover .sub-chevron {
  transform: rotate(180deg);
}

.header-subscribe:hover,
.header-subscribe:focus-visible {
  transform: translateY(-1.5px);
  box-shadow: 0 12px 28px rgba(28, 99, 255, 0.3);
  filter: brightness(1.05);
  outline: 0;
}

.header-sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 250px;
  padding: 8px;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 150;
}

.header-sub-dropdown:hover .header-sub-menu,
.header-sub-dropdown:focus-within .header-sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 150ms ease;
}

.sub-menu-item:hover {
  background: #f1f5f9;
}

.sub-item-title {
  font-size: 0.88rem;
  font-weight: 750;
  color: #0f172a;
}

.sub-item-desc {
  font-size: 0.74rem;
  color: #64748b;
  margin-top: 2px;
}


.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #33405a;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover {
  background: #f1f7ff;
  color: var(--blue-strong);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta {
  padding: 0 18px;
  background: var(--text);
  color: white;
  box-shadow: 0 10px 28px rgba(13, 21, 51, 0.16);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.section-pad {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 58px 0;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(620px, 1fr) minmax(300px, 0.55fr);
  align-items: center;
  gap: clamp(38px, 6vw, 120px);
  width: min(80vw, 1490px);
  min-height: calc(100vh - 80px);
  padding-top: 0;
  padding-bottom: 14px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  color: var(--blue-strong);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(44, 191, 174, 0.42);
  animation: pulse 2.2s infinite;
}

.hero h1,
.section-copy h2,
.demo-copy h2,
.cta-panel h2 {
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 850px;
  color: #2e2e31;
  font-size: clamp(2.95rem, 3.72vw, 4.55rem);
  font-weight: 500;
  line-height: 1.18;
}

.hero h1 span {
  color: #14bdb7;
  font-weight: 900;
}

.hero-text {
  max-width: 760px;
  margin: 30px 0 0;
  color: #7f8798;
  font-size: clamp(1.08rem, 1.18vw, 1.26rem);
  line-height: 1.62;
  font-weight: 500;
}

.hero-text span {
  display: block;
}

.email-signup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 186px;
  align-items: center;
  gap: 10px;
  width: min(100%, 560px);
  min-height: 66px;
  margin-top: 36px;
  padding: 7px;
  border: 1px solid #dfe4ef;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(36, 52, 86, 0.08);
}

.email-field {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding-left: 17px;
}

.email-field input {
  width: 100%;
  min-width: 0;
  height: 52px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #2e2e31;
  font-size: 1.05rem;
  font-weight: 500;
}

.email-field input::placeholder {
  color: #9da3af;
  opacity: 1;
}

.mail-icon {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 16px;
  border: 2.2px solid #556174;
  border-radius: 3px;
}

.mail-icon::before,
.mail-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 12px;
  height: 2px;
  border-radius: 2px;
  background: #556174;
}

.mail-icon::before {
  left: 1px;
  transform: rotate(35deg);
}

.mail-icon::after {
  right: 1px;
  transform: rotate(-35deg);
}

.email-signup button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #7966f1 0%, #19acd5 100%);
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(32, 163, 210, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.email-signup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(32, 163, 210, 0.26);
}

.email-signup button.is-submitted {
  background: linear-gradient(135deg, #1aa86b 0%, #18bfc0 100%);
}

.arrow-icon {
  position: relative;
  width: 18px;
  height: 14px;
  flex: 0 0 18px;
}

.arrow-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  right: 1px;
  width: 9px;
  height: 9px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
}

.arrow-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 16px;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-width: 178px;
  padding: 0 20px;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), #27b8a9);
  color: white;
  box-shadow: 0 18px 42px rgba(28, 99, 255, 0.22);
}

.btn-secondary {
  border-color: var(--line);
  background: white;
  color: var(--text);
  box-shadow: 0 10px 28px rgba(21, 41, 82, 0.06);
}

.btn-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  line-height: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 520px;
  margin-top: 26px;
}

.hero-stats div {
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 26px rgba(32, 54, 94, 0.05);
}

.hero-stats strong {
  display: block;
  color: var(--text);
  font-size: 1.72rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  min-height: auto;
}

.phone-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: clamp(246px, 19.6vw, 358px);
  max-height: 590px;
  object-fit: contain;
  filter: none;
  animation: floatPhone 6s ease-in-out infinite;
}

/* ── Product features: white theme ───────────────────── */
.product-features-section {
  position: relative;
  background: #ffffff;
}

/* Overrides removed as they are unified with hiw-head */

.product-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.product-feature-card {
  position: relative;
  min-height: 292px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid #e5ebf3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(21, 41, 82, 0.055);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.product-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--feature-color);
  opacity: 0.82;
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: transform 260ms ease, opacity 260ms ease;
}

.product-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--feature-rgb), 0.24);
  box-shadow:
    0 22px 48px rgba(21, 41, 82, 0.09),
    0 8px 22px rgba(var(--feature-rgb), 0.07);
}

.product-feature-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.product-feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 34px;
  border: 1px solid rgba(var(--feature-rgb), 0.18);
  border-radius: 8px;
  background: var(--feature-soft);
  color: var(--feature-color);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-feature-card:hover .product-feature-icon {
  transform: translateY(-2px);
  border-color: rgba(var(--feature-rgb), 0.32);
  background: #ffffff;
}

.product-feature-icon svg {
  width: 24px;
  height: 24px;
}

.product-feature-card h3 {
  max-width: 92%;
  margin: 0;
  color: #172033;
  font-size: clamp(1.15rem, 1.45vw, 1.32rem);
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: 0;
}

.product-feature-card p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 0.95rem;
  font-weight: 520;
  line-height: 1.62;
}

@media (max-width: 920px) {
  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 580px) {
  .product-feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-feature-card {
    min-height: auto;
    padding: 24px;
  }
}

/* ══════════════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════════════ */
.hiw-section {
  background: #ffffff;
}

/* ── Head ── */
.hiw-head {
  text-align: center;
  margin-bottom: 72px;
}

.hiw-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #14bdb7;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Match hero h1 style exactly */
.hiw-head h2 {
  margin: 0;
  color: #2e2e31;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.hiw-head h2 span {
  color: #14bdb7;
  font-weight: 900;
}

/* Match hero-text style */
.hiw-sub {
  max-width: 480px;
  margin: 16px auto 0;
  color: #7f8798;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.55;
}


/* ── Steps grid ── */
.hiw-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 12px;
  align-items: start;
}

.hiw-connector {
  position: absolute;
  top: 32px;
  left: calc(10% + 26px);
  right: calc(10% + 26px);
  height: 3px;
  background: #f1f5f9;
  z-index: 0;
  border-radius: 2px;
}

.hiw-connector-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,
    #1c63ff 0%,
    #7654de 25%,
    #18a957 50%,
    #2cbfae 75%,
    #f5b43b 100%);
  transition: width 350ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hiw-card {
  cursor: pointer;
}

.hiw-card-icon {
  transition: transform 300ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 300ms ease !important;
}

.hiw-card.is-active .hiw-card-icon {
  transform: scale(1.15);
  box-shadow: 
    0 16px 36px color-mix(in srgb, var(--sc,#1c63ff) 50%, transparent),
    0 0 0 4px #ffffff,
    0 0 0 6px var(--sc, #1c63ff) !important;
}

.hiw-card h3 {
  transition: color 300ms ease, transform 300ms ease !important;
}

.hiw-card.is-active h3 {
  color: var(--sc, #1c63ff);
  transform: translateY(-2px);
}

.hiw-card-num {
  display: none !important;
}


/* ── Card ── */
.hiw-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 0 10px 28px;
  opacity: 0;
  transform: translateY(28px);
  animation: hiwCardIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.12s + 0.15s);
}

@keyframes hiwCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hiw-card-num {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}

.hiw-card-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--sc, #1c63ff);
  box-shadow:
    0 6px 20px color-mix(in srgb, var(--sc,#1c63ff) 32%, transparent),
    0 1px 3px rgba(0,0,0,0.08);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.hiw-card:hover .hiw-card-icon {
  transform: translateY(-5px) scale(1.07);
  box-shadow:
    0 14px 32px color-mix(in srgb, var(--sc,#1c63ff) 46%, transparent),
    0 2px 6px rgba(0,0,0,0.1);
}

.hiw-card-icon svg {
  width: 26px;
  height: 26px;
}

.hiw-card h3 {
  margin: 0;
  color: #1e2332;
  font-size: 0.97rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.hiw-card p {
  margin: 0;
  color: #7f8798;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.6;
  max-width: 150px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .hiw-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 16px;
  }
  .hiw-connector { display: none; }
}

@media (max-width: 560px) {
  .hiw-steps { grid-template-columns: 1fr 1fr; gap: 32px 12px; }
  .hiw-head h2 { font-size: 2rem; }
}

@media (max-width: 380px) {
  .hiw-steps { grid-template-columns: 1fr; gap: 28px; }
}




.logo-group {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-right: 34px;
}

.logo-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 0 0 240px;
  min-height: 82px;
  padding: 18px 24px;
  border: 1px solid #edf2f8;
  border-radius: 8px;
  background: #fbfcff;
  box-shadow: 0 12px 30px rgba(36, 52, 86, 0.04);
  color: #3d4149;
  font-size: 1.18rem;
  font-weight: 700;
  white-space: nowrap;
}

.logo-mark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #ffffff;
  background-image: var(--logo), linear-gradient(135deg, #f6f9ff, #eef4fb);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 68%, cover;
}

.logo-mark::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 5px;
  opacity: 0.9;
}

.logo-ms::before {
  inset: 8px;
  border-radius: 0;
  background:
    linear-gradient(#f25022 0 0) 0 0 / 10px 10px,
    linear-gradient(#7fba00 0 0) 100% 0 / 10px 10px,
    linear-gradient(#00a4ef 0 0) 0 100% / 10px 10px,
    linear-gradient(#ffb900 0 0) 100% 100% / 10px 10px;
  background-repeat: no-repeat;
}

.logo-azure::before,
.logo-ai::before,
.logo-purview::before {
  inset: 7px 10px;
  border-radius: 3px;
  background: linear-gradient(135deg, #0078d4, #2bb7f6);
  clip-path: polygon(47% 0, 100% 100%, 64% 100%, 50% 68%, 30% 100%, 0 100%);
}

.logo-graph::before {
  inset: 8px;
  border: 3px solid #107c10;
  border-radius: 50%;
  background: transparent;
  box-shadow: 12px 4px 0 -6px #0078d4, 4px 14px 0 -6px #7719aa;
}

.logo-teams::before {
  inset: 7px;
  border-radius: 7px;
  background: #6264a7;
  box-shadow: 12px 5px 0 -5px #7b83eb;
}

.logo-sharepoint::before {
  inset: 8px;
  border-radius: 50%;
  background: #038387;
  box-shadow: 9px 0 0 -3px #37c6d0;
}

.logo-onedrive::before {
  inset: 12px 7px;
  border-radius: 999px;
  background: #0078d4;
  box-shadow: 9px -5px 0 -2px #25a8f2, -7px -2px 0 -3px #005a9e;
}

.logo-powerbi::before {
  inset: 8px 10px;
  border-radius: 2px;
  background:
    linear-gradient(#f2c811 0 0) 0 12px / 6px 10px,
    linear-gradient(#e7a614 0 0) 9px 6px / 6px 16px,
    linear-gradient(#d88c00 0 0) 18px 0 / 6px 22px;
  background-repeat: no-repeat;
}

.logo-openai::before {
  inset: 8px;
  border: 3px solid #412991;
  border-radius: 50%;
  background: transparent;
}

.logo-dynamics::before {
  inset: 7px 9px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2b4fd7, #7a5af8);
  clip-path: polygon(0 0, 100% 18%, 62% 100%, 0 78%);
}

.logo-card img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.audience-section {
  position: relative;
  padding-top: 76px;
  padding-bottom: 76px;
}

.audience-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(65, 105, 245, 0.18), rgba(20, 189, 183, 0.18), transparent);
}

.dynamic-head {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.dynamic-head p {
  margin: 0 0 12px;
  color: #14bdb7;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dynamic-head h2 {
  margin: 0;
  color: #101828;
  font-size: clamp(2.1rem, 4.4vw, 4.25rem);
  font-weight: 950;
  line-height: 1.03;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px;
  align-items: center;
  gap: 24px;
  min-height: 360px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(214, 223, 238, 0.9);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.92)),
    #ffffff;
  box-shadow: 0 22px 62px rgba(23, 43, 79, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.audience-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, #7966f1, #14bdb7, #2ea6df);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 420ms ease;
}

.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(65, 105, 245, 0.26);
  box-shadow: 0 28px 78px rgba(23, 43, 79, 0.12);
}

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

.audience-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #eef7ff;
  color: #4169f5;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-card h3 {
  max-width: 520px;
  margin: 18px 0 0;
  color: #111827;
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 950;
  line-height: 1.08;
}

.audience-card p {
  max-width: 560px;
  margin: 16px 0 0;
  color: #687385;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.6;
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  position: relative;
  padding-left: 24px;
  color: #40495c;
  font-size: 0.93rem;
  font-weight: 800;
}

.audience-card li::before {
  content: "";
  position: absolute;
  top: 0.54em;
  left: 0;
  width: 10px;
  height: 6px;
  border-bottom: 2px solid #14bdb7;
  border-left: 2px solid #14bdb7;
  transform: rotate(-45deg);
}

.audience-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
}

.audience-visual::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(65, 105, 245, 0.2);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: inset 0 0 0 12px rgba(65, 105, 245, 0.045), 0 18px 54px rgba(65, 105, 245, 0.12);
  transform: rotate(10deg);
  animation: visualFloat 5.4s ease-in-out infinite;
}

.audience-visual span {
  position: absolute;
  z-index: 1;
  display: block;
  border-radius: 8px;
  background: linear-gradient(135deg, #7966f1, #14bdb7);
  box-shadow: 0 12px 28px rgba(20, 189, 183, 0.18);
}

.school-visual span:nth-child(1) {
  width: 90px;
  height: 20px;
  transform: translateY(-42px);
}

.school-visual span:nth-child(2) {
  width: 118px;
  height: 72px;
  border-radius: 12px;
}

.school-visual span:nth-child(3) {
  width: 66px;
  height: 20px;
  transform: translateY(56px);
  background: linear-gradient(135deg, #2ea6df, #4169f5);
}

.parent-visual span:nth-child(1) {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  transform: translate(-34px, -20px);
}

.parent-visual span:nth-child(2) {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  transform: translate(34px, -18px);
  background: linear-gradient(135deg, #ffcc5c, #14bdb7);
}

.parent-visual span:nth-child(3) {
  width: 132px;
  height: 42px;
  border-radius: 999px;
  transform: translateY(54px);
  background: linear-gradient(135deg, #4169f5, #2ea6df);
}

.phone-glow {
  position: absolute;
  z-index: 1;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(44, 191, 174, 0.2), transparent 62%),
    radial-gradient(circle at 70% 30%, rgba(28, 99, 255, 0.14), transparent 40%);
  filter: blur(6px);
}

.floating-card {
  position: absolute;
  z-index: 3;
  width: 212px;
  min-height: 130px;
  padding: 18px;
  border: 1px solid rgba(223, 232, 244, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  animation: floatCard 5.8s ease-in-out infinite;
}

.floating-card span,
.board-label,
.card-tag,
.workspace-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--blue-strong);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  margin-top: 13px;
  font-size: 1rem;
  line-height: 1.25;
}

.floating-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.card-question {
  left: -16px;
  top: 86px;
}

.card-xp {
  right: -14px;
  bottom: 86px;
  animation-delay: -2s;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.trust-item {
  min-height: 182px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.trust-item span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
}

.trust-item strong {
  display: block;
  margin-top: 13px;
  font-size: 1.25rem;
}

.trust-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  align-items: start;
  gap: 48px;
}

.section-copy {
  position: sticky;
  top: 122px;
  align-self: start;
}

.section-copy.center {
  position: static;
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-copy h2,
.demo-copy h2,
.cta-panel h2 {
  font-size: clamp(2rem, 4.3vw, 4rem);
}

.section-copy p,
.demo-copy p,
.cta-panel p {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.section-copy.center p {
  margin-right: auto;
  margin-left: auto;
}

.feature-grid,
.admin-cards,
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-card,
.workspace-card,
.pipeline-card,
.study-board,
.cta-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 44px rgba(23, 43, 79, 0.07);
}

.feature-card {
  min-height: 244px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.workspace-card:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(28, 99, 255, 0.24);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #eef7ff;
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.feature-icon::before,
.feature-icon::after {
  content: "";
  position: absolute;
}

.stack-icon {
  background: #fff5de;
}

.stack-icon::before,
.stack-icon::after {
  width: 25px;
  height: 31px;
  border: 2px solid var(--amber);
  border-radius: 6px;
  background: white;
}

.stack-icon::before {
  transform: rotate(-8deg) translate(-4px, 2px);
}

.stack-icon::after {
  transform: rotate(7deg) translate(5px, -2px);
}

.path-icon {
  background: #f1efff;
}

.path-icon::before {
  width: 26px;
  height: 26px;
  border: 2px solid var(--violet);
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(45deg);
}

.path-icon::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: -16px 14px 0 var(--teal), 15px -13px 0 var(--blue);
}

.lock-icon {
  background: #eefbf5;
}

.lock-icon::before {
  bottom: 13px;
  width: 24px;
  height: 18px;
  border-radius: 5px;
  background: var(--green);
}

.lock-icon::after {
  top: 11px;
  width: 18px;
  height: 17px;
  border: 3px solid var(--green);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
}

.focus-icon {
  background: #fff0f3;
}

.focus-icon::before {
  width: 28px;
  height: 28px;
  border: 2px solid var(--rose);
  border-radius: 50%;
}

.focus-icon::after {
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--rose);
  transform: rotate(-38deg);
}

.switch-icon {
  background: #eef7ff;
}

.switch-icon::before,
.switch-icon::after {
  width: 26px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.switch-icon::before {
  top: 14px;
}

.switch-icon::after {
  bottom: 14px;
  background: var(--teal);
}

.analytics-icon {
  background: #f5f8ff;
}

.analytics-icon::before {
  bottom: 12px;
  width: 6px;
  height: 17px;
  border-radius: 5px;
  background: var(--blue);
  box-shadow: 10px -8px 0 var(--teal), 20px -15px 0 var(--violet);
}

.upload-icon {
  background: #eefbf5;
}

.upload-icon::before {
  width: 25px;
  height: 20px;
  border: 2px solid var(--green);
  border-top: 0;
  border-radius: 3px;
  bottom: 12px;
}

.upload-icon::after {
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--green);
  border-left: 3px solid var(--green);
  transform: rotate(45deg);
  top: 13px;
}

.audit-icon {
  background: #fff5de;
}

.audit-icon::before {
  width: 24px;
  height: 30px;
  border: 2px solid var(--amber);
  border-radius: 5px;
  background: white;
}

.audit-icon::after {
  width: 18px;
  height: 2px;
  background: var(--amber);
  box-shadow: 0 7px 0 var(--amber), 0 14px 0 var(--amber);
}

.taxonomy-icon {
  background: #f1efff;
}

.taxonomy-icon::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: -15px 16px 0 var(--blue), 15px 16px 0 var(--teal);
}

.taxonomy-icon::after {
  width: 31px;
  height: 22px;
  border-right: 2px solid var(--violet);
  border-left: 2px solid var(--violet);
  border-bottom: 2px solid var(--violet);
  transform: translateY(7px);
}

.invite-icon {
  background: #eef7ff;
}

.invite-icon::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 12px 7px 0 -4px var(--teal);
  transform: translateY(-5px);
}

.invite-icon::after {
  width: 30px;
  height: 14px;
  border-radius: 14px 14px 6px 6px;
  background: rgba(28, 99, 255, 0.18);
  bottom: 9px;
}

.feature-card h3,
.workspace-card strong,
.study-board h3,
.pipeline-head strong {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 1.18rem;
  line-height: 1.2;
}

.feature-card p,
.workspace-card li,
.pipeline-list p,
.faq-list p {
  color: var(--muted);
}

.feature-card p {
  margin: 12px 0 0;
}

.demo-section {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  align-items: center;
  gap: 48px;
}

.demo-copy {
  max-width: 490px;
}

.study-board {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(241, 247, 255, 0.72), rgba(255, 255, 255, 0.96)),
    #ffffff;
}

.study-board::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--teal), var(--amber), var(--violet));
}

.study-board-top,
.workspace-top,
.pipeline-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.study-board-top h3 {
  margin-top: 10px;
  font-size: 1.35rem;
}

.mastery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  background: #eafaf3;
  color: #127d42;
  font-size: 0.9rem;
  font-weight: 850;
  white-space: nowrap;
}

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 24px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.mode-tab {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mode-tab.is-active {
  background: #eef7ff;
  color: var(--blue-strong);
  box-shadow: inset 0 0 0 1px rgba(28, 99, 255, 0.16);
}

.flashcard-shell {
  perspective: 1400px;
  min-height: 310px;
  margin-top: 18px;
}

.flashcard-card {
  position: relative;
  min-height: 310px;
  border-radius: 8px;
  transform-style: preserve-3d;
  transition: transform 560ms cubic-bezier(0.2, 0.7, 0.2, 1);
  cursor: pointer;
}

.flashcard-card.is-flipped {
  transform: rotateY(180deg);
}

.flashcard-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  backface-visibility: hidden;
  box-shadow: var(--shadow-soft);
}

.flashcard-front {
  background:
    linear-gradient(145deg, rgba(28, 99, 255, 0.09), transparent 54%),
    #ffffff;
}

.flashcard-back {
  background:
    linear-gradient(145deg, rgba(44, 191, 174, 0.14), transparent 58%),
    #ffffff;
  transform: rotateY(180deg);
}

.flashcard-face h3 {
  margin: 24px 0 12px;
  font-size: clamp(1.48rem, 3vw, 2.25rem);
  line-height: 1.12;
}

.flashcard-face p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.flashcard-face small {
  color: #7c8798;
  font-weight: 800;
}

.recall-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.recall-actions button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

.recall-actions button:hover,
.recall-actions button.is-selected {
  transform: translateY(-2px);
  border-color: rgba(28, 99, 255, 0.4);
  color: var(--blue-strong);
}

.session-progress {
  height: 10px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef7;
}

.session-progress span {
  display: block;
  width: var(--progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform-origin: left;
  animation: growBar 1200ms ease both;
}

.admin-section {
  padding-top: 80px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  margin-top: 40px;
}

.pipeline-card {
  padding: 24px;
}

.pipeline-list {
  position: relative;
  display: grid;
  gap: 0;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pipeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  padding-bottom: 26px;
}

.pipeline-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: -2px;
  left: 11px;
  width: 2px;
  background: var(--line);
}

.pipeline-list li:last-child {
  padding-bottom: 0;
}

.pipeline-list li:last-child::before {
  display: none;
}

.pipeline-list li > span {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  margin-top: 2px;
  border: 4px solid #e5edf8;
  border-radius: 50%;
  background: white;
}

.pipeline-list li.is-done > span {
  border-color: var(--teal);
  background: var(--teal);
}

.pipeline-list li.is-current > span {
  border-color: var(--blue);
  box-shadow: 0 0 0 6px rgba(28, 99, 255, 0.12);
}

.pipeline-list strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.pipeline-list p {
  margin: 6px 0 0;
}

.workflow-section {
  padding-top: 72px;
}

.workspace-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.workspace-card {
  min-height: 280px;
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workspace-card ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.workspace-card li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
}

.workspace-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.workspace-card:nth-child(2) li::before {
  background: var(--blue);
}

.workspace-card:nth-child(3) li::before {
  background: var(--amber);
}

.cta-section {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 38px 0 92px;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(28, 99, 255, 0.1), rgba(44, 191, 174, 0.12)),
    #ffffff;
}

.cta-panel::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border: 34px solid rgba(28, 99, 255, 0.08);
  border-radius: 50%;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

/* Section head styles removed - unified with hiw-head */

.exam-features {
  padding-top: 76px;
  padding-bottom: 72px;
}

.exam-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.exam-feature-card,
.price-card {
  border: 1px solid #e7edf6;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(22, 38, 72, 0.06);
}

.exam-feature-card {
  min-height: 180px;
  padding: 24px 18px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.exam-feature-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(65, 105, 245, 0.28);
  box-shadow: 0 22px 54px rgba(22, 38, 72, 0.1);
}

.exam-feature-card h3,
.step-card h3,
.price-card h3 {
  margin: 18px 0 0;
  color: #121826;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.24;
}

.exam-feature-card p,
.step-card p,
.price-card p {
  margin: 10px 0 0;
  color: #697386;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.55;
}

.app-icon {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #eef2ff;
  color: #4169f5;
}

.app-icon::before,
.app-icon::after {
  content: "";
  position: absolute;
}

.icon-tutor {
  background: #eef2ff;
}

.icon-tutor::before {
  width: 24px;
  height: 18px;
  border: 3px solid #4169f5;
  border-radius: 7px;
}

.icon-tutor::after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #4169f5;
  box-shadow: -7px 0 0 #4169f5, 7px 0 0 #4169f5, 0 12px 0 -1px #4169f5;
}

.icon-card {
  background: #e9fbf2;
}

.icon-card::before,
.icon-card::after {
  width: 21px;
  height: 27px;
  border: 3px solid #30c783;
  border-radius: 5px;
  background: #ffffff;
}

.icon-card::before {
  transform: translate(-3px, 2px);
}

.icon-card::after {
  transform: translate(5px, -4px);
}

.icon-quiz {
  background: #f2ecff;
}

.icon-quiz::before {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #7b5cf4;
}

.icon-quiz::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 -8px 0 0 #ffffff, 0 9px 0 0 #ffffff;
}

.icon-study {
  background: #eef4ff;
}

.icon-study::before {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #4169f5;
  box-shadow: 16px 0 0 -1px #6d8cff;
  transform: translateY(-5px);
}

.icon-study::after {
  width: 31px;
  height: 16px;
  border-radius: 16px 16px 7px 7px;
  background: rgba(65, 105, 245, 0.2);
  transform: translateY(11px);
}

.icon-progress {
  background: #fff5df;
}

.icon-progress::before {
  bottom: 12px;
  width: 7px;
  height: 15px;
  border-radius: 4px;
  background: #f5a524;
  box-shadow: 11px -7px 0 #f5a524, 22px -14px 0 #f5a524;
}

.icon-progress::after {
  width: 25px;
  height: 14px;
  border-top: 3px solid #f5a524;
  border-right: 3px solid #f5a524;
  transform: translateY(-4px) rotate(-14deg);
}

.icon-trophy {
  background: #fff0f3;
}

.icon-trophy::before {
  top: 11px;
  width: 22px;
  height: 21px;
  border: 3px solid #f35f7b;
  border-radius: 5px 5px 9px 9px;
}

.icon-trophy::after {
  bottom: 10px;
  width: 22px;
  height: 4px;
  border-radius: 4px;
  background: #f35f7b;
  box-shadow: 0 -7px 0 -1px #f35f7b;
}

.icon-upload {
  background: #eef4ff;
}

.icon-upload::before {
  bottom: 12px;
  width: 27px;
  height: 16px;
  border: 3px solid #4169f5;
  border-top: 0;
  border-radius: 4px;
}

.icon-upload::after {
  top: 13px;
  width: 14px;
  height: 14px;
  border-top: 4px solid #4169f5;
  border-left: 4px solid #4169f5;
  transform: rotate(45deg);
}

.icon-spark {
  background: #f2ecff;
}

.icon-spark::before {
  width: 11px;
  height: 25px;
  border-radius: 999px;
  background: #7b5cf4;
  transform: rotate(45deg);
  box-shadow: 14px -3px 0 -3px #b497ff;
}

.icon-spark::after {
  width: 25px;
  height: 11px;
  border-radius: 999px;
  background: #7b5cf4;
  transform: rotate(45deg);
}

.how-section {
  padding-top: 54px;
  padding-bottom: 70px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px;
  margin-top: 28px;
}

.step-card {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.step-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 54px;
  right: -24px;
  width: 28px;
  height: 2px;
  background-image: linear-gradient(90deg, #9db1ff 45%, transparent 45%);
  background-size: 8px 2px;
}

.step-card:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 49px;
  right: -27px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #9db1ff;
  border-right: 2px solid #9db1ff;
  transform: rotate(45deg);
}

.step-number {
  margin-bottom: 8px;
  color: #4169f5;
  font-size: 0.9rem;
  font-weight: 900;
}

.step-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #e9eef8, 0 14px 34px rgba(22, 38, 72, 0.06);
}

.step-card:last-child .step-number {
  color: #111827;
}

.step-card:last-child .step-icon {
  background: #fff5df;
}

.step-card h3 {
  max-width: 170px;
  min-height: 42px;
  margin-top: 18px;
  font-size: 0.94rem;
}

.step-card p {
  max-width: 165px;
  margin-top: 8px;
  font-size: 0.82rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(280px, 1.8fr) minmax(200px, 1fr);
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
  width: 100%;
  margin: 0;
  padding: 58px max(24px, calc((100vw - var(--max)) / 2 + 16px)) 54px;
  border-top: 1px solid #e7edf6;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.footer-logo-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.footer-logo {
  width: 220px;
  height: auto;
  mix-blend-mode: multiply;
  image-rendering: -webkit-optimize-contrast;
}

.footer-brand p,
.footer-contact p,
.footer-social p {
  margin: 16px 0 0;
  max-width: 275px;
  color: #5f6d82;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.6;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #e3eaf4;
  border-radius: 10px;
  background: #f8fbff;
  color: #5f6d82;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  transition: transform 220ms ease;
}

.social-icon:hover {
  background: #ffffff;
  color: var(--hover-color);
  border-color: var(--hover-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 21, 51, 0.08);
}

.social-icon:hover svg {
  transform: scale(1.1);
}

.social-icon.si-x {
  --hover-color: #111827;
}

.social-icon.si-linkedin {
  --hover-color: #0a66c2;
}

.social-icon.si-instagram {
  --hover-color: #e4405f;
}

.social-icon.si-youtube {
  --hover-color: #ff0000;
}

.footer-links,
.footer-contact,
.footer-social {
  display: grid;
  gap: 8px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.02rem;
  font-weight: 900;
}

.footer-explore-cols {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 36px;
  row-gap: 10px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links > div:not(.footer-explore-cols) {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  column-gap: 32px;
  row-gap: 10px;
}

.footer-links a,
.footer-contact a {
  color: #5f6d82;
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #4169f5;
  transform: translateX(2px);
}

.footer-contact a {
  width: fit-content;
  margin-top: 8px;
  color: #4169f5;
}



.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(44, 191, 174, 0.42);
  }

  70% {
    box-shadow: 0 0 0 13px rgba(44, 191, 174, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(44, 191, 174, 0);
  }
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes visualFloat {
  0%,
  100% {
    transform: rotate(10deg) translateY(0);
  }

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

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

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

@keyframes logoScroll {
  from {
    transform: translateX(0);
  }

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

@keyframes growBar {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1240px) {
  .site-header {
    width: 100%;
    padding: 0 calc((100% - min(calc(100% - 32px), var(--max))) / 2);
  }

  .main-pill-nav {
    max-width: min(620px, calc(100vw - 300px));
    overflow-x: auto;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .main-pill-nav::-webkit-scrollbar {
    display: none;
  }

  .hero,
  .split-section,
  .demo-section,
  .admin-layout,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .hero {
    width: min(calc(100% - 32px), var(--max));
    min-height: auto;
    gap: 32px;
    padding-top: 54px;
    padding-bottom: 36px;
  }

  .hero-visual {
    justify-content: center;
    min-height: auto;
  }

  .phone-mockup {
    width: min(72vw, 338px);
    max-height: none;
  }

  .trust-band,
  .workspace-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

  .step-card:not(:last-child)::before,
  .step-card:not(:last-child)::after {
    display: none;
  }

  .pricing-grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand,
  .footer-newsletter {
    grid-column: span 2;
  }

  .section-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    width: 100%;
    margin-top: 0;
    min-height: auto;
    gap: 12px;
    padding: 12px 16px;
  }

  .site-header .brand {
    align-items: center;
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .brand-mark {
    height: 40px;
    width: 155px;
    flex: 0 0 auto;
  }

  .main-pill-nav {
    max-width: calc(100vw - 190px);
    min-height: 48px;
    padding: 5px;
  }

  .main-pill-nav a {
    min-height: 36px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .header-demo-btn {
    display: none;
  }

  .header-cta-group {
    gap: 0;
  }

  .header-subscribe {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.78rem;
  }

  .site-footer .brand span {
    font-size: 0.98rem;
  }

  .header-cta {
    display: none;
  }

  .section-pad,
  .trust-band,
  .cta-section,
  .site-footer {
    width: min(calc(100% - 24px), var(--max));
  }

  .section-pad {
    padding: 42px 0;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 28px;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.45rem);
    line-height: 1.12;
  }

  .hero-text {
    margin-top: 22px;
    font-size: 1.02rem;
  }

  .hero-text span {
    display: inline;
  }

  .hero-text span + span::before {
    content: " ";
  }

  .hero-text br {
    display: none;
  }

  .email-signup {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    margin-top: 30px;
    padding: 10px;
    border-radius: 28px;
  }

  .email-field {
    min-height: 52px;
    padding-right: 14px;
  }

  .email-field input {
    font-size: 1rem;
  }

  .email-signup button {
    min-height: 54px;
  }

  .hero-actions,
  .hero-stats {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    min-height: 82px;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-mockup {
    width: min(86%, 274px);
    max-height: none;
  }

  .logo-carousel {
    padding-bottom: 34px;
  }

  .logo-carousel h2 {
    width: min(calc(100% - 24px), var(--max));
    margin-right: auto;
    margin-bottom: 20px;
    margin-left: auto;
    font-size: 1.42rem;
  }

  .logo-group {
    gap: 14px;
    padding-right: 14px;
  }

  .logo-card {
    flex-basis: 218px;
    min-height: 74px;
    padding: 16px 18px;
    font-size: 1rem;
  }

  .trust-band,
  .feature-grid,
  .admin-cards,
  .workspace-grid,
  .exam-feature-grid,
  .steps-row,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .feature-card,
  .workspace-card,
  .exam-feature-card {
    min-height: auto;
  }

  .exam-features,
  .how-section,
  .pricing-section {
    padding-top: 50px;
    padding-bottom: 52px;
  }

  /* Section head media query styles removed */

  .exam-feature-card {
    display: grid;
    grid-template-columns: 54px 1fr;
    column-gap: 16px;
    align-items: start;
    padding: 20px;
  }

  .exam-feature-card h3 {
    margin-top: 2px;
  }

  .exam-feature-card p {
    grid-column: 2;
  }

  .steps-row {
    gap: 22px;
  }

  .step-card {
    grid-template-columns: 54px 1fr;
    justify-items: start;
    gap: 0 16px;
    text-align: left;
  }

  .step-number {
    grid-column: 1 / -1;
    margin-left: 18px;
  }

  .step-card .step-icon {
    width: 54px;
    height: 54px;
  }

  .step-card h3,
  .step-card p {
    max-width: none;
  }

  .step-card h3 {
    min-height: auto;
    margin-top: 4px;
  }

  .step-card p {
    grid-column: 2;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
  }

  .footer-brand,
  .footer-social {
    grid-column: auto;
  }

  .mode-tabs {
    grid-template-columns: 1fr;
  }

  .study-board {
    padding: 18px;
  }

  .study-board-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .flashcard-shell,
  .flashcard-card {
    min-height: 360px;
  }

  .recall-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pipeline-head,
  .workspace-top,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-panel::after {
    display: none;
  }
}

@media (max-width: 430px) {
  .phone-mockup {
    width: min(90%, 248px);
  }
}

/* ══════════════════════════════════════════════
   SCHOOLS & PARENTS SECTIONS (PREMIUM WHITE THEME)
══════════════════════════════════════════════ */

/* ── Section Paddings & General Layout ── */
.schools-section,
.parents-section {
  background: #ffffff;
  border-bottom: 1px solid #f1f5f9;
}

.section-pad-small {
  padding: 48px 0;
}

.split-showcase {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
  margin-top: 48px;
}

.split-showcase.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-content h3 {
  margin: 0;
  color: #1e293b;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.showcase-content > p {
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ── Benefit List ── */
.benefit-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.benefit-icon svg {
  width: 20px;
  height: 20px;
}

.benefit-list strong {
  display: block;
  color: #1e293b;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit-list p {
  margin: 0;
  color: #64748b;
  font-size: 0.88rem;
  line-height: 1.5;
}

.showcase-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 16px;
}

.btn-secondary-link {
  color: #1c63ff;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.btn-secondary-link:hover {
  transform: translateX(4px);
}

/* ── Showcase Visuals (Mockups) ── */
.showcase-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
}

/* ── Laptop Mockup ── */
.laptop-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 16 / 10;
  background: #ffffff;
  border: 8px solid #d9e3ef;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 25px 60px -15px rgba(47, 71, 112, 0.14);
  overflow: hidden;
}

.laptop-frame::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -40px;
  right: -40px;
  height: 10px;
  background: #e6edf6;
  border-radius: 0 0 10px 10px;
}

.laptop-screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ── Mobile Phone Mockup ── */
.parent-showcase-visual {
  min-height: 560px;
}

.mobile-frame-container {
  position: relative;
  z-index: 3;
  width: clamp(250px, 25vw, 320px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.mobile-frame-container::before {
  display: none;
}

.mobile-screen-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.mobile-app-frame {
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

.mobile-status-bar {
  display: flex;
  justify-content: space-between;
  padding: 6px 16px;
  font-size: 0.6rem;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
}

.mobile-app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
}

.profile-switch {
  display: flex;
  align-items: center;
  gap: 6px;
}

.profile-switch .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #eef7ff;
  color: #1c63ff;
  border-radius: 50%;
  font-size: 0.55rem;
  font-weight: 700;
}

.profile-switch .name {
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
}

.streak-flame {
  font-size: 0.62rem;
  font-weight: 800;
  color: #f5821f;
  background: #fffde7;
  padding: 2px 6px;
  border-radius: 99px;
}

.mobile-app-body {
  flex: 1;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  background: #ffffff;
}

.m-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  padding: 10px;
}

.m-card h5 {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  color: #334155;
}

.m-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.m-card-header .pct {
  font-size: 0.68rem;
  font-weight: 800;
  color: #1c63ff;
}

.m-progress-bar {
  width: 100%;
  height: 5px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}

.m-progress-fill {
  height: 100%;
  border-radius: 99px;
}

.m-card span {
  font-size: 0.58rem;
  color: #64748b;
  font-weight: 600;
}

.m-badge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.m-badge-card {
  background: #f8fafc;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 8px;
  text-align: center;
}

.m-badge-card .badge-icon {
  font-size: 1.1rem;
  display: block;
  margin-bottom: 4px;
}

.m-badge-card h6 {
  margin: 0;
  font-size: 0.58rem;
  font-weight: 700;
  color: #475569;
}

.m-card.list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.m-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 6px 10px;
}

.m-list-item span {
  font-size: 0.6rem;
  font-weight: 600;
  color: #334155;
}

.m-list-item .arrow {
  font-size: 0.68rem;
  color: #1c63ff;
}

/* ── Floating UI Cards ── */
.floating-ui-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  width: max-content;
  max-width: 220px;
}

.f-ui-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: bold;
  color: #ffffff;
  flex-shrink: 0;
}

.f-ui-icon.bg-blue { background: #1c63ff; }
.f-ui-icon.bg-green { background: #18a957; }
.f-ui-icon.bg-yellow { background: #f5b43b; }
.f-ui-icon.bg-purple { background: #7654de; }

.floating-ui-card strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: #1e293b;
}

.floating-ui-card p {
  margin: 2px 0 0 0;
  font-size: 0.68rem;
  color: #64748b;
  font-weight: 500;
}

/* ── Coordinates & Floating Animations ── */
.f-ui-1 {
  left: -20px;
  top: 15%;
  animation: floatCardY 6s ease-in-out infinite;
}

.f-ui-2 {
  right: -30px;
  top: 30%;
  animation: floatCardY 6s ease-in-out infinite -2s;
}

.f-ui-3 {
  left: 20px;
  bottom: -20px;
  animation: floatCardY 6s ease-in-out infinite -4s;
}

.m-ui-1 {
  left: clamp(-72px, -4vw, -42px);
  top: 32%;
  z-index: 2;
  animation: floatCardY 6.5s ease-in-out infinite -1s;
}

.m-ui-2 {
  right: clamp(-72px, -4vw, -42px);
  bottom: 12%;
  z-index: 2;
  animation: floatCardY 6.5s ease-in-out infinite -3.5s;
}

@keyframes floatCardY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── General Features Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 38px;
}

/* Card counter setup for schools grid */
.features-grid {
  counter-reset: card-counter;
}

.feature-card {
  position: relative;
  counter-increment: card-counter;
  min-height: 248px;
  background: #ffffff;
  border: 1px solid #e4ebf3;
  border-radius: 8px;
  padding: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: 
    transform 260ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
  z-index: 1;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--theme-color);
  opacity: 0.82;
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: transform 260ms ease, opacity 260ms ease;
}

/* Flashcard numeric index indicator */
.feature-card::after {
  content: "0" counter(card-counter);
  position: absolute;
  top: 26px;
  right: 28px;
  min-width: 38px;
  padding: 4px 8px;
  border: 1px solid #e5ebf2;
  border-radius: 999px;
  background: #f8fafc;
  color: #7b8798;
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.05em;
  text-align: center;
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease;
  z-index: 2;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--theme-rgb), 0.26);
  box-shadow: 
    0 22px 42px rgba(15, 23, 42, 0.09),
    0 8px 20px rgba(var(--theme-rgb), 0.07);
}

.feature-card:hover::before {
  opacity: 0.95;
  transform: scaleX(1);
}

.feature-card:hover::after {
  border-color: rgba(var(--theme-rgb), 0.24);
  background: var(--bg-light);
  color: var(--theme-color);
}

/* Flashcard icon */
.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(var(--theme-rgb), 0.18);
  border-radius: 8px;
  background: var(--bg-light);
  color: var(--theme-color);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  box-shadow: none;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    color 260ms ease;
}

.feature-card:hover .card-icon {
  transform: translateY(-2px);
  border-color: rgba(var(--theme-rgb), 0.34);
  background: #ffffff;
  color: var(--theme-color);
}

.card-icon svg {
  width: 23px;
  height: 23px;
  stroke: currentColor !important;
  transition: transform 300ms ease;
}

/* Text styling updates */
.feature-card h4 {
  max-width: 88%;
  margin: 0 0 12px 0;
  color: #172033;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.34;
  z-index: 2;
}

.feature-card p {
  margin: 0;
  color: #627086;
  font-size: 0.91rem;
  line-height: 1.64;
  z-index: 2;
}

/* ── Statistics Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100vw;
  margin: 72px calc(50% - 50vw) 0;
  padding: 42px max(24px, calc((100vw - var(--max)) / 2 + 16px));
  border: 0;
  border-radius: 0;
  background: #0b1d31;
  box-shadow: none;
}

.stat-card {
  display: grid;
  place-items: center;
  min-height: 118px;
  padding: 0 28px;
  text-align: center;
}

.stat-card + .stat-card {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.stat-num {
  display: block;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.stat-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.98rem;
  font-weight: 500;
}

/* ── Trust Logoband ── */
.trust-logoband {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px 28px;
  margin-top: 48px;
}

.trust-logoband span {
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-logoband .dot {
  color: #cbd5e1;
  font-size: 1.2rem;
}

/* ── Testimonials ── */
.success-testimonial {
  max-width: 760px;
  margin: 64px auto 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.success-testimonial .quote {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  color: #334155;
  font-weight: 600;
  line-height: 1.6;
}

.success-testimonial .author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-testimonial strong {
  color: #1e293b;
  font-size: 0.95rem;
  font-weight: 700;
}

.success-testimonial span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 600;
}

/* ── Media Queries ── */
@media (max-width: 1024px) {
  .split-showcase {
    gap: 48px;
  }
}

@media (max-width: 920px) {
  .split-showcase,
  .split-showcase.reverse {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .parents-section .split-showcase.reverse {
    display: flex;
    flex-direction: column;
  }
  
  .parents-section .split-showcase.reverse .showcase-content {
    order: 1;
  }
  
  .parents-section .split-showcase.reverse .showcase-visual {
    order: 2;
  }

  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .stat-card {
    min-height: 104px;
  }

  .stat-card + .stat-card {
    border-left: 0;
  }

  .stat-card:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.22);
  }

  .stat-card:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
}

@media (max-width: 580px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .stat-card {
    min-height: 94px;
  }

  .stat-card:nth-child(even) {
    border-left: 0;
  }

  .stat-card + .stat-card {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }
  
  .showcase-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  
  .showcase-cta a {
    text-align: center;
  }
  
  .floating-ui-card {
    display: none;
  }
}

@media (max-width: 1240px) and (min-width: 981px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: min(calc(100% - 32px), var(--max));
  }
}

@media (max-width: 980px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

.site-footer {
  width: 100%;
}

.pricing-section {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

/* ── Hero CTA button ── */
.btn-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 220px;
  min-height: 56px;
  margin-top: 36px;
  padding: 0 36px;
  border-radius: 999px;
  background: #14bdb7;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(20, 189, 183, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn-hero-cta:hover {
  background: #0fa8a3;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(20, 189, 183, 0.3);
}

@media (max-width: 560px) {
  .btn-hero-cta {
    width: 100%;
    min-width: 0;
  }
}



/* ══════════════════════════════════════════════
   MODAL POPUP STYLING
   ══════════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 21, 51, 0.5); /* Semi-transparent backdrop */
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-container {
  background: #ffffff;
  width: min(calc(100% - 32px), 540px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(13, 21, 51, 0.15);
  border: 1px solid rgba(28, 99, 255, 0.05);
  position: relative;
  transform: translateY(-20px);
  transition: transform 0.3s ease;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.modal-overlay.is-open .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 50%;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.modal-close:hover {
  color: #0f172a;
  background-color: #f1f5f9;
}

.modal-header {
  margin-bottom: 28px;
}

.modal-header h2 {
  font-family: inherit;
  font-size: 1.85rem;
  font-weight: 800;
  color: #0b1a30;
  margin: 0 0 8px 0;
}

.modal-header p {
  font-size: 0.94rem;
  color: #64748b;
  margin: 0;
  line-height: 1.45;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  color: #334155;
  font-size: 0.84rem;
  font-weight: 750;
}

.form-group input {
  width: 100%;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid #d8e0e9;
  border-radius: 9px;
  background: #fff;
  color: #0f172a;
  font: inherit;
  font-size: 0.94rem;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-group input:focus {
  border-color: #14bdb7;
  box-shadow: 0 0 0 3px rgba(20, 189, 183, 0.14);
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 50px;
  border: 0;
  border-radius: 9px;
  background: #14bdb7;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.btn-submit:hover { background: #0fa8a3; }
.btn-submit:active { transform: translateY(1px); }
.btn-submit:disabled { cursor: wait; opacity: 0.65; }

.form-status {
  display: none;
  margin: 0;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 0.87rem;
  line-height: 1.45;
}

.form-status.is-success {
  display: block;
  border: 1px solid #bbebcb;
  background: #effbf3;
  color: #126b35;
}

.form-status.is-error {
  display: block;
  border: 1px solid #fecaca;
  background: #fff4f4;
  color: #a61b1b;
}

/* Custom styles for native inputs inside modal */
.modal-form input[type="date"],
.modal-form input[type="time"] {
  position: relative;
}

@media (max-width: 560px) {
  .modal-container {
    padding: 30px 20px;
  }
  .form-row { grid-template-columns: 1fr; }
}

/* FAQ */
.faq-section {
  display: block;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding-top: clamp(72px, 8vw, 112px);
  padding-bottom: clamp(80px, 9vw, 128px);
  background: #ffffff;
}

.faq-intro {
  max-width: 900px;
  margin: 0 auto clamp(48px, 6vw, 78px);
  text-align: center;
}

.faq-intro h2 {
  margin: 0;
  color: #2e2e31;
  font-family: inherit;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.faq-kicker {
  display: inline-block;
  margin-bottom: 14px;
  color: #14bdb7;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.faq-list {
  width: min(100%, 1160px);
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #d7dde5;
  border-radius: 0;
  background: #ffffff;
}

.faq-list details {
  margin: 0;
  border: 0;
  border-bottom: 1px solid #d7dde5;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  transform: none;
  transition: none;
}

.faq-list details:last-child { border-bottom: 1px solid #d7dde5; }

.faq-list details:hover {
  border-color: #d7dde5;
  box-shadow: none;
  transform: none;
}

.faq-list summary {
  position: relative;
  padding: 26px 54px 26px 4px;
  color: #111827;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-family: inherit;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 2px;
  color: #2994ff;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after { content: "\2212"; }

.faq-list details p {
  max-width: 1080px;
  margin: -4px 54px 26px 4px;
  padding: 0;
  color: #536174;
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.65;
}

@media (max-width: 560px) {
  .faq-section { padding-right: 18px; padding-left: 18px; }
  .faq-intro { margin-bottom: 38px; }
  .faq-list { padding: 0; border-radius: 0; }
  .faq-list summary { padding-top: 22px; padding-bottom: 22px; }
  .faq-list details p { margin-right: 30px; }
}

/* ══════════════════════════════════════════════
   PRIVACY POLICY (CLEAN DREAM IT STYLE LAYOUT)
   ══════════════════════════════════════════════ */

.privacy-page-main {
  background: #ffffff;
  padding: clamp(48px, 6vw, 80px) clamp(20px, 4vw, 40px) clamp(64px, 8vw, 100px);
  min-height: 75vh;
}

.privacy-container {
  max-width: 940px;
  margin: 0 auto;
  color: #1a202c;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.75;
}

.privacy-page-title {
  font-size: clamp(26px, 3.5vw, 34px);
  font-weight: 800;
  color: #0d1533;
  text-align: center;
  margin: 0 0 36px;
  letter-spacing: -0.015em;
}

.privacy-doc-meta {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #edf2f7;
}

.privacy-doc-subtitle {
  font-size: 1.12rem;
  font-weight: 800;
  color: #0d1533;
  margin: 0 0 6px;
}

.privacy-effective-date {
  font-size: 0.95rem;
  color: #4a5568;
  font-weight: 600;
  margin: 0 0 16px;
}

.privacy-intro {
  font-size: 1rem;
  color: #2d3748;
  line-height: 1.8;
  margin-bottom: 28px;
}

.privacy-intro a,
.privacy-container a {
  color: #1c63ff;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 150ms ease;
}

.privacy-intro a:hover,
.privacy-container a:hover {
  color: #0d48cb;
}

.privacy-section {
  margin-bottom: 34px;
}

.privacy-heading {
  font-size: 1.15rem;
  font-weight: 800;
  color: #0d1533;
  margin: 0 0 14px;
  line-height: 1.4;
}

.privacy-subheading {
  font-size: 1.02rem;
  font-weight: 750;
  color: #1a2542;
  margin: 18px 0 8px;
}

.privacy-text {
  font-size: 0.98rem;
  color: #374151;
  margin: 0 0 14px;
  line-height: 1.75;
}

.privacy-text strong {
  color: #0d1533;
}

.privacy-list {
  margin: 0 0 18px;
  padding-left: 24px;
  color: #374151;
}

.privacy-list li {
  margin-bottom: 8px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.privacy-list li strong {
  color: #0d1533;
}

.privacy-ordered-list {
  margin: 0 0 18px;
  padding-left: 24px;
  color: #374151;
}

.privacy-ordered-list li {
  margin-bottom: 8px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.privacy-ordered-list li strong {
  color: #0d1533;
}

/* Callout Box */
.privacy-note-box {
  margin: 18px 0 22px;
  padding: 16px 20px;
  background: #f8fafc;
  border-left: 4px solid #1c63ff;
  border-radius: 6px;
  color: #374151;
  font-size: 0.95rem;
  line-height: 1.7;
}

.privacy-note-box.success-border {
  border-left-color: #18a957;
  background: #f8fdf9;
}

.privacy-note-box strong {
  color: #0d1533;
}

/* Third-Party Processors Table */
.privacy-table-container {
  margin: 20px 0 24px;
  overflow-x: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
}

.privacy-table th {
  padding: 12px 16px;
  background: #f8fafc;
  color: #0d1533;
  font-weight: 800;
  border-bottom: 2px solid #e2e8f0;
  white-space: nowrap;
}

.privacy-table td {
  padding: 12px 16px;
  color: #4a5568;
  border-bottom: 1px solid #edf2f7;
  vertical-align: top;
  line-height: 1.6;
}

.privacy-table tr:last-child td {
  border-bottom: none;
}

.privacy-table tr:hover td {
  background: #fafcff;
}

.privacy-table strong {
  color: #0d1533;
}

/* Contact Block */
.privacy-contact-info {
  margin-top: 24px;
  padding: 20px 22px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.privacy-contact-info p {
  margin: 0 0 8px;
  color: #374151;
  font-size: 0.96rem;
  line-height: 1.6;
}

.privacy-contact-info p:last-child {
  margin-bottom: 0;
}

.privacy-contact-info strong {
  color: #0d1533;
}

@media (max-width: 768px) {
  .privacy-page-main {
    padding-top: 36px;
    padding-bottom: 60px;
  }
  
  .privacy-page-title {
    margin-bottom: 24px;
  }
}




/* ============================================================
   Tester Onboarding: Temporarily Put Hold on Pricing and Hide Payment UI
   (Preserving all underlying HTML and endpoints intact)
   ============================================================ */
.header-sub-dropdown {
  display: none !important;
}

.footer-col a[href="/subscribe"],
.footer-col a[href="/student-subscribe"] {
  display: none !important;
}

.header-sub-dropdown,
.header-sub-menu,
.header-cta-group .header-sub-dropdown,
a.header-subscribe[href="/subscribe"],
a[href="/subscribe"],
a[href="/student-subscribe"],
.footer-col a[href*="subscribe"],
.footer-explore-cols a[href*="subscribe"] {
  display: none !important;
}
