@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --surface: #f6f7ff;
  --surface-soft: #eef2ff;
  --surface-tint: #e5e8ff;
  --text: #171717;
  --muted: #656979;
  --muted-strong: #424757;
  --line: rgba(33, 37, 54, 0.08);
  --line-strong: rgba(33, 37, 54, 0.14);
  --primary-start: #6366f1;
  --primary-end: #d4affd;
  --primary-solid: #5f65ff;
  --primary-deep: #3033d8;
  --accent: #ff6d8e;
  --accent-soft: rgba(255, 109, 142, 0.16);
  --footer: #121214;
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 30px 60px -42px rgba(31, 38, 135, 0.42);
  --shadow-soft: 0 14px 35px -26px rgba(13, 20, 65, 0.22);
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Pretendard Variable", "Pretendard", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

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

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

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

button,
summary {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

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

.narrow {
  max-width: 920px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(111, 103, 244, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.brand-logo {
  border: 0;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(11, 12, 20, 0.18);
  object-fit: cover;
  background: transparent;
}

.brand-word {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.header-link {
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.locale-toggle {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.locale-link {
  min-width: 38px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.78);
}

.locale-link.is-active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.hero-section {
  padding: 34px 0 0;
  background: linear-gradient(180deg, var(--primary-start) 0%, var(--primary-end) 100%);
}

.hero-content {
  min-height: 652px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 44px;
}

.hero-content h1,
.section h2,
.site-footer h3 {
  margin: 0;
}

.hero-content h1 {
  max-width: 820px;
  font-size: clamp(38px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #fff;
}

.hero-definition {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-copy {
  max-width: 650px;
  margin: 16px auto 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.84);
}

.page-freshness {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.home-shell .hero-definition,
.home-shell .hero-copy,
.home-shell .section-definition,
.home-shell .section h2,
.home-shell .section-copy,
.home-shell .feature-copy h2,
.home-shell .feature-copy p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  margin-top: 26px;
  border-radius: 12px;
  background: #0f0f11;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 18px 35px -24px rgba(15, 15, 17, 0.65);
}

.app-store-button-large {
  min-height: 54px;
  padding-inline: 22px;
}

.apple-icon {
  font-size: 18px;
  line-height: 1;
}

.phone-stage {
  margin-top: 36px;
  padding-bottom: 48px;
}

.hero-device-image {
  display: block;
  width: min(100%, 256px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 38px 80px rgba(8, 11, 28, 0.28));
}

.phone-frame {
  width: 256px;
  border-radius: 36px;
  padding: 12px;
  background: linear-gradient(180deg, #0d0d10 0%, #181818 100%);
  box-shadow: 0 38px 80px -46px rgba(8, 11, 28, 0.75);
}

.phone-screen {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 510px;
  padding: 20px 16px 22px;
  background: #ffffff;
}

.phone-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted-strong);
}

.phone-title {
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #171717;
}

.phone-chart {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 24px auto 0;
}

.phone-chart img {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  inset: 24px;
}

.chart-ring,
.chart-ring-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.chart-ring {
  background: conic-gradient(var(--primary-solid) 0 250deg, #efeff8 250deg 360deg);
}

.chart-ring-inner {
  inset: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(98, 105, 184, 0.1);
}

.phone-stats {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.phone-stats div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
}

.phone-stats span {
  font-size: 12px;
  color: var(--muted);
}

.phone-stats strong {
  font-size: 13px;
  color: var(--text);
}

.phone-nav {
  margin-top: 22px;
  padding: 9px;
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.08);
  display: flex;
  justify-content: center;
  gap: 10px;
}

.phone-nav span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(20, 20, 20, 0.18);
}

.phone-nav .is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--primary-solid);
}

.section {
  padding: 72px 0;
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-align: center;
}

.section-copy {
  max-width: 650px;
  margin: 18px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-actions {
  margin-top: 22px;
  display: flex;
  justify-content: center;
}

.section-definition {
  max-width: 760px;
  margin: 0 auto 16px;
  text-align: center;
  color: #51586b;
  font-size: 15px;
  line-height: 1.65;
}

.text-link {
  color: var(--primary-deep);
  font-weight: 700;
}

.pill-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  margin: 0 auto 18px;
  color: #ff6d8e;
  background: #fff5f8;
  border: 1px solid rgba(255, 109, 142, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-problem {
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.section-problem h2 {
  color: #ff6d8e;
}

.section-problem .pill-tag {
  display: flex;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.problem-card {
  margin-top: 34px;
  padding: 34px 34px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.problem-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.problem-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.problem-card p {
  margin: 16px 0 0;
  text-align: center;
  color: var(--muted);
}

.problem-list {
  display: grid;
  gap: 14px;
  max-width: 450px;
  margin: 24px auto 0;
  padding: 0;
  list-style: none;
}

.problem-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted-strong);
}

.problem-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0;
  color: #a6a9bd;
  font-size: 20px;
  line-height: 1;
}

.problem-title-primary {
  color: var(--text);
}

.problem-list-centered {
  justify-items: center;
}

.problem-list-centered li {
  width: fit-content;
}

.section-solution-overview {
  color: #fff;
  background: linear-gradient(180deg, #7c3aed 0%, #4f5bf3 100%);
}

.section-solution-overview .section-copy {
  color: rgba(255, 255, 255, 0.8);
}

.stacked-cards {
  margin-top: 30px;
  display: grid;
  gap: 12px;
}

.step-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 22px;
  align-items: start;
  padding: 18px 22px;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
}

.step-copy-block {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-top: 2px;
}

.step-card h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.step-index {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #eff2ff;
  color: var(--primary-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.feature-section {
  background: var(--surface-soft);
}

.feature-alt {
  background: #ffffff;
}

.feature-soft {
  background: #ecf4ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
}

.feature-copy h2,
.section-results h2,
.section-stories h2,
.section-faq h2 {
  text-align: center;
}

.feature-copy p {
  max-width: 560px;
  margin: 14px auto 0;
  text-align: center;
  color: var(--muted);
  line-height: 1.7;
}

.feature-visual {
  justify-self: center;
}

.photo-card,
.metric-card,
.routine-card {
  width: 343px;
  min-height: 416px;
  aspect-ratio: 343 / 416;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.photo-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 15, 29, 0.05) 0%, rgba(10, 15, 29, 0.36) 100%);
}

.phone-preview {
  position: absolute;
  inset: 68px auto auto 112px;
  width: 128px;
  height: 252px;
  padding: 8px;
  border-radius: 24px;
  background: linear-gradient(180deg, #111 0%, #23252b 100%);
  z-index: 1;
}

.screen-matte {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.16) 100%);
  position: relative;
}

.scan-label {
  position: absolute;
  inset: auto 12px 16px;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.metric-card {
  background: linear-gradient(180deg, #f0f3ff 0%, #dee4ff 100%);
  padding: 28px;
}

.metric-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.metric-card-inner {
  position: relative;
  width: 100%;
  height: 360px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  align-items: center;
  justify-content: center;
}

.meal-shot {
  width: 182px;
  height: 182px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 14px 40px -30px rgba(48, 51, 216, 0.6);
}

.metric-chip,
.metric-banner {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(92, 98, 255, 0.16);
  color: var(--primary-deep);
  font-size: 13px;
  font-weight: 700;
}

.chip-top-right {
  top: 40px;
  right: 18px;
}

.chip-mid-right {
  top: 148px;
  right: 10px;
}

.chip-mid-left {
  top: 148px;
  left: 14px;
}

.metric-banner {
  min-height: 38px;
  padding-inline: 14px;
  left: 10px;
  bottom: 116px;
}

.metric-banner-bottom {
  right: 10px;
  left: auto;
  bottom: 40px;
}

.routine-card {
  background: linear-gradient(180deg, #f5f8ff 0%, #e6efff 100%);
  padding: 26px;
}

.routine-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}

.routine-screen {
  min-height: 100%;
  border-radius: 22px;
  background: #ffffff;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.routine-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.routine-header strong {
  font-size: 19px;
}

.routine-header span {
  color: var(--muted);
}

.routine-panel {
  padding: 16px;
  border-radius: 16px;
  background: #f3f6ff;
}

.routine-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.routine-panel-mini {
  background: #f8fafc;
}

.routine-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #c53d66;
  font-size: 12px;
  font-weight: 700;
}

.section-results {
  background: #ffffff;
}

.results-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.result-card {
  position: relative;
  min-height: 360px;
  aspect-ratio: 343 / 360;
  overflow: hidden;
  border-radius: 10px;
  background: #e5e0d8;
}

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

.result-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 108px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #5061ff 0%, #5b4cf4 100%);
  border: 4px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 20px 40px -26px rgba(69, 79, 255, 0.7);
}

.result-badge span {
  font-size: 12px;
}

.result-badge strong {
  font-size: 24px;
}

.result-badge-center {
  top: auto;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.result-badge-right {
  top: auto;
  bottom: 12px;
  right: 12px;
  left: auto;
}

.section-stories {
  background: var(--surface);
}

.story-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.story-card {
  min-height: 195px;
  padding: 22px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(26, 26, 26, 0.04);
}

.story-stars {
  color: #ffc759;
  letter-spacing: 0.08em;
  font-size: 12px;
}

.story-card h3 {
  margin-top: 10px;
  font-size: 18px;
  line-height: 1.4;
}

.story-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.story-card span {
  display: block;
  margin-top: 12px;
  color: #9497a8;
  font-size: 14px;
}

.section-faq {
  background: var(--surface-tint);
}

.faq-wrap {
  max-width: 760px;
}

.faq-list {
  margin-top: 26px;
  display: grid;
  gap: 8px;
}

.faq-item {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.04);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 24px;
  font-size: 15px;
  font-weight: 500;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: #70758a;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.section-cta {
  position: relative;
  overflow: hidden;
  background: #191a1d;
  padding: 0;
}

.section-disclaimer {
  background: #fafafc;
  padding: 36px 0 52px;
}

.disclaimer-card {
  max-width: 960px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 24px 26px;
  box-shadow: 0 18px 38px -30px rgba(18, 18, 20, 0.18);
}

.disclaimer-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff2f2;
  color: #c44848;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.disclaimer-card p {
  margin: 14px 0 0;
  color: #5e6474;
  font-size: 14px;
  line-height: 1.75;
}

.cta-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(16, 18, 26, 0.28), rgba(16, 18, 26, 0.72)),
    url("./assets/footer-cta-bg.png") center center / cover no-repeat;
}

.cta-card {
  position: relative;
  z-index: 1;
  min-height: 376px;
  padding: 58px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-rating {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-card h2 {
  margin-top: 18px;
  color: #ffffff;
}

.cta-card p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  background: var(--footer);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 36px;
  padding: 44px 0 28px;
}

.footer-brand-link {
  color: #ffffff;
}

.footer-brand p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
}

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

.footer-links h3 {
  font-size: 15px;
  margin-bottom: 14px;
}

.footer-links a {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-download {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-size: 14px;
}

.subpage-hero {
  padding: 72px 0 36px;
  background: linear-gradient(180deg, #f4f6ff 0%, #ffffff 100%);
}

.subpage-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-align: center;
}

.subpage-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  margin: 0 auto 18px;
  background: rgba(95, 101, 255, 0.08);
  color: var(--primary-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subpage-hero .subpage-definition {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  color: #454c60;
  font-size: 16px;
  line-height: 1.65;
}

.subpage-hero p {
  max-width: 760px;
  margin: 16px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.subpage-updated {
  margin-top: 16px;
  text-align: center;
  color: #72788a;
  font-size: 13px;
}

.subpage-shell {
  background: #ffffff;
}

.faq-hub-section,
.blog-hub-section,
.article-section {
  padding: 32px 0 72px;
}

.faq-hub-grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
}

.faq-sidebar,
.faq-results,
.blog-card,
.article-card {
  border: 1px solid rgba(18, 18, 20, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 44px -34px rgba(18, 18, 20, 0.16);
}

.faq-sidebar {
  padding: 20px;
  position: sticky;
  top: 102px;
  align-self: start;
}

.faq-sidebar h2,
.faq-results h2,
.blog-hub-section h2,
.article-card h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.faq-sidebar p,
.faq-results p,
.blog-meta,
.article-card p {
  color: var(--muted);
}

.faq-search {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(18, 18, 20, 0.1);
  border-radius: 12px;
  margin-top: 16px;
  font: inherit;
}

.faq-filter-group {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.faq-filter-chip {
  border: none;
  background: #f4f6fb;
  color: #5e6474;
  min-height: 38px;
  border-radius: 12px;
  padding: 0 14px;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
}

.faq-filter-chip.is-active {
  background: #111218;
  color: #fff;
}

.faq-results {
  padding: 22px;
}

.faq-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.faq-results-list {
  display: grid;
  gap: 12px;
}

.faq-featured-reads {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(18, 18, 20, 0.06);
  border-radius: 16px;
  background: linear-gradient(180deg, #fafbff 0%, #f4f7ff 100%);
}

.faq-featured-reads-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.faq-featured-reads-head h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq-featured-reads-head p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.faq-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.faq-featured-card {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.faq-featured-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #5f6575;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.faq-featured-card h4 {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.faq-featured-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
}

.faq-featured-card .blog-read-link {
  display: inline-flex;
  margin-top: 12px;
}

.faq-section-group {
  display: grid;
  gap: 12px;
}

.faq-section-group + .faq-section-group {
  margin-top: 28px;
}

.faq-section-heading {
  margin: 0 0 2px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq-section-copy {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.faq-page-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-deep);
  font-weight: 700;
}

.faq-results-list .faq-item {
  border: 1px solid rgba(18, 18, 20, 0.06);
}

.faq-item a {
  color: var(--primary-deep);
  font-weight: 700;
}

.faq-empty {
  padding: 24px;
  text-align: center;
  color: var(--muted);
}

.blog-hub-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

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

.blog-cluster {
  margin-top: 32px;
}

.blog-cluster:first-of-type {
  margin-top: 0;
}

.blog-cluster-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.blog-cluster-head p {
  margin: 0;
  color: #667086;
  font-size: 15px;
  line-height: 1.7;
}

.blog-card {
  padding: 22px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(95, 101, 255, 0.28);
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  box-shadow: 0 28px 52px -30px rgba(95, 101, 255, 0.28);
  outline: none;
}

.blog-card:hover .blog-read-link,
.blog-card:focus-visible .blog-read-link {
  transform: translateX(4px);
}

.blog-card:hover h3,
.blog-card:focus-visible h3 {
  color: var(--primary-deep);
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f4f6fb;
  color: #5f6575;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.blog-card p {
  margin: 12px 0 0;
  line-height: 1.7;
}

.blog-card-footer {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.blog-read-link {
  color: var(--primary-deep);
  font-weight: 700;
  transition: transform 180ms ease;
}

.article-shell {
  max-width: 860px;
  margin: 0 auto;
}

.article-card {
  padding: 28px;
}

.article-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f4f6fb;
  color: #616779;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-card h1 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.article-meta {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.article-definition {
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #f7f8ff;
  border: 1px solid rgba(95, 101, 255, 0.12);
  color: #43495b;
  font-size: 15px;
  line-height: 1.7;
}

.article-answer-block {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.article-answer-card {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  background: #fafbff;
}

.article-answer-card h2 {
  margin: 0;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.article-answer-card p {
  margin: 8px 0 0;
  color: #4b5265;
  line-height: 1.75;
}

.article-lead {
  margin-top: 18px;
  font-size: 19px;
  line-height: 1.75;
  color: #495063;
}

.article-content {
  margin-top: 28px;
  display: grid;
  gap: 28px;
}

.article-content section {
  display: grid;
  gap: 12px;
}

.article-content h2 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.article-content p,
.article-content li {
  color: #4f5567;
  line-height: 1.8;
}

.article-content ul {
  margin: 0;
  padding-left: 20px;
}

.article-callout {
  padding: 18px;
  border-radius: 16px;
  background: #f6f8ff;
  border: 1px solid rgba(95, 101, 255, 0.12);
}

.article-backlink {
  margin-top: 22px;
}

.article-next-panel {
  margin-top: 24px;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  background: #fbfbff;
}

.article-next-panel h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.article-next-links {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.article-next-links p {
  margin: 0;
  color: #4f5567;
  line-height: 1.7;
}

.article-next-label {
  color: #16171d;
  font-weight: 700;
}

.trust-framework {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

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

.trust-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  background: #ffffff;
  box-shadow: 0 20px 44px -34px rgba(18, 18, 20, 0.16);
}

.trust-card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.trust-card p {
  margin: 10px 0 0;
  color: #596074;
  line-height: 1.75;
}

.trust-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: #596074;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .feature-grid,
  .footer-inner,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-download {
    justify-content: start;
  }
}

@media (max-width: 900px) {
  .results-grid,
  .story-grid,
  .blog-grid,
  .faq-hub-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 28px;
  }

  .feature-copy h2,
  .feature-copy p,
  .section h2,
  .section-copy {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

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

  .faq-wrap {
    width: min(100%, calc(100% - 28px));
  }

  .faq-sidebar {
    position: static;
  }

  .faq-featured-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .site-header {
    position: static;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.98), rgba(99, 102, 241, 0.9));
  }

  .brand-word {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .locale-link {
    min-width: 34px;
    min-height: 28px;
    padding-inline: 10px;
  }

  .hero-content {
    min-height: auto;
    padding-top: 16px;
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-definition {
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
  }

  .phone-frame {
    width: 220px;
  }

  .phone-screen {
    min-height: 438px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .photo-card,
  .metric-card,
  .routine-card {
    width: 100%;
    min-height: 360px;
  }

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

  .problem-card,
  .story-card {
    padding: 20px;
  }

  .faq-item summary,
  .faq-item p {
    padding-left: 18px;
    padding-right: 18px;
  }
}
