:root {
  color-scheme: light;
  --navy: #0f2342;
  --blue: #2563eb;
  --blue2: #174fc6;
  --green: #10b981;
  --purple: #7c3aed;
  --amber: #f59e0b;
  --muted: #667085;
  --bg: #f7f9fd;
  --surface: #fff;
  --border: #e3e8f1;
  --shadow: 0 18px 55px rgba(15, 35, 66, 0.1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body {
  margin: 0;
  background: linear-gradient(145deg, #f8faff, #fff 46%, #f3f8ff);
  color: var(--navy);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-underline-offset: 3px;
}
.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(227, 232, 241, 0.8);
  background: rgba(250, 252, 255, 0.88);
  backdrop-filter: blur(18px);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.brand img {
  display: block;
  width: 176px;
  height: auto;
}
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  border-radius: 14px;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 9px 22px rgba(37, 99, 235, 0.28);
}
.brand-mark svg {
  width: 26px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-links .nav-cta {
  padding: 10px 15px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 76px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero-orb.one {
  top: 90px;
  right: -130px;
  width: 430px;
  height: 430px;
  background: rgba(37, 99, 235, 0.09);
}
.hero-orb.two {
  bottom: -100px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: rgba(16, 185, 129, 0.08);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 74px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}
h1 {
  max-width: 720px;
  margin: 12px 0 18px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.gradient-text {
  background: linear-gradient(100deg, var(--blue), #0d9c77);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 21px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}
.button.primary,
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.25);
}
.button.secondary {
  border: 1px solid var(--border);
  background: #fff;
}
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}
.trust-row b {
  color: var(--green);
}
.device-stage {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.phone {
  position: relative;
  width: 335px;
  height: 660px;
  overflow: hidden;
  border: 9px solid #101827;
  border-radius: 45px;
  background: #f7f9fd;
  color: #10203b;
  box-shadow: 0 38px 85px rgba(15, 35, 66, 0.26);
  font-size: 12px;
}
.home-screen {
  padding: 29px 16px 55px;
}
.notch {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 86px;
  height: 20px;
  border-radius: 20px;
  background: #101827;
  transform: translateX(-50%);
}
.status {
  display: flex;
  justify-content: space-between;
  margin: 0 3px 20px;
  font-size: 9px;
}
.status span {
  letter-spacing: 1px;
}
.home-head {
  display: flex;
  justify-content: space-between;
}
.home-head h3 {
  margin: 0;
  font-size: 19px;
}
.home-head p {
  margin: 3px 0 16px;
  color: var(--muted);
  font-size: 10px;
}
.goal,
.home-cards > div {
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 7px 20px rgba(15, 35, 66, 0.06);
}
.goal {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 12px;
  border-radius: 15px;
}
.goal small,
.goal strong {
  display: block;
}
.goal strong {
  font-size: 10px;
}
.goal em {
  display: block;
  height: 6px;
  margin-top: 7px;
  border-radius: 9px;
  background: #e5eaf2;
}
.goal u {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 9px;
  background: var(--green);
}
.app-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 11px;
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
}
.blue {
  background: #dce9ff;
  color: var(--blue);
}
.purple {
  background: #eee3ff;
  color: var(--purple);
}
.green {
  background: #d9f7e8;
  color: #07966a;
}
.amber {
  background: #ffedc5;
  color: #b46b00;
}
.glass {
  background: rgba(255, 255, 255, 0.17);
  color: #fff;
}
.quiz-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  padding: 15px;
  border-radius: 15px;
  background: linear-gradient(140deg, #2d75ff, #0d58e8);
  color: #fff;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}
.quiz-cta div {
  flex: 1;
}
.quiz-cta strong,
.quiz-cta small {
  display: block;
}
.quiz-cta strong {
  font-size: 15px;
}
.quiz-cta b {
  font-size: 23px;
}
.home-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: 9px;
}
.home-cards > div {
  min-height: 105px;
  padding: 11px;
  border-radius: 14px;
}
.home-cards strong,
.home-cards small {
  display: block;
}
.home-cards strong {
  margin-top: 8px;
  font-size: 11px;
}
.home-cards small {
  color: var(--muted);
  font-size: 9px;
}
.hint {
  display: flex;
  gap: 9px;
  margin-top: 10px;
  padding: 11px;
  border-radius: 13px;
  background: #fff2d7;
  color: #27364c;
}
.hint p {
  margin: 0;
  font-size: 9px;
}
.hint p b {
  display: block;
}
.tabbar {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  height: 48px;
  align-items: center;
  justify-content: space-around;
  border-top: 1px solid var(--border);
  background: #fff;
}
.tabbar span,
.tabbar b {
  display: grid;
  place-items: center;
  color: #64748b;
  font-size: 15px;
}
.tabbar b {
  color: var(--blue);
}
.tabbar small {
  font-size: 7px;
}
.section {
  padding: 88px 0;
}
.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading h2,
.showcase-copy h2,
.tools-grid h2,
.download-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(32px, 5vw, 50px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.section-heading p,
.showcase-copy p,
.tools-grid > div > p,
.download-card > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.steps article {
  position: relative;
  padding: 29px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background: #fff;
  box-shadow: var(--shadow);
}
.number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #dce3ee;
  font-size: 27px;
  font-weight: 900;
}
.step-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: #fff;
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}
.step-icon.blue {
  background: var(--blue);
}
.step-icon.purple {
  background: var(--purple);
}
.step-icon.green {
  background: var(--green);
}
.steps h3 {
  margin: 20px 0 6px;
}
.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.showcase {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.25), transparent 35%),
    linear-gradient(145deg, #061326, #0b2445);
  color: #fff;
}
.showcase-copy {
  max-width: 760px;
  margin-bottom: 50px;
}
.showcase-copy p {
  color: #b9c8dc;
}
.eyebrow.dark {
  color: #72a5ff;
}
.phone-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: start;
}
.phone.mini {
  width: 100%;
  max-width: 315px;
  height: 610px;
  margin: auto;
  padding: 27px 13px 18px;
  border-width: 7px;
  border-radius: 38px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}
.mini .status {
  margin-bottom: 14px;
}
.screen-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 16px;
}
.screen-title span {
  font-size: 19px;
}
.screen-title span:last-child {
  text-align: right;
}
.quiz-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
}
.quiz-progress {
  height: 6px;
  border-radius: 9px;
  background: #e5eaf2;
}
.quiz-progress i {
  display: block;
  width: 40%;
  height: 100%;
  border-radius: 9px;
  background: var(--blue);
}
.quiz-screen h4 {
  margin: 18px 0 12px;
}
.road-sign,
.small-sign {
  display: grid;
  place-items: center;
  margin: 10px auto 17px;
  border: 8px solid #f04444;
  background: #fff;
  color: #111827;
  font-size: 50px;
  font-weight: 900;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.road-sign {
  width: 135px;
  height: 125px;
  padding-top: 28px;
}
.small-sign {
  float: left;
  width: 78px;
  height: 70px;
  margin: 0 14px 7px 0;
  padding-top: 16px;
  border-width: 6px;
  font-size: 27px;
}
.answer {
  display: flex;
  min-height: 45px;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  padding: 7px 10px;
  border: 1px solid #dfe5ee;
  border-radius: 11px;
  background: #fff;
  font-size: 10px;
}
.answer i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #e4e9f1;
  font-style: normal;
  font-weight: 900;
}
.answer.selected {
  border-color: var(--green);
  background: #e4f9ef;
}
.answer.selected i {
  background: var(--green);
  color: #fff;
}
.phone-button {
  margin-top: 17px;
  padding: 12px;
  border-radius: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}
.quiz-screen .phone-button,
.explain-screen .phone-button {
  position: absolute;
  inset: auto 13px 18px;
}
.chat {
  display: flex;
  gap: 7px;
  margin-bottom: 13px;
  align-items: flex-start;
}
.chat > span {
  display: grid;
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  place-items: center;
  border-radius: 50%;
  background: #eaf2ff;
}
.chat p {
  margin: 0;
  padding: 11px;
  border-radius: 5px 12px 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 35, 66, 0.08);
  font-size: 10px;
}
.chat.user {
  justify-content: flex-end;
  margin-left: 72px;
}
.chat.user p {
  border-radius: 12px 5px 12px 12px;
  background: var(--blue);
  color: #fff;
}
.chat-input {
  position: absolute;
  inset: auto 13px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 8px 8px 12px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  color: #98a2b3;
  font-size: 9px;
}
.chat-input b {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 20px;
}
.score {
  display: flex;
  width: 110px;
  height: 110px;
  margin: 10px auto 17px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 9px solid var(--green);
  border-right-color: #dfe8f6;
  border-radius: 50%;
}
.score strong {
  font-size: 22px;
}
.score small {
  font-size: 8px;
}
.stats {
  display: grid;
  gap: 5px;
}
.stats span {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
}
.stats b {
  color: var(--navy);
}
.streak {
  display: grid;
  margin: 14px 0;
  padding: 11px;
  border-radius: 11px;
  background: #e4f9ef;
  color: #0d7252;
}
.streak small {
  font-size: 8px;
}
.progress-screen h4 {
  margin: 14px 0 8px;
}
.topic {
  margin: 9px 0;
}
.topic span {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
}
.topic > i {
  display: block;
  height: 6px;
  margin-top: 4px;
  border-radius: 9px;
  background: linear-gradient(to right, var(--amber) var(--v), #e5eaf2 var(--v));
}
.topic.good > i {
  background: linear-gradient(to right, var(--green) var(--v), #e5eaf2 var(--v));
}
.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
}
.tools-grid > div:first-child {
  max-width: 860px;
  margin: auto;
  text-align: center;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}
.feature-list article {
  display: flex;
  gap: 11px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 35, 66, 0.05);
  text-align: left;
}
.feature-list article > span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}
.feature-list h3 {
  margin: 0 0 4px;
  font-size: 15px;
}
.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}
.stacked-phones {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 315px));
  justify-content: center;
  gap: 28px;
}
.stacked-phones .mini {
  position: relative;
}
.correct {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #e4f9ef;
  color: #087553;
}
.correct > b {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 23px;
}
.correct p {
  margin: 0;
}
.correct strong,
.correct small {
  display: block;
}
.correct small {
  font-size: 8px;
}
.explanation {
  margin-top: 12px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
}
.explanation h4 {
  padding-top: 16px;
}
.explanation p {
  clear: both;
  font-size: 9px;
}
.remember {
  display: grid;
  margin-top: 11px;
  padding: 10px;
  border-radius: 10px;
  background: #eaf2ff;
  color: #28466f;
  font-size: 9px;
}
.recognition-sign {
  display: grid;
  width: 145px;
  height: 145px;
  margin: 20px auto 17px;
  place-items: center;
  border: 10px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.25);
  font-size: 67px;
  font-weight: 900;
}
.recognition-screen h4 {
  text-align: center;
}
.verified {
  display: block;
  width: max-content;
  margin: 8px auto 15px;
  padding: 4px 8px;
  border-radius: 99px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 8px;
  font-weight: 850;
}
.recognition-screen > p {
  color: var(--muted);
  font-size: 9px;
}
.recognition-action {
  margin-top: 10px;
  padding: 11px;
  border-radius: 10px;
  background: #eaf2ff;
  color: var(--blue);
  font-size: 9px;
  font-weight: 850;
}
.purple-line {
  background: #f1eaff;
  color: var(--purple);
}
.pricing-section {
  background: #f4f7fc;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.price-card {
  position: relative;
  display: flex;
  padding: 25px 21px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  flex-direction: column;
  box-shadow: 0 12px 35px rgba(15, 35, 66, 0.07);
}
.price-card.featured {
  border: 2px solid var(--blue);
  transform: translateY(-10px);
}
.popular {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 5px 14px;
  border-radius: 99px;
  background: var(--blue);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  transform: translateX(-50%);
  white-space: nowrap;
}
.plan-name {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.price-card h3 {
  margin: 10px 0 0;
  font-size: 25px;
}
.price-card > p {
  min-height: 44px;
  color: var(--muted);
  font-size: 13px;
}
.price-card ul {
  flex: 1;
  padding-left: 18px;
  color: #4c586e;
  font-size: 13px;
}
.price-card li {
  margin: 8px 0;
}
.plan-button {
  display: block;
  padding: 11px;
  border: 1px solid var(--blue);
  border-radius: 12px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}
.plan-button.muted {
  border-color: var(--border);
  color: var(--navy);
}
.adfree {
  display: flex;
  max-width: 820px;
  gap: 12px;
  align-items: center;
  margin: 28px auto 0;
  padding: 15px 18px;
  border: 1px solid #f4d58a;
  border-radius: 16px;
  background: #fff6dc;
  color: #39465d;
}
.adfree > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border-radius: 12px;
  background: #ffd778;
}
.adfree p {
  margin: 0;
  font-size: 13px;
}
.download {
  padding-top: 55px;
}
.download-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: clamp(30px, 5vw, 58px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.22), transparent 32%),
    linear-gradient(130deg, #eaf1ff, #f2fbf7);
  box-shadow: var(--shadow);
}
.download-card > div:first-child {
  max-width: 720px;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 25px;
}
.store-row > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 13px;
  background: #0c1428;
  color: #fff;
  opacity: 0.85;
}
.store-row p {
  display: flex;
  margin: 0;
  flex-direction: column;
}
.store-row small {
  font-size: 8px;
}
.download-logo {
  display: flex;
  min-width: 230px;
  align-items: center;
  flex-direction: column;
}
.download-logo > img:first-child {
  width: 94px;
  height: 94px;
}
.download-logo .wordmark {
  width: 220px;
  margin-top: 8px;
}
.download-logo small {
  color: var(--muted);
}
.faq-wrap {
  max-width: 840px;
}
.faq details {
  margin-bottom: 12px;
  padding: 18px 20px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(15, 35, 66, 0.035);
}
.faq summary {
  cursor: pointer;
  font-weight: 850;
}
.faq details p {
  margin: 12px 0 0;
  color: var(--muted);
}
.faq a {
  color: var(--blue);
  font-weight: 700;
}
.site-footer {
  border-top: 1px solid var(--border);
  background: #fff;
}
.landing-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 0;
  color: var(--muted);
  font-size: 13px;
}
.landing-footer p {
  margin: 7px 0;
}
.landing-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.landing-footer nav a {
  text-decoration: none;
}
.landing-footer > span {
  white-space: nowrap;
}
/* Shared legal/support pages */
.legal-shell {
  padding: 54px 0 84px;
}
.legal-hero {
  max-width: 780px;
  margin-bottom: 28px;
}
.legal-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
}
.legal-hero p,
.updated {
  color: var(--muted);
}
.notice {
  max-width: 860px;
  margin-bottom: 18px;
  padding: 15px 17px;
  border: 1px solid #bed3ff;
  border-radius: 16px;
  background: #eaf2ff;
}
.legal-content {
  max-width: 860px;
}
.legal-card {
  margin-top: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
}
.legal-card h2 {
  margin: 0 0 10px;
  font-size: 20px;
}
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15px;
}
.legal-card a {
  color: var(--blue);
  font-weight: 700;
}
.table-wrap {
  overflow: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}
td {
  color: var(--muted);
}
.support-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.support-card {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}
.support-card h2 {
  margin-top: 0;
}
.support-card p {
  color: var(--muted);
}
.support-grid .faq {
  display: grid;
  gap: 12px;
}
.support-grid .faq article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: #fff;
}
.support-grid .faq h3 {
  margin: 0 0 7px;
}
.support-grid .faq p {
  margin: 0;
  color: var(--muted);
}
@media (max-width: 980px) {
  .hero-grid {
    gap: 38px;
  }
  .phone-gallery {
    gap: 12px;
  }
  .pricing {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured {
    transform: none;
  }
}
@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) {
    display: none;
  }
  .nav-links a.keep {
    display: inline-flex;
  }
  .hero {
    padding-top: 52px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy-wrap {
    text-align: center;
  }
  .hero-copy {
    margin: auto;
  }
  .actions,
  .trust-row {
    justify-content: center;
  }
  .home-screen {
    margin-top: 18px;
  }
  .steps,
  .phone-gallery {
    grid-template-columns: 1fr;
  }
  .phone-gallery {
    gap: 28px;
  }
  .showcase-copy {
    text-align: center;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .download-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .download-logo {
    align-self: center;
  }
  .landing-footer {
    flex-direction: column;
  }
  .support-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1140px);
  }
  .brand {
    font-size: 18px;
  }
  .nav-links .nav-cta {
    padding: 9px 12px;
  }
  .hero {
    padding-bottom: 50px;
  }
  h1 {
    font-size: 46px;
  }
  .section {
    padding: 62px 0;
  }
  .phone {
    max-width: 100%;
  }
  .pricing {
    grid-template-columns: 1fr;
  }
  .stacked-phones {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .adfree {
    align-items: flex-start;
  }
  .download-card {
    border-radius: 24px;
  }
  .legal-shell {
    padding-top: 35px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
