:root {
  --navy-950: #071d32;
  --navy-900: #0a2f51;
  --navy-800: #0f4c81;
  --navy-700: #1464a5;
  --blue-600: #098cff;
  --blue-500: #28a9ff;
  --cyan-400: #63dcf8;
  --cyan-200: #baf3ff;
  --sky-100: #eaf5ff;
  --sky-50: #f5faff;
  --ink: #10243a;
  --muted: #607286;
  --line: #dce7f1;
  --white: #fff;
  --orange: #ffb340;
  --red: #ec4d5d;
  --shadow-sm: 0 8px 28px rgba(15, 76, 129, .08);
  --shadow-md: 0 24px 70px rgba(8, 44, 76, .15);
  --shadow-phone: 0 38px 90px rgba(5, 34, 60, .26), 0 10px 28px rgba(5, 34, 60, .15);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1200px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
summary {
  font: inherit;
}

button {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 800;
  letter-spacing: -.035em;
}

h1,
h2,
h3 {
  line-height: 1.18;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
}

.oauth-notice {
  position: relative;
  z-index: 110;
  color: #092f50;
  background: #dff8ff;
  border-bottom: 1px solid #b4eaf7;
}

.oauth-notice__inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-block: 10px;
  font-size: 14px;
  text-align: center;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: height .25s ease, background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, .94);
  border-bottom-color: rgba(15, 76, 129, .1);
  box-shadow: 0 8px 30px rgba(9, 47, 81, .05);
}

.oauth-notice:not([hidden]) + .site-header {
  top: 45px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.055em;
}

.brand img {
  width: 34px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
  color: #334d65;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue-600);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}

.site-nav > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 20px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(15, 76, 129, .2);
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.nav-cta:hover {
  background: var(--navy-700);
  box-shadow: 0 12px 26px rgba(15, 76, 129, .25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

.hero {
  position: relative;
  min-height: 880px;
  padding: 164px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(99, 220, 248, .22), transparent 26%),
    radial-gradient(circle at 94% 62%, rgba(9, 140, 255, .14), transparent 30%),
    linear-gradient(180deg, #f9fcff 0%, #f2f8ff 100%);
}

.hero::after {
  position: absolute;
  bottom: -120px;
  left: 50%;
  width: 920px;
  height: 260px;
  content: "";
  background: rgba(255, 255, 255, .85);
  border-radius: 50%;
  filter: blur(30px);
  transform: translateX(-50%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-orb--one {
  top: 120px;
  right: -120px;
  width: 390px;
  height: 390px;
  background: linear-gradient(145deg, rgba(99, 220, 248, .24), rgba(9, 140, 255, .05));
}

.hero-orb--two {
  bottom: 120px;
  left: -130px;
  width: 290px;
  height: 290px;
  border: 56px solid rgba(15, 76, 129, .035);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(410px, .97fr);
  gap: 48px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  padding-bottom: 8px;
}

.eyebrow,
.section-label {
  margin-bottom: 20px;
  color: var(--navy-700);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px 7px 9px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(15, 76, 129, .1);
  border-radius: 999px;
  box-shadow: 0 5px 20px rgba(15, 76, 129, .05);
  letter-spacing: 0;
  text-transform: none;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(99, 220, 248, .25);
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(42px, 4.7vw, 68px);
  letter-spacing: -.065em;
}

.hero h1 em {
  color: var(--navy-800);
  font-style: normal;
  background: linear-gradient(110deg, var(--navy-800), var(--blue-600));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 635px;
  margin-bottom: 32px;
  color: #526a80;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.75;
  letter-spacing: -.02em;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.store-actions--hero {
  justify-content: flex-start;
}

.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 61px;
  gap: 11px;
  padding: 11px 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(15, 76, 129, .14);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.store-button:hover {
  border-color: rgba(15, 76, 129, .25);
  box-shadow: 0 14px 34px rgba(15, 76, 129, .14);
  transform: translateY(-3px);
}

.store-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-button span {
  display: flex;
  flex-direction: column;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
}

.store-button small {
  margin-bottom: 3px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  opacity: .68;
}

.store-button--primary {
  color: var(--white);
  background: var(--navy-800);
  border-color: var(--navy-800);
  box-shadow: 0 14px 34px rgba(15, 76, 129, .24);
}

.store-button--primary:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
}

.store-note {
  margin: 12px 0 30px 4px;
  color: var(--muted);
  font-size: 12px;
}

.hero-stats {
  display: flex;
  max-width: 600px;
  margin-bottom: 6px;
}

.hero-stats > div {
  min-width: 0;
  padding: 0 28px;
  border-left: 1px solid rgba(15, 76, 129, .14);
}

.hero-stats > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-stats dt {
  margin-bottom: 1px;
  color: var(--navy-800);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.045em;
}

.hero-stats dd {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.stats-date {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

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

.hero-visual::before {
  position: absolute;
  width: min(92%, 550px);
  aspect-ratio: 1;
  content: "";
  background: linear-gradient(145deg, rgba(255, 255, 255, .92), rgba(201, 233, 255, .66));
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 50%;
  box-shadow: inset 0 0 80px rgba(255, 255, 255, .75), 0 40px 100px rgba(15, 76, 129, .1);
}

.visual-grid {
  position: absolute;
  inset: 7% 0 auto 8%;
  width: 160px;
  height: 160px;
  opacity: .2;
  background-image: radial-gradient(var(--navy-800) 1.2px, transparent 1.2px);
  background-size: 15px 15px;
}

.phone {
  position: relative;
  overflow: hidden;
  background: #0b2135;
  border: 8px solid #0c2942;
  border-radius: 45px;
  box-shadow: var(--shadow-phone);
}

.phone::after {
  position: absolute;
  inset: 0;
  content: "";
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 36px;
  pointer-events: none;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  width: 76px;
  height: 20px;
  background: #0c2942;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.phone--hero {
  z-index: 2;
  width: 318px;
  aspect-ratio: 600 / 1298;
  transform: rotate(2.3deg);
  animation: hero-phone-in .8s cubic-bezier(.2, .75, .25, 1) both;
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 17px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .95);
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(12, 59, 99, .16);
  backdrop-filter: blur(12px);
}

.floating-card small,
.floating-card strong {
  display: block;
  line-height: 1.35;
}

.floating-card small {
  color: #7b8e9f;
  font-size: 11px;
}

.floating-card strong {
  font-size: 14px;
}

.floating-card--streak {
  top: 128px;
  right: 0;
  animation: float-y 4.4s ease-in-out infinite;
}

.floating-card--daily {
  bottom: 92px;
  left: -8px;
  animation: float-y 4.8s .4s ease-in-out infinite;
}

.floating-card__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #fff5de;
  border-radius: 12px;
  font-size: 19px;
}

.progress-ring {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--navy-800);
  background: conic-gradient(var(--blue-600) 0 78%, #dfebf5 78% 100%);
  border: 6px solid transparent;
  border-radius: 50%;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  box-shadow: inset 0 0 0 20px white;
}

@keyframes hero-phone-in {
  from { opacity: 0; transform: translateY(30px) rotate(4deg); }
  to { opacity: 1; transform: translateY(0) rotate(2.3deg); }
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.exam-strip {
  position: relative;
  z-index: 4;
  background: var(--white);
  border-bottom: 1px solid #edf2f6;
}

.exam-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  gap: 28px;
  color: #5f7182;
  font-size: 14px;
  font-weight: 750;
}

.exam-strip i {
  width: 4px;
  height: 4px;
  background: var(--cyan-400);
  border-radius: 50%;
}

.section {
  padding: 128px 0;
}

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

.section-heading--center {
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2,
.feature-copy h2,
.download-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.06em;
}

.section-heading > p:last-child,
.feature-copy > p,
.download-panel > p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.section--problem {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 22%, rgba(40, 169, 255, .17), transparent 25%),
    linear-gradient(135deg, var(--navy-950), #0b375e 65%, #0d466f);
}

.section--problem::after {
  position: absolute;
  right: -80px;
  bottom: -170px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(99, 220, 248, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(99, 220, 248, .035), 0 0 0 90px rgba(99, 220, 248, .025);
}

.problem-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
  gap: 100px;
  align-items: center;
}

.section-heading--light .section-label,
.feature-copy--light .section-label {
  color: var(--cyan-400);
}

.section-heading--light > p:last-child,
.feature-copy--light > p {
  color: rgba(230, 242, 255, .68);
}

.benefit-list {
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.benefit-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 12px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.benefit-number {
  padding-top: 2px;
  color: var(--cyan-400);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.benefit-card h3 {
  margin-bottom: 8px;
  font-size: 21px;
}

.benefit-card p {
  margin-bottom: 0;
  color: rgba(230, 242, 255, .67);
  font-size: 15px;
}

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

.exam-card {
  grid-column: span 2;
}

.exam-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.exam-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.exam-card {
  position: relative;
  min-height: 400px;
  padding: 34px;
  overflow: hidden;
  background: var(--sky-50);
  border: 1px solid #e2edf6;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 0 rgba(15, 76, 129, .02);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.exam-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 170px;
  height: 170px;
  content: "";
  background: rgba(255, 255, 255, .58);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, .2);
}

.exam-card:hover {
  border-color: rgba(15, 76, 129, .16);
  box-shadow: 0 24px 55px rgba(15, 76, 129, .11);
  transform: translateY(-7px);
}

.exam-card--bar { background: linear-gradient(145deg, #f4f8ff, #edf6ff); }
.exam-card--police { background: linear-gradient(145deg, #f3fbff, #e9f8ff); }
.exam-card--civil { background: linear-gradient(145deg, #f7f9ff, #eff1ff); }
.exam-card--court { background: linear-gradient(145deg, #f7fbff, #eaf4fb); }
.exam-card--broker { background: linear-gradient(145deg, #f5fbf7, #eaf7ef); }

.exam-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 42px;
}

.exam-icon {
  display: grid;
  width: 62px;
  height: 62px;
  color: var(--navy-800);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(15, 76, 129, .08);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 76, 129, .08);
  place-items: center;
}

.exam-icon svg {
  width: 33px;
  height: 33px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.exam-range {
  padding: 6px 10px;
  color: var(--navy-700);
  background: rgba(255, 255, 255, .74);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.exam-card h3 {
  margin-bottom: 14px;
  font-size: 28px;
}

.exam-card > p {
  margin-bottom: 25px;
  color: #607488;
  font-size: 15px;
}

.exam-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.exam-card li {
  padding: 6px 10px;
  color: #3f617f;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(15, 76, 129, .08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.source-note {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.source-note a {
  display: inline-block;
  margin-left: 6px;
  color: var(--navy-700);
  font-weight: 800;
}

.source-note a:hover,
.faq-grid .section-heading a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section--soft {
  background: var(--sky-50);
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(460px, 1.12fr);
  gap: 100px;
  align-items: center;
}

.feature-row--reverse {
  grid-template-columns: minmax(460px, 1.12fr) minmax(0, .88fr);
}

.feature-row--reverse .feature-copy {
  grid-column: 2;
}

.feature-row--reverse .phone-stage {
  grid-row: 1;
  grid-column: 1;
}

.feature-copy {
  max-width: 510px;
}

.check-list {
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 0;
  color: #36536c;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 700;
}

.check-list span {
  display: grid;
  width: 24px;
  height: 24px;
  color: var(--navy-800);
  background: #dbf4ff;
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
}

.phone-stage {
  position: relative;
  min-height: 690px;
}

.phone-stage::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 490px;
  height: 490px;
  content: "";
  background: linear-gradient(145deg, #fff, #ddecfa);
  border-radius: 50%;
  box-shadow: inset 0 0 70px rgba(255, 255, 255, .8);
  transform: translate(-50%, -50%);
}

.phone-stage--reverse::before {
  background: linear-gradient(145deg, #eefaff, #deefff);
}

.phone-stage .phone {
  position: absolute;
  width: 278px;
  aspect-ratio: 600 / 1298;
  border-width: 7px;
  border-radius: 39px;
}

.phone-stage .phone--back {
  top: 0;
  left: 35px;
  z-index: 1;
  transform: rotate(-7deg);
}

.phone-stage .phone--front {
  right: 22px;
  bottom: 0;
  z-index: 2;
  transform: rotate(5deg);
}

.phone-stage--reverse .phone--back {
  left: auto;
  right: 35px;
  transform: rotate(7deg);
}

.phone-stage--reverse .phone--front {
  right: auto;
  left: 22px;
  transform: rotate(-5deg);
}

.section--navy {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(9, 140, 255, .11), transparent 40%),
    var(--navy-950);
}

.section--navy::before {
  position: absolute;
  top: -260px;
  right: -260px;
  width: 700px;
  height: 700px;
  content: "";
  border: 1px solid rgba(99, 220, 248, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(99, 220, 248, .025), 0 0 0 120px rgba(99, 220, 248, .018);
}

.challenge-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}

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

.challenge-visual::before {
  position: absolute;
  width: 450px;
  height: 450px;
  content: "";
  background: radial-gradient(circle, rgba(40, 169, 255, .24), rgba(40, 169, 255, .04) 62%, transparent 63%);
  border: 1px solid rgba(99, 220, 248, .12);
  border-radius: 50%;
}

.phone--challenge {
  width: 300px;
  aspect-ratio: 600 / 1298;
  border-color: #152f47;
  transform: rotate(-2deg);
}

.rank-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 145px;
  padding: 11px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.rank-card > span {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--navy-800);
  background: var(--sky-100);
  border-radius: 11px;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
}

.rank-card strong {
  font-size: 13px;
}

.rank-card--one {
  top: 110px;
  right: 0;
}

.rank-card--two {
  bottom: 100px;
  left: 0;
}

.feature-copy--light .check-list li {
  color: rgba(255, 255, 255, .8);
  border-bottom-color: rgba(255, 255, 255, .12);
}

.challenge-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 36px;
}

.challenge-points > div {
  padding: 18px 14px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
}

.challenge-points strong,
.challenge-points span {
  display: block;
}

.challenge-points strong {
  margin-bottom: 5px;
  color: var(--cyan-400);
  font-size: 20px;
}

.challenge-points span {
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  letter-spacing: -.02em;
}

.section--tools {
  background: linear-gradient(180deg, var(--white), #fbfdff);
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.tool-card {
  min-height: 292px;
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(15, 76, 129, .045);
  transition: transform .22s ease, box-shadow .22s ease;
}

.tool-card:hover {
  box-shadow: 0 20px 50px rgba(15, 76, 129, .1);
  transform: translateY(-5px);
}

.tool-card__icon {
  position: relative;
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: var(--navy-800);
  background: var(--sky-100);
  border-radius: 17px;
}

.tool-card__icon::before,
.tool-card__icon::after,
.tool-card__icon i::before,
.tool-card__icon i::after {
  position: absolute;
  content: "";
}

.tool-card__icon--calendar::before {
  inset: 15px 12px 11px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.tool-card__icon--calendar::after {
  top: 23px;
  left: 14px;
  width: 26px;
  height: 2px;
  background: currentColor;
}

.tool-card__icon--calendar i::before,
.tool-card__icon--calendar i::after {
  top: 12px;
  width: 2px;
  height: 8px;
  background: currentColor;
}

.tool-card__icon--calendar i::before { left: 20px; }
.tool-card__icon--calendar i::after { right: 20px; }

.tool-card__icon--note::before {
  inset: 12px 14px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.tool-card__icon--note::after {
  top: 20px;
  left: 20px;
  width: 14px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor, 0 14px 0 currentColor;
}

.tool-card__icon--target::before {
  inset: 11px;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow: inset 0 0 0 6px var(--sky-100), inset 0 0 0 8px currentColor;
}

.tool-card__icon--target::after {
  top: 25px;
  left: 25px;
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.tool-card__icon--growth::before {
  right: 12px;
  bottom: 13px;
  left: 12px;
  height: 2px;
  background: currentColor;
}

.tool-card__icon--growth::after {
  top: 15px;
  left: 15px;
  width: 23px;
  height: 17px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: skewY(-32deg);
}

.tool-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.tool-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.section--rating {
  padding-top: 0;
}

.rating-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px 52px;
  background: linear-gradient(110deg, #edf8ff, #f5fbff 55%, #e7f5ff);
  border: 1px solid #dcecf8;
  border-radius: 28px;
}

.rating-panel .section-label {
  margin-bottom: 10px;
}

.rating-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(25px, 3vw, 36px);
}

.rating-panel h2 span {
  color: var(--blue-600);
}

.rating-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.rating-links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  min-width: 215px;
}

.rating-links a {
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 800;
}

.rating-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .67fr 1.33fr;
  gap: 100px;
  align-items: start;
}

.faq-grid .section-heading {
  position: sticky;
  top: 120px;
}

.faq-grid .section-heading a {
  color: var(--navy-700);
  font-weight: 700;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 2px;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  content: "";
  background: var(--navy-800);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform .2s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  color: var(--navy-800);
}

.faq-list details > p {
  padding: 0 52px 27px 2px;
  margin-bottom: 0;
  color: #667a8d;
  font-size: 15px;
  line-height: 1.8;
}

.section--download {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0d416e, var(--navy-800) 55%, #136ca8);
}

.section--download::before {
  position: absolute;
  top: -130px;
  left: -80px;
  width: 420px;
  height: 420px;
  content: "";
  background: rgba(99, 220, 248, .1);
  border-radius: 50%;
  filter: blur(2px);
}

.download-orb {
  position: absolute;
  right: -130px;
  bottom: -250px;
  width: 610px;
  height: 610px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .025), 0 0 0 140px rgba(255, 255, 255, .018);
}

.download-panel {
  position: relative;
  z-index: 1;
  text-align: center;
}

.download-panel > img {
  width: 65px;
  height: auto;
  margin: 0 auto 20px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .15));
}

.download-panel .section-label {
  margin-bottom: 12px;
  color: var(--cyan-200);
}

.download-panel > p:not(.section-label) {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .7);
}

.store-button--light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.site-footer {
  padding: 72px 0 26px;
  color: #aec0d0;
  background: #061725;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  padding-bottom: 56px;
}

.brand--footer {
  margin-bottom: 18px;
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 330px;
  margin-bottom: 0;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: -.01em;
}

.footer-links a {
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

.mobile-download {
  display: none;
}

.subpage {
  background: #f8fbfe;
}

.subpage-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy-700);
  font-size: 14px;
  font-weight: 800;
}

.subpage-main {
  min-height: 70vh;
  padding-top: var(--header-height);
}

.subpage-hero {
  padding: 100px 0 74px;
  background:
    radial-gradient(circle at 86% 20%, rgba(99, 220, 248, .22), transparent 25%),
    linear-gradient(180deg, #f8fcff, #eef7ff);
  border-bottom: 1px solid #e1edf6;
}

.subpage-hero__inner {
  max-width: 790px;
}

.subpage-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(40px, 5vw, 62px);
  letter-spacing: -.065em;
}

.subpage-hero p:not(.section-label) {
  max-width: 690px;
  margin-bottom: 17px;
  color: var(--muted);
  font-size: 18px;
}

.subpage-hero time {
  color: var(--muted);
  font-size: 12px;
}

.source-content {
  max-width: 900px;
  padding-block: 80px 120px;
}

.source-card {
  padding: 34px 36px;
  margin-bottom: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(15, 76, 129, .045);
}

.source-card__heading {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 17px;
}

.source-card__heading > span {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: var(--navy-700);
  background: var(--sky-100);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.source-card h2 {
  margin: 0;
  font-size: 22px;
}

.source-card > p {
  margin-bottom: 20px;
  color: #63788b;
  font-size: 15px;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-links a {
  padding: 8px 12px;
  color: var(--navy-700);
  background: #f5f9fd;
  border: 1px solid #dce8f1;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.source-links a:hover {
  background: var(--sky-100);
  border-color: #c7deef;
}

.source-notice {
  padding: 40px 36px;
  margin-top: 48px;
  color: rgba(255, 255, 255, .78);
  background: var(--navy-950);
  border-radius: 24px;
}

.source-notice h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 24px;
}

.source-notice ul {
  padding-left: 21px;
  margin-bottom: 24px;
}

.source-notice li {
  margin-bottom: 9px;
  font-size: 14px;
}

.source-contact {
  display: inline-flex;
  gap: 8px;
  color: var(--cyan-400);
  font-size: 13px;
  font-weight: 800;
}

.site-footer--compact {
  padding-top: 24px;
}

.site-footer--compact .footer-bottom a {
  color: #d6e3ed;
}

.error-page {
  display: grid;
  min-height: 100vh;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 15%, rgba(99, 220, 248, .24), transparent 28%),
    linear-gradient(180deg, #f8fcff, #edf7ff);
  place-items: center;
  text-align: center;
}

.error-page main {
  max-width: 580px;
}

.error-page img {
  width: 58px;
  height: auto;
  margin: 0 auto 22px;
}

.error-page .section-label {
  margin-bottom: 12px;
}

.error-page h1 {
  margin-bottom: 16px;
  font-size: clamp(34px, 6vw, 52px);
}

.error-page p:not(.section-label) {
  margin-bottom: 28px;
  color: var(--muted);
}

.error-page a {
  display: inline-flex;
  gap: 8px;
  padding: 12px 19px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .72fr);
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.3vw, 60px);
  }

  .hero-visual {
    min-height: 610px;
  }

  .phone--hero {
    width: 288px;
  }

  .floating-card--streak { right: -12px; }
  .floating-card--daily { left: -12px; }

  .problem-grid,
  .feature-row,
  .challenge-grid,
  .faq-grid {
    gap: 64px;
  }

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

  .exam-card,
  .exam-card:nth-child(4) {
    grid-column: auto;
  }

  .exam-card:nth-child(5) {
    grid-column: 1 / -1;
    width: calc((100% - 20px) / 2);
    justify-self: center;
  }

  .phone-stage .phone {
    width: 250px;
  }

  .phone-stage {
    min-height: 625px;
  }

  .phone-stage::before {
    width: 420px;
    height: 420px;
  }
}

@media (max-width: 900px) {
  :root { --header-height: 68px; }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    display: flex;
    width: min(86vw, 370px);
    height: 100dvh;
    padding: 105px 28px 32px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    background: rgba(255, 255, 255, .98);
    box-shadow: -20px 0 60px rgba(7, 29, 50, .16);
    visibility: hidden;
    pointer-events: none;
    transform: translateX(110%);
    transition: transform .25s ease, visibility 0s linear .25s;
  }

  .site-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .site-nav > a:not(.nav-cta) {
    padding: 14px 8px;
    font-size: 17px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 12px;
    padding: 14px 18px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 90px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    margin-inline: auto;
  }

  .hero-description {
    margin-inline: auto;
  }

  .store-actions--hero {
    justify-content: center;
  }

  .store-note {
    margin-left: 0;
  }

  .hero-stats {
    justify-content: center;
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-visual::before {
    width: 520px;
  }

  .phone--hero {
    width: 300px;
  }

  .floating-card--streak { right: 12%; }
  .floating-card--daily { left: 12%; }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .section-heading--light {
    max-width: 680px;
  }

  .exam-card {
    min-height: 0;
  }

  .feature-row,
  .feature-row--reverse {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .feature-row--reverse .feature-copy,
  .feature-row--reverse .phone-stage {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-copy {
    max-width: 680px;
  }

  .phone-stage {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .challenge-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .challenge-visual {
    grid-row: 2;
    width: min(100%, 560px);
    margin-inline: auto;
  }

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

  .rating-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .rating-links {
    align-items: flex-start;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .faq-grid .section-heading {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 70px;
    word-break: keep-all;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .exam-cards {
    grid-template-columns: 1fr;
  }

  .exam-card:nth-child(5) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .exam-strip__inner {
    min-height: 0;
    padding-block: 12px;
    flex-wrap: wrap;
    gap: 5px 14px;
    line-height: 1.4;
  }

  .exam-strip i {
    display: none;
  }

  .oauth-notice__inner {
    align-items: center;
    flex-direction: column;
    gap: 1px;
    padding-block: 8px;
    line-height: 1.35;
  }

  .oauth-notice:not([hidden]) + .site-header {
    top: 56px;
  }

  .brand {
    font-size: 20px;
  }

  .brand img {
    width: 30px;
  }

  .hero {
    padding: 112px 0 74px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 11px;
  }

  .hero h1 {
    margin-bottom: 21px;
    max-width: 100%;
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.23;
    overflow-wrap: anywhere;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.72;
  }

  .store-actions--hero {
    display: grid;
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
  }

  .store-button svg {
    width: 21px;
    height: 21px;
  }

  .store-button span {
    font-size: 13px;
  }

  .store-button small {
    font-size: 9px;
  }

  .store-note {
    margin-bottom: 26px;
    font-size: 10px;
  }

  .hero-stats {
    width: 100%;
  }

  .hero-stats > div {
    flex: 1 1 0;
    padding: 0 10px;
  }

  .hero-stats dt {
    font-size: 19px;
  }

  .hero-stats dd {
    font-size: 9px;
    white-space: normal;
  }

  .hero-visual {
    min-height: 540px;
  }

  .hero-visual::before {
    width: min(120%, 430px);
  }

  .phone--hero {
    width: 258px;
    border-radius: 38px;
  }

  .floating-card {
    padding: 10px 12px;
    gap: 8px;
    border-radius: 14px;
  }

  .floating-card--streak {
    top: 76px;
    right: -4px;
  }

  .floating-card--daily {
    bottom: 60px;
    left: -4px;
  }

  .floating-card__icon,
  .progress-ring {
    width: 31px;
    height: 31px;
  }

  .floating-card small { font-size: 9px; }
  .floating-card strong { font-size: 11px; }

  .exam-strip__inner {
    min-height: 66px;
    gap: 10px;
    font-size: 11px;
  }

  .exam-strip i {
    width: 3px;
    height: 3px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading--center {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .feature-copy h2,
  .download-panel h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .section-heading > p:last-child,
  .feature-copy > p,
  .download-panel > p {
    font-size: 15px;
  }

  .problem-grid {
    gap: 32px;
  }

  .benefit-card {
    grid-template-columns: 40px 1fr;
    padding: 23px 0;
  }

  .benefit-card h3 {
    font-size: 18px;
  }

  .benefit-card p {
    font-size: 13px;
  }

  .exam-card {
    padding: 27px 24px;
    border-radius: 20px;
  }

  .exam-card__top {
    margin-bottom: 30px;
  }

  .exam-card h3 {
    font-size: 24px;
  }

  .source-note {
    line-height: 1.75;
  }

  .source-note a {
    display: block;
    margin: 4px 0 0;
  }

  .feature-row,
  .feature-row--reverse {
    gap: 42px;
  }

  .phone-stage {
    min-height: 520px;
  }

  .phone-stage::before {
    width: 340px;
    height: 340px;
  }

  .phone-stage .phone {
    width: 206px;
    border-width: 6px;
    border-radius: 32px;
  }

  .phone-stage .phone--back {
    left: 12px;
  }

  .phone-stage .phone--front {
    right: 8px;
  }

  .phone-stage--reverse .phone--back {
    right: 12px;
    left: auto;
  }

  .phone-stage--reverse .phone--front {
    right: auto;
    left: 8px;
  }

  .challenge-visual {
    min-height: 560px;
  }

  .challenge-visual::before {
    width: 350px;
    height: 350px;
  }

  .phone--challenge {
    width: 250px;
  }

  .rank-card {
    min-width: 125px;
    padding: 9px 11px;
  }

  .rank-card--one { top: 88px; right: -3px; }
  .rank-card--two { bottom: 80px; left: -3px; }

  .challenge-points {
    gap: 6px;
  }

  .challenge-points > div {
    padding: 14px 9px;
  }

  .challenge-points strong { font-size: 17px; }
  .challenge-points span { font-size: 9px; }

  .tool-cards {
    grid-template-columns: 1fr;
  }

  .tool-card {
    min-height: 0;
  }

  .rating-panel {
    padding: 34px 25px;
    border-radius: 22px;
  }

  .faq-list summary {
    padding: 21px 44px 21px 0;
    font-size: 15px;
  }

  .faq-list details > p {
    padding: 0 36px 23px 0;
    font-size: 13px;
  }

  .section--download {
    padding: 82px 0;
  }

  .download-panel .store-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    padding-bottom: 42px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 35px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .mobile-download {
    position: fixed;
    z-index: 90;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 56px;
    padding: 8px 8px 8px 17px;
    color: var(--white);
    background: rgba(7, 29, 50, .94);
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: 17px;
    box-shadow: 0 14px 40px rgba(4, 25, 44, .3);
    backdrop-filter: blur(14px);
  }

  .mobile-download span {
    font-size: 13px;
    font-weight: 800;
  }

  .mobile-download a {
    padding: 9px 15px;
    color: var(--navy-950);
    background: var(--cyan-400);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 900;
  }

  .subpage-hero {
    padding: 70px 0 54px;
  }

  .subpage-hero p:not(.section-label) {
    font-size: 16px;
  }

  .source-content {
    padding-block: 54px 80px;
  }

  .source-card {
    padding: 26px 22px;
  }

  .source-card__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .source-card h2 {
    font-size: 20px;
  }

  .source-notice {
    padding: 30px 24px;
  }

  .subpage { padding-bottom: 0; }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 33px;
  }

  .hero-stats dd {
    font-size: 8px;
  }

  .phone-stage {
    min-height: 480px;
  }

  .phone-stage .phone {
    width: 188px;
  }

  .download-panel .store-actions,
  .store-actions--hero {
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
