@import url('/home-page/public-header.css');

/*
 * Web 2.0 static-page upgrade.
 *
 * The SEO/static HTML bundle (Blog, Tools, articles) used to ship its own
 * rust-accent token set (`home-static.css`, `vocabulary-builder.css`,
 * `blog/secondary-page.css`, …) and a separate legacy desktop header
 * styled by `home-static-layout.css`.  The React SPA meanwhile moved to the
 * purple ClaviSay 2.0 brand and the floating `.landing-2-nav` pill.
 *
 * This stylesheet is the single override layer that brings every static page
 * onto the same surface as the SPA.  It MUST be linked AFTER
 * `home-static-layout.css`, `home-static.css`, `vocabulary-builder.css`,
 * `blog/secondary-page.css`, `seo-secondary-page.css`,
 * `article-reading-vocabulary.css`, and `legal-page.css` so the new tokens
 * win the cascade.
 */

:root {
  /* ClaviSay 2.0 brand — keep in sync with apps/web/src/styles.css. */
  --color-brand-00: #9583ed;
  --color-brand-01: #ffdd6f;
  --color-brand-02: #c3dcfd;
  --color-bg-solid-00: #fdf9f3;
  --color-bg-solid-01: #ffffff;
  --color-surface-00: rgb(149 131 237 / 50%);
  --color-surface-05: #e7ddf6;

  --bg: var(--color-bg-solid-00);
  --surface: var(--color-bg-solid-01);
  --surface-soft: var(--color-surface-05);
  --primary: var(--color-brand-00);
  --primary-strong: #646fe3;
  --primary-soft: var(--color-surface-00);
  --highlight: rgb(255 221 111 / 50%);

  /*
   * Override the legacy rust accent everywhere.  Both `--accent` and
   * `--vb-primary` flip to the purple brand so consumers (`.hl-terracotta`,
   * `.layout__lang-option--current`, `.vb-…`, gradients, etc.) follow
   * automatically.
   */
  --accent: oklch(67% 0.153 289);
  --accent-soft: oklch(67% 0.153 289 / 0.08);
  --accent-bg: oklch(96% 0.018 289);
  --accent-glow: oklch(67% 0.153 289 / 0.3);
  --vb-primary: var(--accent);
  --vb-primary-soft: var(--accent-bg);

  --web2-surface-raised: color-mix(in oklch, var(--surface) 94%, var(--primary-soft));
  --web2-surface-muted: color-mix(in oklch, var(--surface-soft) 86%, var(--primary-soft));
  --web2-border-strong: color-mix(in oklch, var(--border) 72%, var(--primary) 28%);
  --web2-shadow-soft: 0 18px 42px oklch(27% 0.03 40 / 0.12);
  --web2-shadow-float: 0 26px 72px oklch(27% 0.04 40 / 0.18);
}

/*
 * `vocabulary-builder.css` redefines the accent locally on `.vb-page` with
 * class-level specificity, which would otherwise beat the `:root` overrides
 * above inside that subtree.  Repeat the purple override at the same scope so
 * every Tools page joins the brand.
 */
.vb-page {
  --vb-primary: oklch(67% 0.153 289);
  --vb-primary-soft: oklch(96% 0.018 289);
  --accent: oklch(67% 0.153 289);
  --accent-soft: oklch(67% 0.153 289 / 0.08);
  --accent-bg: oklch(96% 0.018 289);
  --accent-glow: oklch(67% 0.153 289 / 0.3);
  --primary: oklch(67% 0.153 289);
}

/*
 * The Landing 2.0 floating pill nav.
 *
 * These rules are ported from apps/web/src/styles/web-2-foundation.css and
 * The menu is positioned from the Header's center so route-specific content
 * in the left and right regions cannot move it.
 */
.layout--landing-nav .layout__header {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  max-width: none;
  border-bottom: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
}

@media (min-width: 1101px) {
  .layout--landing-nav .layout__header {
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 84px;
    padding: 13px 32px 13px 80px;
    background: transparent;
    translate: 0 32px;
  }

  .layout--landing-nav .layout__topnav-left {
    display: contents;
  }

  .layout--landing-nav .layout__brand {
    display: inline-flex;
  }

  .layout--landing-nav .landing-2-nav {
    position: absolute;
    left: 50%;
    display: flex;
    flex: 0 0 auto;
    width: fit-content;
    align-items: center;
    justify-content: center;
    gap: var(--public-header-nav-gap);
    height: var(--public-header-nav-height);
    margin: 0;
    padding: var(--public-header-nav-padding);
    border-radius: var(--public-header-nav-radius);
    background: var(--public-header-nav-bg);
    box-shadow: var(--public-header-nav-shadow);
    -webkit-backdrop-filter: var(--public-header-nav-blur);
    backdrop-filter: var(--public-header-nav-blur);
    transform: translateX(-50%);
  }

  .layout--landing-nav .landing-2-nav > a {
    display: inline-flex;
    align-items: center;
    min-height: var(--public-header-nav-item-height);
    padding: 0 var(--public-header-nav-item-padding-inline);
    border-radius: var(--public-header-nav-radius);
    color: var(--public-header-nav-item-color);
    font-size: var(--public-header-nav-item-font-size);
    font-weight: var(--public-header-nav-item-font-weight);
    line-height: var(--public-header-nav-item-height);
    text-decoration: none;
    white-space: nowrap;
  }

  .layout--landing-nav .landing-2-nav > a.active,
  .layout--landing-nav .landing-2-nav > a:hover {
    border-radius: var(--public-header-nav-radius);
    background: var(--public-header-nav-active-bg);
    color: var(--public-header-nav-active-color);
    font-weight: var(--public-header-nav-active-font-weight);
    box-shadow: var(--public-header-nav-active-shadow);
  }

  .layout--landing-nav .landing-2-nav__tools {
    height: var(--public-header-nav-item-height);
  }

  .layout--landing-nav .landing-2-nav__tools .layout__tools-trigger {
    display: inline-flex;
    align-items: center;
    min-height: var(--public-header-nav-item-height);
    padding: 0 var(--public-header-nav-item-padding-inline);
    border: 0;
    border-radius: var(--public-header-nav-radius);
    background: transparent;
    color: var(--public-header-nav-item-color);
    font: inherit;
    font-size: var(--public-header-nav-item-font-size);
    font-weight: var(--public-header-nav-item-font-weight);
    line-height: var(--public-header-nav-item-height);
    white-space: nowrap;
    cursor: pointer;
  }

  .layout--landing-nav .landing-2-nav__tools:hover .layout__tools-trigger,
  .layout--landing-nav .landing-2-nav__tools:focus-within .layout__tools-trigger {
    background: #fff;
    color: #171412;
    box-shadow: 0 5px 16px #5c4d4620;
  }

  .layout--landing-nav .landing-2-nav__tools .layout__tools-panel {
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    padding: 8px;
    border-radius: 14px;
    background: oklch(100% 0 0 / 0.96);
    box-shadow: var(--web2-shadow-float);
  }

  .layout--landing-nav .landing-2-nav__tools .layout__tools-panel a {
    display: flex;
    min-height: 38px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--fg);
    font-size: 14px;
  }

  .layout--landing-nav .landing-2-nav__tools .layout__tools-panel a:hover {
    background: var(--accent-soft);
    color: var(--accent);
  }

  .layout--landing-nav .layout__nav--actions {
    display: flex;
    align-items: center;
    gap: var(--public-header-action-gap);
    margin-left: auto;
  }

  .layout--landing-nav .landing-2-nav__help {
    display: grid;
    width: var(--public-header-nav-height);
    height: var(--public-header-nav-height);
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--public-header-help-bg);
    color: var(--public-header-control-fg);
    font-size: var(--public-header-help-font-size);
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    text-decoration: none;
  }


  .layout--landing-nav .layout__lang {
    position: relative;
    flex: 0 0 auto;
  }

  .layout--landing-nav .layout__lang-trigger {
    display: inline-flex;
    height: var(--public-header-nav-height);
    align-items: center;
    gap: var(--public-header-control-gap);
    padding: 0 var(--public-header-language-padding-inline);
    border: 1px solid var(--public-header-control-border);
    border-radius: var(--radius-panel, 14px);
    background: var(--public-header-control-bg);
    color: var(--public-header-control-fg);
    font-size: var(--public-header-control-font-size);
    font-weight: var(--public-header-control-font-weight);
    line-height: var(--public-header-control-line-height);
    box-shadow: 0 2px 5px #4f403312;
  }

  .layout--landing-nav .layout__lang-panel {
    right: 0;
    left: auto;
    min-width: 180px;
  }

  .layout--landing-nav .landing-2-nav__signup {
    display: inline-flex;
    height: var(--public-header-nav-height);
    align-items: center;
    padding: 0 var(--public-header-signup-padding-inline);
    border: 0;
    border-radius: var(--radius-pill, 999px);
    background: var(--public-header-primary-bg);
    color: var(--public-header-primary-fg);
    cursor: pointer;
    font: inherit;
    font-size: var(--public-header-control-font-size);
    font-weight: var(--public-header-control-font-weight);
    line-height: var(--public-header-control-line-height);
    text-decoration: none;
  }

  .layout--landing-nav .landing-2-nav__signup:hover,
  .layout--landing-nav .landing-2-nav__signup:focus-visible,
  .layout--landing-nav .landing-2-nav__signup:active,
  .layout--landing-nav .landing-2-nav__signup:visited {
    color: var(--public-header-primary-fg);
    text-decoration: none;
  }
  .layout--landing-nav .landing-2-nav__help:focus-visible,
  .layout--landing-nav .layout__lang-trigger:focus-visible,
  .layout--landing-nav .landing-2-nav__signup:focus-visible {
    outline: var(--public-header-focus-ring);
    outline-offset: var(--public-header-focus-offset);
  }
  .layout--landing-nav .landing-2-nav__signup:focus-visible {
    outline: var(--public-header-focus-ring);
    outline-offset: var(--public-header-focus-offset);
    color: var(--public-header-primary-fg);
    text-decoration: none;
  }

  .layout--landing-nav .layout__mobile-menu {
    display: none;
  }

  /* Hide legacy actions that the landing surface replaces. Authenticated
     visitors still use the shared Header avatar. */
  .layout--landing-nav .layout__feedback,
  .layout--landing-nav .layout__auth-button,
  .layout--landing-nav .layout__auth-placeholder {
    display: none;
  }
}

/*
 * Mobile: keep the existing hamburger menu but visually align the trigger to
 * the rounded ClaviSay 2.0 surface.  The floating pill is desktop-only.
 *
 * `home-static-layout.css` scopes its mobile rules to `.layout--home`; since
 * Web 2.0 pages flip the wrapper to `.layout--landing-nav`, we must mirror
 * those rules here so the desktop pill row, the Tools dropdown, the language
 * switcher, and the legacy account actions stay hidden at compact widths.
 */
@media (max-width: 1100px) {
  .layout--landing-nav .layout__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 10px;
    padding: 12px 16px;
  }

  .layout--landing-nav .layout__topnav-left {
    flex: 1 1 auto;
    width: auto;
  }

  .layout--landing-nav .landing-2-nav,
  .layout--landing-nav .landing-2-nav__help,
  .layout--landing-nav .landing-2-nav__signup {
    display: none;
  }

  /* Hide desktop actions on mobile — the hamburger menu owns this surface. */
  .layout--landing-nav .layout__nav--actions {
    display: none;
  }

  .layout--landing-nav .layout__mobile-menu {
    display: block;
    position: relative;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill, 999px);
    background: var(--web2-surface-raised);
  }

  .layout--landing-nav .layout__mobile-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 240;
  }

  .layout--landing-nav .layout__mobile-account {
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
  }

  .layout--landing-nav .layout__mobile-account a,
  .layout--landing-nav .layout__mobile-account-button {
    display: flex;
    width: 100%;
    min-height: 42px;
    align-items: center;
    padding: 10px 12px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: var(--fg);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
  }

  .layout--landing-nav .layout__mobile-account a:hover,
  .layout--landing-nav .layout__mobile-account-button:hover,
  .layout--landing-nav .layout__mobile-account a:focus-visible,
  .layout--landing-nav .layout__mobile-account-button:focus-visible {
    background: var(--accent-soft);
    color: var(--accent);
  }

  .layout--landing-nav .layout__mobile-account-placeholder {
    display: block;
    width: 100%;
    min-height: 42px;
    border-radius: 10px;
  }
}

/* Home second-screen fallback: mirror the hydrated lesson-import composition. */
.landing-2-lesson {
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}

.landing-2-lesson .landing-2-section-copy > span {
  display: block;
  margin-bottom: 19px;
  color: #9378ff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

.landing-2-lesson .landing-2-function-title {
  max-width: 780px;
  margin: 0 auto;
  color: #1b1717;
  font-family: var(--font-body);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -0.047em;
  line-height: 1.08;
}

.landing-2-lesson .landing-2-function-title em {
  position: relative;
  display: inline-block;
  padding: 0 8px 1px;
  border-radius: 13px 13px 0 13px;
  background: #c9b8f2;
  color: #1b1717;
  font-style: normal;
}

.landing-2-lesson .landing-2-function-title em::after {
  position: absolute;
  top: -26px;
  right: -74px;
  padding: 6px 9px;
  border-radius: 8px 8px 8px 0;
  background: #765cf5;
  color: #fff;
  content: "Febby";
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.landing-2-lesson .landing-2-function-title em::before {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 7px;
  height: 15px;
  border: 4px solid #765cf5;
  border-top: 0;
  border-left: 0;
  content: "";
}

.landing-2-lesson .landing-2-section-copy > p:not(.landing-2-function-title) {
  max-width: 780px;
  margin: 26px auto 0;
  color: #6a6563;
  font-size: 20px;
  line-height: 1.45;
}

.landing-2-import {
  position: relative;
  margin-top: 51px;
  padding-bottom: 94px;
  text-align: left;
}

.landing-2-import .home-resource-input {
  height: 288px;
  min-height: 288px;
  padding: 34px 24px 30px;
  border: 0;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 52px rgb(79 67 50 / 9%);
}

.landing-2-import .home-resource-input__field {
  min-height: 154px;
}

.landing-2-import .home-resource-input__ghost,
.landing-2-import .home-resource-input__textarea {
  font-size: 20px;
  line-height: 1.45;
}

.landing-2-import .home-resource-input__toolbar {
  min-height: 58px;
}

.landing-2-import .home-resource-input__submit-host {
  max-width: 86px;
  margin-left: auto;
}

.landing-2-import .home-resource-input__submit {
  width: 86px;
  min-width: 86px;
  height: 58px;
  justify-content: center;
  padding: 0;
  border: 0;
  background: #7663f6;
  box-shadow: none;
}

.landing-2-import__sources {
  position: absolute;
  z-index: 2;
  bottom: 8px;
  left: 0;
  display: flex;
  gap: 30px;
  margin: 0;
}

.landing-2-import__sources .landing-2-import__source {
  display: flex;
  width: 116px;
  height: 133px;
  flex: 0 0 116px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0;
  border: 1px solid #e5e3eb;
  border-radius: 16px;
  appearance: none;
  background: #fff;
  box-shadow: 0 6px 32px rgb(77 64 89 / 10%);
  color: #171313;
  cursor: pointer;
  font: inherit;
}

.landing-2-import__source i {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  font-style: normal;
}

.landing-2-import__source i svg {
  display: block;
  width: 100%;
  height: 100%;
}

.landing-2-import__source b {
  color: #201b1a;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 1101px) {
  .landing-2-lesson {
    width: min(100% - 192px, 1404px);
    padding: 52px 0 68px;
  }
}

@media (max-width: 760px) {
  .landing-2-lesson {
    width: min(100% - 28px, 1040px);
    padding: 52px 0;
  }

  .landing-2-lesson .landing-2-function-title {
    font-size: clamp(42px, 10vw, 54px);
    line-height: 1.12;
  }

  .landing-2-import {
    padding-bottom: 112px;
  }

  .landing-2-import .home-resource-input {
    height: 220px;
    min-height: 220px;
    padding: 22px 18px;
  }

  .landing-2-import__sources {
    max-width: 100%;
    gap: 10px;
    overflow-x: auto;
  }

  .landing-2-import__sources .landing-2-import__source {
    width: 92px;
    height: 106px;
    flex-basis: 92px;
  }
}

/*
 * Home capabilities fallback: keep the no-JavaScript/error first paint aligned
 * with the hydrated Landing page instead of exposing full-width raw SVGs.
 */
.landing-2-capabilities {
  width: min(calc(100% - 72px), 1456px);
  margin: 0 auto;
  padding: 72px 0;
  text-align: left;
}

.landing-2-capabilities .landing-2-section-copy h2 {
  margin: 0;
  color: #1d191a;
  font-family: var(--font-body);
  font-size: clamp(40px, 4.17vw, 60px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.landing-2-capabilities__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 72px;
}

.landing-2-capability {
  min-width: 0;
  min-height: 560px;
  padding: 48px 38px;
  overflow: hidden;
  border-radius: 32px;
}

.landing-2-capability--lilac {
  background: #cbbcf6;
}

.landing-2-capability--butter {
  background: #ffeab0;
}

.landing-2-capability--mist {
  background: #dbe8fa;
}

.landing-2-capability__art {
  position: relative;
  display: grid;
  width: 126px;
  height: 92px;
  margin: 8px auto 28px;
  place-items: center;
}

.landing-2-capability__art > svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.landing-2-capability h3 {
  margin: 0;
  color: #1d191a;
  font-family: var(--font-body);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.landing-2-capability p {
  max-width: none;
  margin: 22px 0 0;
  color: #625b5e;
  font-size: 17px;
  line-height: 1.55;
}

.landing-2-capability--summary {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 0.35fr 1fr;
  align-items: center;
  min-height: 240px;
  padding: 34px 40px;
  background: #191617;
  color: #fff;
}

.landing-2-capability--summary h3 {
  color: #fff;
}

.landing-2-capability--summary p {
  color: #c2babc;
}

.landing-2-capability__summary-mark {
  color: #ffda55;
  font-size: 100px;
  font-weight: 600;
  letter-spacing: -0.08em;
}

@media (min-width: 1101px) {
  .landing-2-capabilities {
    width: min(100% - 216px, 1456px);
    padding: 72px 0 58px;
  }

  .landing-2-capabilities .landing-2-section-copy h2 {
    font-size: 60px;
    line-height: 1.28;
  }

  .landing-2-capabilities__grid {
    margin-top: 31px;
  }

  .landing-2-capability {
    min-height: clamp(380px, 34vw, 500px);
    padding: clamp(36px, 4vw, 70px) clamp(24px, 2.5vw, 40px) 34px;
    border-radius: 26px;
  }

  .landing-2-capability__art {
    width: clamp(170px, 18vw, 250px);
    height: auto;
    aspect-ratio: 25 / 23;
    margin: 0 auto clamp(24px, 3vw, 36px);
  }

  .landing-2-capability p {
    max-width: 280px;
    line-height: 1.36;
  }
}

@media (max-width: 900px) {
  .landing-2-capabilities {
    width: min(calc(100% - 28px), 1456px);
    padding: 78px 0;
  }

  .landing-2-capabilities__grid {
    grid-template-columns: 1fr;
  }

  .landing-2-capability h3 {
    font-size: clamp(34px, 8vw, 46px);
  }

  .landing-2-capability--summary {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .landing-2-capabilities {
    padding: 64px 0;
  }

  .landing-2-capability--summary {
    grid-template-columns: 1fr;
  }
}

/* Match the hydrated homepage's Figma semantic type scale during first paint. */
.home-page .landing-2-hero .home-hero__text h1,
.home-page .landing-2-hero__eyebrow {
  font-family:var(--home-font-sans);
  font-size:var(--home-type-display-xl-size);
  font-weight:var(--home-type-display-xl-weight);
  line-height:var(--home-type-display-xl-line);
  letter-spacing:0;
}

.home-page .landing-2-lesson .landing-2-section-copy h2,
.home-page .landing-2-capabilities .landing-2-section-copy h2,
.home-page .landing-2-fluency h2,
.home-page .home-section h2[data-home-heading] {
  font-size:var(--home-type-display-lg-size);
  font-weight:var(--home-type-display-lg-weight);
  line-height:var(--home-type-display-lg-line);
  letter-spacing:0;
}

.home-page .landing-2-lesson .landing-2-function-title {
  font-size:var(--home-type-display-lg-size);
  font-weight:var(--home-type-display-lg-weight);
  line-height:var(--home-type-display-lg-line);
  letter-spacing:0;
}

@media (max-width: 640px) {
  .home-page .landing-2-hero .home-hero__text h1[data-home-heading] { font-size:clamp(26px,8.1vw,32px); }
}

.home-page .landing-2-cta h2,
.home-page .home-footer-cta h2[data-home-heading] {
  font-size:var(--home-type-display-md-size);
  font-weight:var(--home-type-display-md-weight);
  line-height:var(--home-type-display-md-line);
}

.home-page .landing-2-capability h3,
.home-page .home-highlight__text h3,
.home-page .home-hero__tagline strong {
  font-size:var(--home-type-title-md-size);
  font-weight:var(--home-type-title-md-weight);
  line-height:var(--home-type-title-md-line);
}

.home-page .home-hero__tagline,
.home-page .landing-2-section-copy p,
.home-page .landing-2-capability p,
.home-page .landing-2-fluency p,
.home-page .landing-2-cta p,
.home-page .home-section p {
  font-size:var(--home-type-body-lg-size);
  line-height:var(--home-type-body-lg-line);
}

#loop.home-learning-loop {
  display:flex;
  width:min(calc(100% - 72px),1512px);
  margin-inline:auto;
  flex-direction:column;
  align-items:center;
  gap:0;
}

.home-learning-loop__header {
  display:flex;
  width:100%;
  flex-direction:column;
  align-items:center;
  gap:20px;
  text-align:center;
}

.home-page #loop .home-learning-loop__title[data-home-heading] {
  max-width:1512px;
  margin:0;
  color:rgba(0,0,0,.9);
  font-family:var(--home-font-sans);
  font-size:54px;
  font-weight:600;
  line-height:56px;
  letter-spacing:0;
}

.home-learning-loop__intro {
  max-width:900px;
  margin:0 0 20px;
  color:rgba(0,0,0,.6);
  font-family:var(--home-font-sans);
  font-size:18px;
  font-weight:400;
  line-height:26px;
}

.home-learning-loop__flow {
  display:flex;
  width:100%;
  height:308px;
  align-items:center;
  justify-content:center;
}

.home-learning-loop__grid {
  display:grid;
  width:100%;
  height:100%;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

#loop .home-info-card {
  display:flex;
  min-height:308px;
  height:100%;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
  overflow:hidden;
  padding:28px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px 0 rgba(89,77,140,.06);
}

#loop .home-learning-loop__icon-chip {
  display:flex;
  width:48px;
  height:48px;
  flex:0 0 auto;
  align-items:center;
  justify-content:center;
  border-radius:14px;
}

#loop .home-learning-loop__icon-chip img {
  display:block;
  width:22px;
  height:22px;
}

#loop .home-learning-loop__icon-chip--read { background:#ede8ff; }
#loop .home-learning-loop__icon-chip--understand { background:#fff0e5; }
#loop .home-learning-loop__icon-chip--save { background:#e5f2ff; }
#loop .home-learning-loop__icon-chip--review { background:#e5f7ed; }

#loop .home-info-card h3 {
  width:100%;
  margin:0;
  color:rgba(0,0,0,.9);
  font-family:var(--home-font-sans);
  font-size:18px;
  font-weight:600;
  line-height:26px;
  letter-spacing:0;
}

#loop .home-info-card p {
  width:100%;
  margin:0;
  color:rgba(0,0,0,.55);
  font-family:var(--home-font-sans);
  font-size:15px;
  font-weight:400;
  line-height:normal;
}

.home-page #loop .home-info-card::before {
  display:none;
  margin:0;
  content:none;
}

.home-page .landing-2-capabilities {
  display:flex;
  width:min(calc(100% - 72px),1512px);
  flex-direction:column;
  align-items:flex-start;
  gap:20px;
  margin-inline:auto;
  padding:72px 0;
  text-align:center;
}

.landing-2-capabilities__header {
  display:flex;
  width:100%;
  flex-direction:column;
  align-items:center;
  gap:20px;
  overflow:hidden;
}

.home-page .landing-2-capabilities__title[data-home-heading] {
  width:100%;
  max-width:1512px;
  margin:0;
  color:rgba(0,0,0,.9);
  font-family:var(--home-font-sans);
  font-size:54px;
  font-weight:600;
  line-height:56px;
  letter-spacing:0;
}

.landing-2-capabilities__intro {
  width:min(100%,900px);
  max-width:900px;
  margin:0;
  color:rgba(0,0,0,.6);
  font-family:var(--home-font-sans);
  font-size:18px;
  font-weight:400;
  line-height:26px;
}

.landing-2-capabilities__content {
  display:flex;
  width:100%;
  flex-direction:column;
  align-items:center;
  overflow:hidden;
}

.landing-2-capabilities__grid {
  display:grid;
  width:100%;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
  margin-top:0;
}

.landing-2-capability {
  display:flex;
  height:372px;
  min-height:0;
  min-width:0;
  flex-direction:column;
  align-items:flex-start;
  gap:18px;
  overflow:hidden;
  padding:16px 16px 26px;
  border:1px solid rgba(0,0,0,.06);
  border-radius:20px;
  background:#fff;
  box-shadow:0 10px 28px 0 rgba(89,77,140,.06);
  color:inherit;
}

.landing-2-capability__quote-block {
  display:flex;
  width:100%;
  height:192px;
  flex:0 0 auto;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  overflow:hidden;
  padding:26px 22px;
  border-radius:14px;
  background:rgba(149,131,237,.1);
}

.landing-2-capability--butter .landing-2-capability__quote-block { background:rgba(255,221,111,.1); }
.landing-2-capability--mist .landing-2-capability__quote-block { background:rgba(195,220,253,.1); }
.landing-2-capability--apricot .landing-2-capability__quote-block { background:rgba(237,200,131,.1); }

.landing-2-capability__quote-deco {
  display:flex;
  width:100%;
  align-items:center;
  justify-content:space-between;
  overflow:hidden;
}

.landing-2-capability__dash {
  display:flex;
  width:20px;
  flex-direction:column;
  gap:4px;
}

.landing-2-capability__dash::before,
.landing-2-capability__dash::after {
  display:block;
  width:20px;
  height:3px;
  border-radius:2px;
  background:currentColor;
  content:"";
}

.landing-2-capability__quote-mark {
  color:currentColor;
  font-family:var(--home-font-sans);
  font-size:46px;
  font-weight:700;
  line-height:32px;
  white-space:nowrap;
}

.home-page .landing-2-capability__quote-title {
  width:100%;
  margin:0;
  color:currentColor;
  font-family:var(--home-font-sans);
  font-size:18px;
  font-weight:600;
  line-height:26px;
  letter-spacing:0;
  text-align:center;
}

.landing-2-capability--lilac { color:#7366fe; }
.landing-2-capability--butter { color:#ffdd6f; }
.landing-2-capability--mist { color:#6ba9fa; }
.landing-2-capability--apricot { color:#fa9f6b; }

.landing-2-capability__desc-wrap {
  display:flex;
  width:100%;
  flex-direction:column;
  align-items:flex-start;
  overflow:hidden;
  padding:0 8px;
}

.home-page .landing-2-capability__description {
  width:100%;
  max-width:none;
  margin:0;
  color:rgba(0,0,0,.6);
  font-family:var(--home-font-sans);
  font-size:15px;
  font-weight:400;
  line-height:22px;
  text-align:left;
}

@media (max-width:900px) {
  #loop.home-learning-loop { width:min(calc(100% - 28px),1512px); }
  .home-page #loop .home-learning-loop__title[data-home-heading] { font-size:clamp(38px,11vw,48px); line-height:1.08; }
  .home-learning-loop__flow { height:auto; }
  .home-learning-loop__grid { grid-template-columns:1fr; height:auto; }
  #loop .home-info-card { min-height:0; height:auto; }
  .home-page .landing-2-capabilities { width:min(calc(100% - 28px),1512px); gap:20px; padding:64px 0; }
  .home-page .landing-2-capabilities__title[data-home-heading] { font-size:clamp(38px,11vw,48px); line-height:1.08; }
  .landing-2-capabilities__grid { grid-template-columns:1fr; }
  .landing-2-capability { height:auto; min-height:320px; }
}

.home-page .landing-2-capabilities .landing-2-capability__quote-title {
  width:100%;
  margin:0;
  color:currentColor;
  font-family:var(--home-font-sans);
  font-size:18px;
  font-weight:600;
  line-height:26px;
  letter-spacing:0;
  text-align:center;
}

.home-page .landing-2-capabilities .landing-2-capability__description {
  width:100%;
  max-width:none;
  margin:0;
  color:rgba(0,0,0,.6);
  font-family:var(--home-font-sans);
  font-size:15px;
  font-weight:400;
  line-height:22px;
  text-align:left;
}

.home-page #use-cases.home-use-cases { text-align:center; }

#use-cases .home-use-cases__header {
  display:flex;
  width:100%;
  flex-direction:column;
  align-items:center;
  gap:20px;
  margin:0 0 72px;
  text-align:center;
}

.home-page #use-cases .home-use-cases__title[data-home-heading] {
  width:100%;
  margin:0;
  color:rgba(0,0,0,.9);
  font-family:var(--home-font-sans);
  font-size:54px;
  font-weight:600;
  letter-spacing:-.045em;
  line-height:56px;
  text-align:center;
}

#use-cases .home-use-cases__title span { color:#9583ed; }

#use-cases .home-use-cases__intro {
  width:min(100%,900px);
  max-width:900px;
  margin:0;
  color:rgba(0,0,0,.6);
  font-family:var(--home-font-sans);
  font-size:18px;
  font-weight:400;
  line-height:26px;
  text-align:center;
}

#use-cases .home-use-cases__grid {
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  width:100%;
  margin-top:0;
  overflow:hidden;
  padding:10px 0;
  border:1px solid rgba(0,0,0,.08);
  border-radius:20px;
  background:transparent;
  box-shadow:0 12px 16px 0 rgba(89,77,140,.05);
}

#use-cases .home-use-cases__cell {
  display:flex;
  min-width:0;
  align-items:flex-start;
  gap:14px;
  overflow:hidden;
  padding:32px;
}

#use-cases .home-use-cases__cell:nth-child(3n + 2),
#use-cases .home-use-cases__cell:nth-child(3n) { border-left:1px solid rgba(0,0,0,.08); }
#use-cases .home-use-cases__cell:nth-child(n + 4) { border-top:1px solid rgba(0,0,0,.08); }

#use-cases .home-use-cases__icon {
  display:block;
  width:18px;
  height:18px;
  flex:0 0 18px;
  object-fit:contain;
}

#use-cases .home-use-cases__copy {
  min-width:0;
  margin:0;
  color:rgba(0,0,0,.5);
  font-family:var(--home-font-sans);
  font-size:15px;
  font-weight:400;
  line-height:23px;
  overflow-wrap:anywhere;
  text-align:left;
}

#use-cases .home-use-cases__copy strong {
  color:rgba(0,0,0,.88);
  font-weight:600;
}

@media (max-width:900px) {
  .home-page #use-cases .home-use-cases__title[data-home-heading] { font-size:clamp(38px,11vw,48px); line-height:1.08; }
  #use-cases .home-use-cases__header { margin-bottom:40px; }
  #use-cases .home-use-cases__grid { grid-template-columns:1fr; }
  #use-cases .home-use-cases__cell { padding:24px; }
  #use-cases .home-use-cases__cell:nth-child(n) { border-left:0; }
  #use-cases .home-use-cases__cell:nth-child(n + 2) { border-top:1px solid rgba(0,0,0,.08); }
}


.home-page #difference.home-difference { width:min(calc(100% - 72px),1280px); margin-inline:auto; padding:72px 0; }
.home-difference__inner { display:flex; width:100%; align-items:flex-start; gap:72px; }
.home-difference__copy { display:flex; width:460px; min-height:468px; flex:0 0 460px; flex-direction:column; justify-content:center; gap:20px; overflow:hidden; }
.home-page #difference .home-difference__title[data-home-heading] { width:100%; margin:0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:44px; font-weight:600; letter-spacing:-.035em; line-height:50px; text-align:left; }
#difference .home-difference__title span { color:#9583ed; }
#difference .home-difference__intro { width:100%; margin:0; color:rgba(0,0,0,.6); font-family:var(--home-font-sans); font-size:17px; font-weight:400; line-height:28px; text-align:left; }
.home-difference__timeline { display:flex; min-width:0; flex:1 1 0; flex-direction:column; align-items:flex-start; }
.home-difference__row { display:flex; width:100%; align-items:flex-start; gap:18px; overflow:hidden; }
.home-difference__icon-col { display:flex; width:44px; flex:0 0 44px; align-self:stretch; flex-direction:column; align-items:center; gap:6px; overflow:hidden; }
.home-difference__icon { display:flex; width:44px; height:44px; flex:0 0 44px; align-items:center; justify-content:center; overflow:hidden; border-radius:999px; background:#efeff2; }
.home-difference__icon img { display:block; width:20px; height:20px; object-fit:contain; }
.home-difference__aa { color:#6b6b75; font-family:var(--home-font-sans); font-size:16px; font-weight:600; line-height:normal; }
.home-difference__line { width:2px; min-height:65px; flex:1 1 0; border-radius:999px; background:rgba(0,0,0,.12); }
.home-difference__text-block { display:flex; min-width:0; flex:1 1 0; flex-direction:column; align-items:flex-start; gap:6px; overflow:hidden; padding-bottom:34px; }
.home-page #difference .home-difference__text-block h3 { width:100%; margin:0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:18px; font-weight:600; line-height:normal; }
.home-page #difference .home-difference__text-block p { width:100%; margin:0; color:rgba(0,0,0,.55); font-family:var(--home-font-sans); font-size:15px; font-weight:400; line-height:24px; }
.home-difference__row--highlight { overflow:visible; }
.home-difference__icon--brand { background:#9583ed; box-shadow:0 6px 7px 0 rgba(107,92,184,.35); }
.home-difference__icon--brand img { width:30px; height:28px; }
.home-difference__highlight-card { display:flex; min-width:0; flex:1 1 0; flex-direction:column; align-items:flex-start; gap:8px; overflow:hidden; padding:18px 20px; border:1px solid rgba(149,131,237,.22); border-radius:16px; background:rgba(149,131,237,.1); }
.home-page #difference .home-difference__highlight-card h3 { margin:0; background-image:linear-gradient(90deg,rgb(179,147,255) 0%,rgb(215,160,249) 24.265%,rgb(253,150,165) 48.529%,rgb(254,137,70) 72.794%,rgb(245,97,44) 97.059%); background-clip:text; color:transparent; font-family:var(--home-font-sans); font-size:20px; font-weight:600; line-height:30.556px; -webkit-background-clip:text; }
.home-page #difference .home-difference__highlight-card p { min-width:100%; margin:0; color:rgba(0,0,0,.55); font-family:var(--home-font-sans); font-size:15px; font-weight:400; line-height:24px; }
#difference .home-difference__highlight-card em { color:#6c5ce7; font-style:normal; font-weight:500; }
@media (max-width:900px) { .home-page #difference.home-difference { width:min(calc(100% - 28px),1280px); padding:64px 0; } .home-difference__inner { flex-direction:column; gap:40px; } .home-difference__copy { width:100%; min-height:0; flex-basis:auto; } .home-page #difference .home-difference__title[data-home-heading] { font-size:clamp(38px,11vw,44px); line-height:1.08; } .home-difference__text-block { padding-bottom:28px; } }


.home-page #audience.home-audience { width:min(calc(100% - 72px),1280px); margin-inline:auto; padding:72px 0; }
.home-audience__inner { display:flex; align-items:stretch; gap:72px; width:100%; }
.home-audience__left { display:flex; width:460px; flex:0 0 460px; flex-direction:column; align-items:flex-start; justify-content:center; overflow:hidden; }
.home-page #audience .home-audience__title[data-home-heading] { width:100%; margin:0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:44px; font-style:normal; font-weight:600; letter-spacing:0; line-height:50px; text-align:center; word-break:break-word; }
.home-audience__title span { color:#ffdd6f; }
.home-audience__list { display:flex; min-width:0; flex:1 1 0; flex-direction:column; align-items:stretch; justify-content:center; }
.home-audience__row { display:flex; align-items:flex-start; gap:26px; width:100%; overflow:hidden; padding:32px 0; }
.home-audience__row + .home-audience__row { border-top:1px solid rgba(0,0,0,.09); }
.home-audience__chip { display:flex; width:48px; height:48px; flex:0 0 48px; align-items:center; justify-content:center; overflow:hidden; border-radius:999px; background:rgba(255,221,111,.5); }
.home-audience__chip img { display:block; width:21px; height:21px; object-fit:contain; }
.home-audience__copy { display:flex; min-width:0; flex:1 1 0; flex-direction:column; align-items:flex-start; gap:8px; overflow:hidden; padding-top:4px; word-break:break-word; }
.home-page #audience .home-audience__copy h3 { width:100%; margin:0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:18px; font-style:normal; font-weight:600; letter-spacing:0; line-height:26px; }
.home-page #audience .home-audience__copy p { width:100%; margin:0; color:rgba(0,0,0,.6); font-family:var(--home-font-sans); font-size:15px; font-style:normal; font-weight:400; letter-spacing:0; line-height:25px; }
@media (max-width:900px) { .home-page #audience.home-audience { width:min(calc(100% - 28px),1280px); padding:64px 0; } .home-audience__inner { flex-direction:column; gap:32px; } .home-audience__left { width:100%; flex-basis:auto; } .home-page #audience .home-audience__title[data-home-heading] { font-size:clamp(34px,10vw,44px); line-height:1.12; } .home-audience__row { gap:18px; padding:28px 0; } }


.home-page #extension.home-device-panel { width:min(calc(100% - 72px),1280px); margin-inline:auto; padding:72px 0; }
.home-device-panel__inner { display:flex; width:100%; flex-direction:column; align-items:center; gap:40px; overflow:hidden; padding:60px 56px; border-radius:32px; background:rgba(149,131,237,.8); }
.home-device-panel__head { display:flex; width:100%; flex-direction:column; align-items:center; gap:14px; overflow:hidden; color:#fff; text-align:center; white-space:nowrap; }
.home-page #extension .home-device-panel__head h2[data-home-heading] { margin:0; color:#fff; font-family:var(--home-font-sans); font-size:40px; font-weight:600; letter-spacing:0; line-height:48px; text-align:center; }
.home-page #extension .home-device-panel__head p { margin:0; color:rgba(255,255,255,.8); font-family:var(--home-font-sans); font-size:18px; font-weight:400; line-height:27px; }
.home-device-panel__platforms { display:flex; width:100%; align-items:stretch; gap:16px; overflow:hidden; }
.home-device-panel__tile { display:flex; min-width:0; flex:1 1 0; flex-direction:column; align-items:center; justify-content:center; gap:14px; overflow:hidden; padding:26px 20px; border:0; border-radius:16px; background:rgba(255,255,255,.28); color:#fff; cursor:pointer; font:inherit; appearance:none; }
.home-device-panel__tile--active { background:#fff; color:rgba(0,0,0,.9); }
.home-device-panel__tile span { color:currentColor; font-family:var(--home-font-sans); font-size:15px; font-weight:500; line-height:normal; text-align:center; white-space:nowrap; }
.home-device-panel__tile--active span { font-weight:600; }
.home-device-panel__icon-img { display:block; width:30px; height:30px; flex:0 0 30px; object-fit:contain; }
.home-device-panel__tile--web.home-device-panel__tile--active .home-device-panel__icon-img { filter:invert(1); }
.home-device-panel__cta-group { display:flex; flex-direction:column; align-items:center; gap:16px; }
.home-device-panel__cta { display:inline-flex; align-items:center; justify-content:center; gap:8px; overflow:hidden; padding:15px 28px 15px 32px; border:0; border-radius:100px; background:#000; color:#fff; cursor:pointer; font-family:var(--home-font-sans); font-size:16px; font-weight:600; line-height:normal; text-decoration:none; white-space:nowrap; appearance:none; }
.home-page #extension .home-device-panel__cta:hover { background:rgba(0,0,0,.86); color:#fff; transform:translateY(-1px); }
.home-page #extension .home-device-panel__cta:focus-visible { background:rgba(0,0,0,.86); color:#fff; transform:translateY(-1px); }
.home-device-panel__cta img { width:18px; height:18px; flex:0 0 18px; }
.home-page #extension .home-device-panel__cta-group > p { width:min(100%,680px); margin:0; color:rgba(255,255,255,.8); font-family:var(--home-font-sans); font-size:15px; font-weight:400; line-height:22px; text-align:center; }
@media (max-width:900px) { .home-page #extension.home-device-panel { width:min(calc(100% - 28px),1280px); padding:64px 0; } .home-device-panel__inner { padding:44px 18px; border-radius:28px; } .home-device-panel__head { white-space:normal; } .home-page #extension .home-device-panel__head h2[data-home-heading] { font-size:clamp(32px,9vw,40px); line-height:1.12; } .home-device-panel__platforms { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); } }

.home-page #faq.home-faq { width:min(calc(100% - 72px),1024px); margin-inline:auto; padding:72px 0; }
.home-faq__inner { display:flex; width:100%; flex-direction:column; align-items:flex-start; gap:40px; }
.home-faq__intro-header { display:flex; width:100%; flex-direction:column; align-items:flex-start; }
.home-page #faq .home-faq__intro-header h2[data-home-heading] { width:100%; margin:0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:54px; font-style:normal; font-weight:600; letter-spacing:0; line-height:56px; text-align:center; word-break:break-word; }
.home-page #faq .home-faq__list { display:flex; width:100%; flex-direction:column; align-items:flex-start; gap:0; overflow:hidden; margin-top:0; border-top:1px solid rgba(0,0,0,.1); border-radius:0; box-shadow:none; }
.home-page #faq .home-faq__item { width:100%; overflow:hidden; padding:0; border:0; border-bottom:1px solid rgba(0,0,0,.1); border-radius:0; background:transparent; box-shadow:none; }
.home-page #faq .home-faq__item h3 { margin:0; }
.home-page #faq .home-faq__trigger { display:flex; width:100%; align-items:center; justify-content:space-between; gap:28px; overflow:hidden; padding:28px 0; border:0; background:transparent; color:inherit; cursor:pointer; font:inherit; text-align:left; }
.home-page #faq .home-faq__trigger span:first-child { min-width:1px; flex:1 0 0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:18px; font-style:normal; font-weight:600; letter-spacing:0; line-height:26px; word-break:break-word; }
.home-page #faq .home-faq__icon { position:relative; display:block; width:26px; height:26px; flex:0 0 26px; overflow:hidden; }
.home-page #faq .home-faq__icon::before, .home-page #faq .home-faq__icon::after { position:absolute; display:block; border-radius:999px; background:#000; content:""; } .home-page #faq .home-faq__icon::before { top:50%; left:20.83%; right:20.83%; height:2.1667px; transform:translateY(-50%); } .home-page #faq .home-faq__icon::after { top:20.83%; bottom:20.83%; left:50%; width:2.1667px; transform:translateX(-50%); } .home-page #faq .home-faq__icon img { position:absolute; inset:0; display:block; width:26px; height:26px; }
.home-page #faq .home-faq__panel { margin-top:-12px; padding-bottom:28px; }
.home-page #faq .home-faq__panel p { width:min(100%,760px); margin:0; padding:0; color:rgba(0,0,0,.6); font-family:var(--home-font-sans); font-size:15px; font-style:normal; font-weight:400; letter-spacing:0; line-height:24px; word-break:break-word; }
@media (max-width:900px) { .home-page #faq.home-faq { width:min(calc(100% - 28px),1024px); padding:64px 0; } .home-page #faq .home-faq__intro-header h2[data-home-heading] { font-size:clamp(42px,12vw,54px); line-height:1.04; } }

.home-page #learning-behavior.home-learning-behavior { display:flex; width:min(calc(100% - 72px),1512px); min-height:min(720px, calc(100svh - 64px)); margin-inline:auto; flex-direction:column; align-items:flex-start; justify-content:center; gap:48px; padding:72px 0; border-radius:0; background:transparent; }
.home-learning-behavior__header { display:flex; width:100%; flex-direction:column; align-items:center; }
.home-page #learning-behavior .home-learning-behavior__header h2[data-home-heading] { width:100%; margin:0; color:rgba(0,0,0,.9); font-family:var(--home-font-sans); font-size:54px; font-style:normal; font-weight:600; letter-spacing:0; line-height:56px; text-align:center; word-break:break-word; }
.home-learning-behavior__row { display:flex; width:100%; align-items:flex-start; justify-content:safe center; gap:16px; overflow:hidden; }
.home-learning-behavior__card { display:flex; width:250px; height:360px; flex:0 0 250px; flex-direction:column; align-items:flex-start; justify-content:space-between; overflow:hidden; padding:26px; border-radius:20px; background:rgba(149,131,237,.1); }
.home-learning-behavior__card--expanded { width:482px; flex-basis:482px; padding:32px; background:#e7ddf6; }
.home-learning-behavior__top { display:flex; width:100%; flex-direction:column; align-items:flex-start; gap:10px; overflow:hidden; word-break:break-word; }
.home-page #learning-behavior .home-learning-behavior__top h3 { width:100%; min-width:100%; margin:0; color:rgba(0,0,0,.8); font-family:var(--home-font-sans); font-size:18px; font-style:normal; font-weight:600; letter-spacing:0; line-height:24px; }
.home-page #learning-behavior .home-learning-behavior__card--expanded .home-learning-behavior__top h3 { font-size:30px; line-height:36px; }
.home-page #learning-behavior .home-learning-behavior__top span { color:rgba(0,0,0,.4); font-family:var(--home-font-sans); font-size:13px; font-style:normal; font-weight:500; letter-spacing:.52px; line-height:normal; white-space:nowrap; }
.home-page #learning-behavior .home-learning-behavior__card--expanded .home-learning-behavior__top span { color:#9583ed; font-size:16px; font-weight:600; letter-spacing:.64px; }
.home-page #learning-behavior .home-learning-behavior__card p { width:100%; margin:0; color:rgba(0,0,0,.6); font-family:var(--home-font-sans); font-size:15px; font-style:normal; font-weight:400; letter-spacing:0; line-height:23px; }
.home-learning-behavior__plus { position:relative; display:flex; width:42px; height:42px; flex:0 0 42px; align-items:center; justify-content:center; overflow:hidden; border:1px solid rgba(0,0,0,.1); border-radius:999px; }
.home-learning-behavior__plus::before, .home-learning-behavior__plus::after { position:absolute; display:block; border-radius:999px; background:rgba(0,0,0,.8); content:""; }
.home-learning-behavior__plus::before { width:14px; height:1.6px; }
.home-learning-behavior__plus::after { width:1.6px; height:14px; }
@media (max-width:1100px) { .home-learning-behavior__row { overflow-x:auto; padding-bottom:4px; } }
@media (max-width:900px) { .home-page #learning-behavior.home-learning-behavior { width:min(calc(100% - 28px),1512px); gap:36px; padding:64px 0; } .home-page #learning-behavior .home-learning-behavior__header h2[data-home-heading] { font-size:clamp(38px,11vw,54px); line-height:1.06; } }
.home-learning-behavior__card { border:0; appearance:none; color:inherit; cursor:pointer; font:inherit; text-align:left; }
.home-learning-behavior__card:not(.home-learning-behavior__card--expanded):hover { background:rgba(149,131,237,.16); }
.home-learning-behavior__card:focus-visible { outline:2px solid rgba(149,131,237,.7); outline-offset:4px; }
.home-page #learning-behavior .home-learning-behavior__top .home-learning-behavior__card-title { display:block; width:100%; min-width:100%; margin:0; color:rgba(0,0,0,.8); font-family:var(--home-font-sans); font-size:18px; font-style:normal; font-weight:600; letter-spacing:0; line-height:24px; white-space:normal; }
.home-page #learning-behavior .home-learning-behavior__card--expanded .home-learning-behavior__top .home-learning-behavior__card-title { font-size:30px; line-height:36px; }
.home-page #learning-behavior .home-learning-behavior__top .home-learning-behavior__number { display:block; color:rgba(0,0,0,.4); font-family:var(--home-font-sans); font-size:13px; font-style:normal; font-weight:500; letter-spacing:.52px; line-height:normal; white-space:nowrap; }
.home-page #learning-behavior .home-learning-behavior__card--expanded .home-learning-behavior__top .home-learning-behavior__number { color:#9583ed; font-size:16px; font-weight:600; letter-spacing:.64px; }
.home-page #learning-behavior .home-learning-behavior__body { display:block; width:100%; margin:0; color:rgba(0,0,0,.6); font-family:var(--home-font-sans); font-size:15px; font-style:normal; font-weight:400; letter-spacing:0; line-height:23px; }

@media (max-width: 640px) {
  :root {
    --mobile-glass-header-background: rgb(253 249 243 / 28%);
  }

  @supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    :root {
      --mobile-glass-header-background: rgb(253 249 243 / 78%);
    }
  }

  .layout__header {
    height: 68px;
    min-height: 68px;
    padding: 8px 16px;
    background: transparent;
  }

  .layout__header.layout__header--scrolled {
    border-bottom: 1px solid rgb(93 75 64 / 10%);
    background: var(--mobile-glass-header-background);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 20px rgb(39 31 24 / 10%);
  }

  .layout__header .layout__brand {
    min-height: 44px;
  }

  .layout__header .layout__mobile-menu-trigger {
    min-width: 44px;
    min-height: 44px;
  }
}
