@font-face {
  font-family: "Wanted Sans";
  src: url("/assets/WantedSansVariable.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 400 1000;
  font-display: swap;
}

:root {
  --primary: #6552d9;
  --primary-dark: #5140b8;
  --acid: #e7ff52;
  --ink: #1f1e23;
  --text: #3f3d44;
  --muted: #737078;
  --background: #f7f7f8;
  --surface: #ffffff;
  --subtle: #efeff1;
  --border: #dedde2;
  --soft-violet: #eeebfb;
  --ivory: #f7f3e9;
  --ivory-border: #e7dfd0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  font-family: "Wanted Sans", Pretendard, "Apple SD Gothic Neo", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img,
svg {
  display: block;
}

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

.section-shell {
  width: min(1100px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(222, 221, 226, 0.82);
  background: rgba(247, 247, 248, 0.92);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  width: min(1100px, calc(100% - 48px));
  height: 70px;
  margin-inline: auto;
  align-items: center;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand {
  gap: 10px;
  font-size: 20px;
}

.header-nav {
  display: flex;
  margin-left: auto;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.header-nav a {
  transition: color 160ms ease;
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--ink);
}

.header-status {
  margin-left: 28px;
  padding-left: 14px;
  border-left: 1px solid var(--border);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
}

.hero {
  position: relative;
  display: grid;
  width: min(1040px, calc(100% - 48px));
  min-height: min(546px, calc(100svh - 118px));
  margin-block: 24px 0;
  padding: 30px 30px 30px 38px;
  overflow: hidden;
  border: 1px solid rgba(101, 82, 217, 0.16);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 255, 255, 0.72) 0, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 12% 82%, rgba(231, 255, 82, 0.18) 0, rgba(231, 255, 82, 0) 28%),
    linear-gradient(148deg, #f8f5ff 0%, #e9e1ff 48%, #d4c6ff 100%);
  grid-template-areas: "intro glance";
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  column-gap: 30px;
}

.hero::before {
  position: absolute;
  top: -205px;
  left: 39%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(101, 82, 217, 0.12);
  content: "";
  opacity: 0.66;
  pointer-events: none;
}

.hero-intro {
  position: relative;
  z-index: 1;
  align-self: center;
  grid-area: intro;
}

.hero-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: hero-rise 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-app-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(101, 82, 217, 0.17);
}

.hero-identity strong {
  display: block;
  font-size: 23px;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.eyebrow,
.section-kicker,
.summary-label {
  margin: 0;
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.hero-intro > .eyebrow {
  display: none;
}

.hero-intro > .eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 3px rgba(231, 255, 82, 0.22);
  content: "";
}

.hero h1 {
  max-width: 690px;
  margin: 30px 0 0;
  font-size: clamp(42px, 3.85vw, 49px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.045em;
  text-wrap: balance;
  word-break: keep-all;
  animation: hero-rise 460ms 40ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.hero-description {
  display: grid;
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.012em;
  word-break: keep-all;
  gap: 3px;
  animation: hero-rise 460ms 70ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-description > span,
.hero-description > strong {
  display: block;
}

.hero-description > strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 981px) {
  .hero-description {
    font-size: 18px;
    font-weight: 600;
  }

  .hero-description > strong {
    font-size: 20px;
  }
}

.at-a-glance {
  position: relative;
  align-self: center;
  z-index: 1;
  min-height: 486px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  grid-area: glance;
  box-shadow: none;
  isolation: isolate;
  animation: hero-card-in 460ms 120ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.at-a-glance::before {
  display: none;
}

.at-a-glance::after {
  display: none;
}

.preview-arrival-toast,
.preview-choice-toast {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 156px;
  min-height: 48px;
  padding: 9px 11px;
  border: 1px solid rgba(101, 82, 217, 0.13);
  border-radius: 15px;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 30px rgba(63, 45, 151, 0.15);
  white-space: nowrap;
  pointer-events: none;
}

.preview-arrival-toast {
  top: 14px;
  left: 10px;
  animation: preview-toast-enter 520ms 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preview-choice-toast {
  right: 12px;
  bottom: 56px;
  animation: preview-choice-enter 520ms 1.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preview-arrival-toast i,
.preview-choice-toast i {
  display: inline-grid;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--primary-dark);
  background: var(--soft-violet);
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.preview-choice-toast i {
  color: #2a2730;
  background: var(--acid);
}

.preview-arrival-toast > span,
.preview-choice-toast > span {
  display: grid;
  gap: 2px;
}

.preview-arrival-toast b,
.preview-choice-toast b {
  font-size: 10px;
}

.preview-arrival-toast small,
.preview-choice-toast small {
  color: var(--muted);
  font-size: 8px;
}

.phone-stage {
  position: absolute;
  inset: 16px 18px 14px;
  display: flex;
  padding-left: 18px;
  align-items: flex-end;
  justify-content: center;
  perspective: 950px;
  z-index: 2;
}

.preview-phone {
  --phone-entry-rotate-x: 7deg;
  --phone-entry-rotate-y: -5deg;
  --phone-entry-rotate-z: -0.45deg;
  --phone-rotate-x: 4.5deg;
  --phone-rotate-y: -2.5deg;
  --phone-rotate-z: -0.15deg;
  position: relative;
  width: 244px;
  height: 456px;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 40px;
  background: linear-gradient(160deg, #302c35, #211f25);
  box-shadow: 0 30px 64px rgba(55, 38, 132, 0.3);
  transform: rotateY(var(--phone-rotate-y)) rotateX(var(--phone-rotate-x)) rotateZ(var(--phone-rotate-z));
  transform-origin: 50% 52%;
  transform-style: preserve-3d;
  will-change: transform;
  animation: phone-3d-enter 720ms 180ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preview-phone-island {
  position: absolute;
  z-index: 5;
  top: 14px;
  left: 50%;
  width: 68px;
  height: 18px;
  border-radius: 999px;
  background: #242129;
  transform: translate3d(-50%, 0, 14px);
}

.preview-phone-screen {
  position: relative;
  height: 100%;
  padding: 27px 15px 56px;
  overflow: hidden;
  border-radius: 33px;
  background: #f8f8fa;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
  transform: translateZ(5px);
}

.preview-app-header,
.preview-profile-row,
.preview-first-message,
.preview-tabs {
  display: flex;
  align-items: center;
}

.preview-app-header {
  min-height: 34px;
  justify-content: space-between;
}

.preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
}

.preview-brand img {
  width: 19px;
  height: 19px;
}

.preview-page-copy {
  margin-top: 12px;
}

.preview-page-copy p {
  margin: 0 0 6px;
  color: var(--primary);
  font-size: 10px;
  font-weight: 700;
}

.preview-page-copy strong {
  display: block;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.23;
  letter-spacing: -0.04em;
}

.preview-application-card {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: 0 13px 32px rgba(40, 35, 63, 0.09);
  animation: preview-card-enter 620ms 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preview-profile-row {
  min-width: 0;
  gap: 8px;
}

.preview-avatar {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  flex: 0 0 auto;
  background: #e7e6e9;
}

.preview-avatar::before,
.preview-avatar::after {
  position: absolute;
  left: 50%;
  background: #a4a1a8;
  content: "";
  transform: translateX(-50%);
}

.preview-avatar::before {
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.preview-avatar::after {
  bottom: 8px;
  width: 21px;
  height: 11px;
  border-radius: 12px 12px 5px 5px;
}

.preview-profile-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  align-items: center;
}

.preview-profile-copy b {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-verification {
  padding: 5px 6px;
  border-radius: 999px;
  flex: 0 0 auto;
  color: #287a5d;
  background: #e7f6ef;
  font-size: 8px;
  font-weight: 700;
  white-space: nowrap;
}

.preview-action {
  position: relative;
  display: flex;
  min-height: 36px;
  margin-top: 14px;
  padding-inline: 12px;
  overflow: hidden;
  border-radius: 11px;
  align-items: center;
  justify-content: space-between;
  color: #ffffff;
  background: var(--primary);
  font-size: 10px;
  font-weight: 700;
  animation: preview-button-pulse 900ms 2.05s ease-in-out 1 both;
}

.preview-action span {
  font-size: 14px;
  font-weight: 500;
}

.preview-first-message {
  margin-top: 10px;
  padding: 10px 11px;
  border: 1px solid var(--border);
  border-radius: 15px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.88);
  animation: preview-message-enter 540ms 1.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.preview-first-message > i {
  position: relative;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  flex: 0 0 auto;
  background: var(--soft-violet);
}

.preview-first-message > i::before {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 12px;
  height: 9px;
  border: 1.5px solid var(--primary);
  border-radius: 5px;
  content: "";
}

.preview-first-message > i::after {
  position: absolute;
  top: 15px;
  left: 10px;
  width: 5px;
  height: 5px;
  border-bottom: 1.5px solid var(--primary);
  transform: rotate(-32deg);
  content: "";
}

.preview-first-message > span {
  display: grid;
  gap: 2px;
}

.preview-first-message small {
  color: var(--muted);
  font-size: 8px;
}

.preview-first-message b {
  font-size: 9px;
}

.preview-tabs {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 50px;
  padding: 0 12px;
  justify-content: space-between;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.97);
  font-size: 8px;
}

.preview-tabs .active {
  color: var(--primary);
  font-weight: 700;
}

.platform-entry {
  display: block;
  margin-top: 22px;
  padding-top: 0;
  border-top: 0;
  grid-area: platform;
  scroll-margin-top: 92px;
  animation: hero-rise 460ms 130ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.section-heading h2,
.pricing-heading h2 {
  margin: 10px 0 0;
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  line-height: 1.23;
  letter-spacing: -0.04em;
  text-wrap: balance;
  word-break: keep-all;
}

.platform-actions {
  display: grid;
  width: 100%;
  margin-top: 0;
  grid-template-columns: 1fr;
  justify-items: start;
  gap: 10px;
}

.launch-benefits {
  display: grid;
  width: 100%;
  margin-bottom: 14px;
  padding-inline: 7px;
  color: var(--text);
  grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr);
  align-items: center;
  gap: 0 14px;
}

.launch-benefits-title {
  margin: 0 0 7px;
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: 0.02em;
  grid-column: 1 / -1;
  text-align: center;
}

.launch-benefit {
  display: grid;
  min-width: 0;
  justify-items: center;
  align-content: center;
  gap: 2px;
  text-align: center;
}

.launch-benefit span {
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.launch-benefit small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.launch-benefit strong {
  color: var(--primary-dark);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.launch-benefit-divider {
  width: 1px;
  height: 38px;
  background: rgba(101, 82, 217, 0.2);
}

.store-status-list {
  display: grid;
  width: 100%;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.store-status {
  display: flex;
  min-height: 68px;
  padding: 13px 18px;
  border-radius: 17px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  align-items: center;
  gap: 12px;
  color: #ffffff;
  background: #5944ca;
  box-shadow: 0 10px 24px rgba(61, 42, 142, 0.18);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-status-pending {
  color: #ffffff;
  background: linear-gradient(145deg, #604bd2 0%, #4e38ba 100%);
}

.store-status svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: #ffffff;
}

.store-status-pending svg {
  fill: rgba(255, 255, 255, 0.84);
}

.store-status span {
  display: grid;
  gap: 3px;
}

.store-status b {
  font-size: 16px;
  font-weight: 700;
}

.store-status small {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
}

.store-status-link {
  transition: border-color 160ms ease, background 160ms ease;
}

.store-status-link:hover,
.store-status-link:focus-visible {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
  box-shadow: 0 14px 28px rgba(61, 42, 142, 0.24);
}

.web-start {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 42px;
  margin-top: 0;
  padding: 8px 12px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  color: var(--text);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 8px 22px rgba(68, 47, 145, 0.1);
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.web-start:hover,
.web-start:focus-visible {
  border-color: #d9cfbb;
  color: var(--ink);
  background: #f1eadc;
  box-shadow: 0 12px 26px rgba(68, 47, 145, 0.15);
}

.web-start > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  letter-spacing: -0.02em;
  text-align: center;
}

.web-start small {
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 600;
}

.web-start > span > b {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.web-start > b {
  position: absolute;
  right: 12px;
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.web-start:hover > b,
.web-start:focus-visible > b {
  transform: translateX(2px);
}

.release-note {
  display: none;
}

.apk-install-details {
  margin-top: 12px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.apk-install-details summary {
  padding-block: 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
}

.apk-install-content {
  padding-bottom: 16px;
}

.apk-install-content > p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.apk-install-content dl {
  display: grid;
  margin: 0;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.apk-install-content dl > div {
  min-width: 0;
}

.apk-install-content .apk-hash {
  grid-column: 1 / -1;
}

.apk-install-content dt {
  color: var(--muted);
  font-size: 9px;
}

.apk-install-content dd {
  margin: 4px 0 0;
  font-size: 11px;
}

.apk-install-content code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 9px;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.guide-section {
  padding-block: 88px;
  background: #f5f4f7;
  scroll-margin-top: 70px;
}

.section-heading {
  max-width: 760px;
}

.section-heading .section-kicker {
  padding: 0;
}

.section-heading h2 {
  margin-top: 10px;
}

.role-guide {
  display: grid;
  margin-top: 40px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.role-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.teacher-card {
  border-color: #cfc8f0;
}

.role-card-heading {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.role-card-heading > span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.role-card-heading strong {
  padding: 9px 12px;
  border-radius: 9px;
  color: var(--primary-dark);
  background: var(--soft-violet);
  font-size: 14px;
  line-height: 1.3;
}

.role-card ol {
  margin: 26px 0 0;
  padding: 0;
  border-top: 1px solid var(--border);
  counter-reset: role-step;
  list-style: none;
}

.role-card li {
  position: relative;
  min-height: 88px;
  padding: 20px 0 18px 42px;
  border-bottom: 1px solid var(--border);
  counter-increment: role-step;
}

.role-card li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.role-card li::before {
  position: absolute;
  top: 21px;
  left: 0;
  color: var(--primary);
  content: "0" counter(role-step);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.role-card li b {
  font-size: 15px;
  font-weight: 600;
}

.role-card li p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  word-break: keep-all;
}

.role-guide-head,
.role-guide-row {
  display: grid;
  grid-template-columns: 160px repeat(2, minmax(0, 1fr));
  gap: 0;
}

.role-guide-head {
  min-height: 64px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.role-guide-head b {
  font-size: 15px;
  font-weight: 700;
}

.role-guide-head b:last-child,
.role-guide-row p:last-child {
  padding-left: 40px;
  border-left: 1px solid var(--border);
}

.role-guide-row {
  min-height: 92px;
  border-bottom: 1px solid var(--border);
  align-items: stretch;
}

.role-guide-row > span,
.role-guide-row > p {
  display: flex;
  margin: 0;
  align-items: center;
}

.role-guide-row > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.role-guide-row > p {
  padding-right: 40px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
  word-break: keep-all;
}

.role-guide-row strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.pricing-section {
  display: grid;
  margin-bottom: 96px;
  padding: 52px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: var(--surface);
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  align-items: start;
  gap: 64px;
  scroll-margin-top: 92px;
}

.pricing-heading .commission-note {
  max-width: 390px;
  margin: 22px 0 0;
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  word-break: keep-all;
}

@media (min-width: 981px) {
  .pricing-heading .commission-note {
    font-size: 15px;
  }
}

.price-list {
  border-top: 1px solid var(--ink);
}

.price-row {
  display: grid;
  min-height: 68px;
  border-bottom: 1px solid var(--border);
  grid-template-columns: 1.08fr 0.92fr 1fr;
  align-items: center;
  gap: 16px;
}

.price-row > span,
.price-row > b {
  font-size: 13px;
}

.price-row > :last-child {
  display: flex;
  align-self: stretch;
  padding-left: 16px;
  align-items: center;
  background: rgba(101, 82, 217, 0.045);
}

.price-row > span:first-child {
  color: var(--muted);
}

.price-row > b {
  font-weight: 600;
}

.price-head {
  min-height: 52px;
}

.price-head span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
}

.price-highlight {
  color: var(--primary-dark);
}

.price-note {
  margin: 0;
  padding: 15px 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.site-footer {
  padding: 36px 0 44px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  color: var(--muted);
  font-size: 12px;
}

.footer-identity,
.footer-meta,
.footer-business {
  display: grid;
}

.footer-identity {
  max-width: 650px;
  gap: 15px;
}

.footer-business {
  gap: 5px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.footer-business a {
  color: var(--text);
  overflow-wrap: anywhere;
}

.footer-meta {
  min-width: max-content;
  gap: 15px;
  justify-items: end;
  text-align: right;
}

.footer-brand {
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
}

.footer-brand img {
  width: 26px;
  height: 26px;
}

.footer-brand-row,
.footer-instagram {
  display: inline-flex;
  align-items: center;
}

.footer-brand-row {
  flex-wrap: wrap;
  gap: 10px;
}

.footer-instagram {
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  gap: 7px;
  color: var(--muted);
  background: var(--surface);
  font-size: 11px;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.footer-instagram svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.footer-instagram:hover,
.footer-instagram:focus-visible {
  border-color: rgba(101, 82, 217, 0.38);
  color: var(--primary-dark);
  background: var(--soft-violet);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-links a,
.footer-business a {
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-business a:hover,
.footer-business a:focus-visible {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(101, 82, 217, 0.22);
  outline-offset: 3px;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-text-reveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-card-in {
  from {
    opacity: 0;
    transform: translateX(26px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes phone-3d-enter {
  from {
    opacity: 0;
    transform: rotateY(var(--phone-entry-rotate-y)) rotateX(var(--phone-entry-rotate-x)) rotateZ(var(--phone-entry-rotate-z)) translate3d(0, 14px, -14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: rotateY(var(--phone-rotate-y)) rotateX(var(--phone-rotate-x)) rotateZ(var(--phone-rotate-z)) translate3d(0, 0, 0) scale(1);
  }
}

@keyframes preview-toast-enter {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preview-choice-enter {
  from {
    opacity: 0;
    transform: translateX(9px) translateY(6px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@keyframes preview-card-enter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes preview-message-enter {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preview-button-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(101, 82, 217, 0);
  }
  8% {
    transform: scale(1.025);
    box-shadow: 0 8px 18px rgba(101, 82, 217, 0.2);
  }
  16% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(101, 82, 217, 0);
  }
}

@keyframes platform-button-highlight {
  0% {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  72% {
    opacity: 1;
    transform: translateY(-1px) scale(1.006);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: 0;
    margin-block: 24px 0;
    padding: 48px;
    grid-template-areas:
      "intro"
      "glance";
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .hero-intro {
    max-width: 760px;
  }

  .at-a-glance {
    align-self: stretch;
    min-height: 520px;
  }

  .pricing-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading {
    max-width: 100%;
  }

  .pricing-heading {
    max-width: 620px;
  }
}

@media (max-width: 720px) {
  .site-header {
    display: none;
  }

  .section-shell,
  .header-inner {
    width: min(100% - 32px, 1180px);
  }

  .header-inner {
    height: 58px;
  }

  .brand {
    gap: 8px;
    font-size: 18px;
  }

  .brand img {
    width: 32px;
    height: 32px;
  }

  .header-nav,
  .header-status {
    display: none;
  }

  .hero {
    width: 100%;
    height: 100svh;
    min-height: 620px;
    max-height: none;
    margin-block: 0;
    padding:
      max(28px, env(safe-area-inset-top))
      max(22px, env(safe-area-inset-right))
      max(24px, env(safe-area-inset-bottom))
      max(22px, env(safe-area-inset-left));
    border: 0;
    border-radius: 0;
    background:
      radial-gradient(circle at 88% 9%, rgba(255, 255, 255, 0.86) 0, rgba(255, 255, 255, 0) 32%),
      radial-gradient(circle at 8% 84%, rgba(231, 255, 82, 0.18) 0, rgba(231, 255, 82, 0) 28%),
      linear-gradient(158deg, #faf8ff 0%, #eee9ff 46%, #d9ceff 100%);
    display: block;
    overflow-anchor: none;
  }

  .hero::before {
    top: -126px;
    right: -88px;
    left: auto;
    width: 250px;
    height: 250px;
    opacity: 0.5;
  }

  .hero-identity {
    position: relative;
    z-index: 1;
    justify-content: center;
    gap: 13px;
    grid-column: 1;
    grid-row: 1;
    animation: hero-text-reveal 480ms 20ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-intro {
    position: relative;
    z-index: 1;
    display: grid;
    width: 100%;
    max-width: 480px;
    height: 100%;
    margin-inline: auto;
    grid-template-rows: auto minmax(0, 1fr) auto;
    align-items: stretch;
  }

  .hero-app-icon {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(101, 82, 217, 0.2);
  }

  .hero-identity strong {
    font-size: 28px;
  }

  .hero-intro > .eyebrow {
    display: none;
  }

  .hero-copy {
    width: 100%;
    margin: auto 0;
    padding-block: 28px;
    grid-column: 1;
    grid-row: 2;
    text-align: center;
  }

  .hero h1 {
    margin: 0;
    font-size: clamp(42px, 11.5vw, 47px);
    line-height: 1.1;
    letter-spacing: -0.055em;
    animation: hero-text-reveal 520ms 90ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-description {
    max-width: 380px;
    margin: 22px auto 0;
    justify-items: center;
    font-size: 19px;
    line-height: 1.48;
    animation: hero-text-reveal 520ms 160ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .hero-description > strong {
    margin-top: 2px;
    font-size: 23px;
    line-height: 1.38;
  }

  .at-a-glance {
    display: none;
  }

  .platform-entry {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 0 0 64px;
    align-self: end;
    grid-area: auto;
    grid-column: 1;
    grid-row: 3;
    animation: none;
  }

  .platform-actions {
    display: grid;
    width: 100%;
    margin-top: 0;
  }

  .launch-benefits {
    margin-bottom: 24px;
    animation: hero-text-reveal 480ms 230ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .launch-benefits-title {
    font-size: 12px;
  }

  .launch-benefit span {
    font-size: 12px;
  }

  .launch-benefit strong {
    font-size: 18px;
  }

  .launch-benefit small {
    font-size: 11px;
  }

  .store-status-list .store-status:first-child {
    animation: platform-button-highlight 620ms 320ms ease-out 1 both;
  }

  .store-status-list .store-status:nth-child(2) {
    animation: platform-button-highlight 620ms 400ms ease-out 1 both;
  }

  .web-start {
    animation: platform-button-highlight 620ms 480ms ease-out 1 both;
  }

  .section-heading h2,
  .pricing-heading h2 {
    font-size: 31px;
    line-height: 1.28;
  }

  .store-status {
    min-height: 62px;
    padding: 12px 14px;
  }

  .web-start {
    min-height: 46px;
    margin-top: 0;
    padding: 8px 12px;
  }

  .release-note {
    display: none;
  }

  .guide-section {
    padding-block: 64px;
  }

  .section-heading {
    display: block;
  }

  .section-heading .section-kicker {
    padding: 0;
  }

  .section-heading h2 {
    margin-top: 10px;
  }

  .role-guide {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .role-card {
    padding: 22px;
    border-radius: 20px;
  }

  .role-guide-head {
    grid-template-columns: 70px repeat(2, minmax(0, 1fr));
  }

  .role-guide-head b {
    font-size: 12px;
  }

  .role-guide-head b:last-child,
  .role-guide-row p:last-child {
    padding-left: 14px;
  }

  .role-guide-row {
    min-height: 108px;
    grid-template-columns: 70px repeat(2, minmax(0, 1fr));
  }

  .role-guide-row > p {
    padding-right: 14px;
    font-size: 12px;
  }

  .pricing-section {
    margin-bottom: 64px;
    padding: 26px 16px;
    border-radius: 24px;
    gap: 36px;
  }

  .price-list {
    min-width: 0;
  }

  .price-row {
    min-height: 64px;
    grid-template-columns: minmax(62px, 0.82fr) minmax(68px, 0.9fr) minmax(0, 1.28fr);
    gap: 4px;
  }

  .price-row > span,
  .price-row > b {
    min-width: 0;
    font-size: 11px;
    line-height: 1.35;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .price-row > :last-child {
    padding: 0 6px 0 10px;
  }

  .price-head span {
    font-size: 9px;
  }

  .footer-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .footer-meta {
    min-width: 0;
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 430px) {
  .hero {
    padding-top: max(24px, env(safe-area-inset-top));
  }

  .hero h1 {
    font-size: clamp(40px, 11.3vw, 46px);
  }

  .store-status-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-status {
    min-height: 62px;
    padding: 10px 11px;
    border-radius: 14px;
    gap: 9px;
  }

  .store-status svg {
    width: 26px;
    height: 26px;
  }

  .store-status b {
    font-size: 15px;
  }

  .store-status small {
    font-size: 12px;
  }

  .role-guide-head,
  .role-guide-row {
    grid-template-columns: 48px repeat(2, minmax(0, 1fr));
  }

  .role-guide-head b:last-child,
  .role-guide-row p:last-child {
    padding-left: 10px;
  }

  .role-guide-row > p {
    padding-right: 10px;
    font-size: 11px;
  }

  .role-guide-row > span {
    font-size: 10px;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: clamp(42px, 11.5vw, 47px);
  }

  .section-heading h2,
  .pricing-heading h2 {
    font-size: 29px;
  }

}

@media (max-width: 360px) {
  .store-status {
    padding: 9px 8px;
    gap: 7px;
  }

  .store-status svg {
    width: 22px;
    height: 22px;
  }

  .store-status b {
    font-size: 13px;
  }

  .store-status small {
    font-size: 10px;
    white-space: nowrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-identity,
  .hero h1,
  .hero-description,
  .platform-entry,
  .at-a-glance,
  .preview-phone,
  .preview-arrival-toast,
  .preview-application-card,
  .preview-first-message,
  .preview-choice-toast,
  .preview-action {
    opacity: 1;
    animation: none !important;
  }

  .store-status,
  .web-start {
    opacity: 1;
    animation: none !important;
    filter: none;
  }
}

/* Keep the learner gift-card plan available in markup, but hide it until reactivated. */
.launch-benefits {
  grid-template-columns: minmax(0, 1fr);
}

.launch-benefits > .launch-benefit:first-of-type,
.launch-benefits > .launch-benefit-divider {
  display: none;
}
