@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;
  --primary: #6a5cff;
  --primary-hover: #5247f6;
  --primary-light: rgba(106, 92, 255, 0.12);
  --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;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  background-image: radial-gradient(circle at 50% 50%, #c58bff 0%, var(--primary) 44%, #5d55ff 100%);
  color: #fff;
  box-shadow:
    0 0.42px 0.93px rgba(28, 70, 255, 0.13),
    0 1.6px 3.52px rgba(28, 70, 255, 0.17),
    0 7px 15.4px rgba(28, 70, 255, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-image: radial-gradient(circle at 50% 50%, #d89bff 0%, var(--primary-hover) 44%, #554dff 100%);
}

.button-secondary {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.1);
  color: #111827;
  box-shadow: 0 12px 28px -22px rgba(17, 24, 39, 0.24);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: #f8fafc;
  border-color: rgba(99, 102, 241, 0.2);
}

.button-lg {
  min-height: 48px;
  padding: 0.9rem 1.4rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge-primary {
  background: rgba(138, 93, 255, 0.1);
  color: var(--primary);
}

.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;
}

.kr-home .hero-content h1 {
  letter-spacing: -0.028em;
  line-height: 1.08;
}

.kr-home .section h2,
.kr-home .feature-copy h2,
.kr-home .section-results h2,
.kr-home .section-stories h2,
.kr-home .section-faq h2 {
  letter-spacing: -0.024em;
  line-height: 1.2;
}

.kr-home .problem-card h3,
.kr-home .step-card h3,
.kr-home .story-card h3 {
  letter-spacing: -0.016em;
  line-height: 1.24;
}

.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;
}

.kr-home .section-results .result-card--wide {
  background: #f3ede4;
}

.kr-home .section-results .result-card--wide img {
  object-fit: contain;
  object-position: center center;
}

.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-page-en .subpage-hero h1 {
  letter-spacing: -0.035em;
}

.faq-page-en .faq-sidebar h2,
.faq-page-en .faq-results h2 {
  letter-spacing: -0.015em;
}

.faq-page-en .faq-featured-reads-head h3,
.faq-page-en .faq-featured-card h4,
.faq-page-en .faq-section-heading,
.faq-page-en .faq-item summary {
  letter-spacing: -0.01em;
}

.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);
}

.faq-support-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(18, 18, 20, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.faq-support-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.faq-support-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-support-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.faq-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1rem;
  border: 1px dashed var(--border-color);
  border-radius: 0.95rem;
  background: #fff;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.faq-support-link:hover {
  color: var(--text-dark);
  border-color: rgba(138, 93, 255, 0.35);
  box-shadow: var(--shadow-sm);
}

.status-banner {
  margin-bottom: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(138, 93, 255, 0.18);
  border-radius: 1rem;
  background: rgba(245, 240, 255, 0.92);
  color: #4c1d95;
  font-size: 0.96rem;
  line-height: 1.6;
}

.status-banner-error {
  border-color: rgba(239, 68, 68, 0.18);
  background: #fef2f2;
  color: #b91c1c;
}

.support-page-main {
  background: var(--bg-light);
  padding-bottom: 6rem;
}

.support-page .site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(18px);
}

.support-page .header-inner {
  min-height: 74px;
}

.support-page .brand,
.support-page .brand-word {
  color: #111827;
}

.support-page .brand-logo {
  min-width: 40px;
  min-height: 40px;
  padding: 7px;
  border: 1px solid rgba(95, 101, 255, 0.12);
  border-radius: 14px;
  background: linear-gradient(180deg, #8a5dff 0%, #5f65ff 100%) !important;
  box-shadow:
    0 12px 28px rgba(93, 85, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
  object-fit: contain;
}

.support-page .header-link {
  color: #667085;
  font-weight: 600;
}

.support-page .header-link[aria-current="page"] {
  color: var(--primary-deep);
}

.support-page .locale-toggle {
  border-color: rgba(17, 24, 39, 0.08);
  background: rgba(99, 102, 241, 0.06);
}

.support-page .locale-link {
  color: #667085;
}

.support-page .locale-link.is-active {
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.08);
}

.support-page .button-primary {
  background-color: var(--primary);
  background-image: radial-gradient(circle at 50% 50%, #d59bff 0%, #7b67ff 42%, #5d55ff 100%);
  border: 1px solid rgba(93, 85, 255, 0.18);
  color: #ffffff !important;
  text-shadow: 0 1px 1px rgba(17, 24, 39, 0.18);
  box-shadow:
    0 10px 24px -12px rgba(95, 101, 255, 0.55),
    0 0.42px 0.93px rgba(28, 70, 255, 0.13),
    0 1.6px 3.52px rgba(28, 70, 255, 0.17),
    0 7px 15.4px rgba(28, 70, 255, 0.28);
}

.support-page .button-primary:hover,
.support-page .button-primary:focus-visible {
  background-color: var(--primary-hover);
  background-image: radial-gradient(circle at 50% 50%, #e3acff 0%, #6c5cff 42%, #4f49ff 100%);
  color: #ffffff !important;
}

.support-page .button-primary:disabled,
.support-page .button-primary[disabled] {
  opacity: 1;
  cursor: not-allowed;
  transform: none;
  filter: saturate(0.86);
  background-color: #a8afff;
  background-image: linear-gradient(135deg, #bfc4ff 0%, #9ea7ff 100%);
  color: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 24px -18px rgba(95, 101, 255, 0.32);
}

.support-hero-section {
  padding: 4rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(138, 93, 255, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(197, 118, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.support-hero-inner,
.support-shell {
  width: min(100%, 1120px);
  margin-left: auto;
  margin-right: auto;
}

.support-hero-copy {
  max-width: 760px;
}

.support-hero-copy h1 {
  max-width: 720px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(2.7rem, 4.7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.support-hero-copy p {
  max-width: 660px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #64748b;
}

.support-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.support-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 1.5rem;
  align-items: start;
}

.support-panel,
.support-sidebar-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.35rem;
  box-shadow: 0 24px 54px -40px rgba(15, 23, 42, 0.18);
}

.support-panel {
  padding: 1.9rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 255, 1) 100%);
}

.support-panel-header {
  max-width: 700px;
  text-align: left;
}

.support-panel-header h2 {
  margin-top: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.support-panel-header p {
  max-width: 640px;
  color: #64748b;
  line-height: 1.75;
}

.support-type-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 1.65rem;
  margin-bottom: 1.65rem;
  padding: 0.35rem;
  border-radius: 1.1rem;
  background: #f6f3ff;
  border: 1px solid rgba(138, 93, 255, 0.12);
}

.support-type-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.875rem 1rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: transparent;
  color: #475569;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.support-type-button.is-active {
  border-color: rgba(138, 93, 255, 0.18);
  background: #fff;
  color: var(--primary-deep);
  box-shadow: 0 12px 28px -24px rgba(93, 85, 255, 0.28);
}

.support-form {
  display: grid;
  gap: 1.35rem;
}

.support-form-panel {
  display: grid;
  gap: 1.1rem;
}

.support-form-panel[hidden] {
  display: none !important;
}

.support-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.support-field {
  display: grid;
  gap: 0.5rem;
}

.support-label {
  color: #0a0b10;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.support-optional {
  color: #64748b;
  font-weight: 600;
}

.support-input,
.support-select,
.support-textarea,
.support-file-input {
  width: 100%;
  display: block;
  border: 1px solid rgba(99, 102, 241, 0.28);
  border-radius: 1rem;
  background: #ffffff;
  color: #0f172a;
  font: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 1px 2px rgba(15, 23, 42, 0.03);
}

.support-input,
.support-select,
.support-file-input {
  min-height: 3rem;
  padding: 0 1rem;
}

.support-textarea {
  min-height: 8.5rem;
  padding: 1rem;
  resize: vertical;
  line-height: 1.75;
}

.support-file-input {
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
  color: #0f172a;
}

.support-input:focus,
.support-select:focus,
.support-textarea:focus,
.support-file-input:focus {
  outline: none;
  border-color: rgba(138, 93, 255, 0.56);
  background: #ffffff;
  box-shadow:
    0 0 0 4px rgba(138, 93, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.support-input::placeholder,
.support-select::placeholder,
.support-textarea::placeholder {
  color: #98a2b3;
  opacity: 1;
}

.support-hint,
.support-submit-note,
.support-related-faq-header p,
.support-related-faq-empty,
.support-sidebar-card p,
.support-sidebar-card li {
  color: #64748b;
  line-height: 1.75;
}

.support-related-faq {
  padding: 1rem 1rem 1.05rem;
  border: 1px solid rgba(138, 93, 255, 0.18);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(249, 245, 255, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.support-related-faq-header strong {
  display: block;
  color: #0a0b10;
}

.support-related-faq-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}

.support-related-faq-card {
  display: block;
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1rem;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.support-related-faq-card:hover {
  transform: translateY(-1px);
  border-color: rgba(138, 93, 255, 0.35);
  box-shadow: var(--shadow-sm);
}

.support-related-faq-card strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0a0b10;
}

.support-related-faq-card p {
  color: #64748b;
}

.support-related-faq-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.65rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
}

.support-form-actions {
  display: grid;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.support-form-actions .button {
  width: 100%;
  min-height: 52px;
}

.support-submit-note {
  font-size: 0.9375rem;
  line-height: 1.7;
}

.support-sidebar {
  display: grid;
  gap: 1rem;
}

.support-sidebar-card {
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.support-sidebar-card strong {
  display: block;
  margin-bottom: 0.55rem;
  color: #0a0b10;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.support-sidebar-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.support-sidebar-card li::marker,
.support-sidebar-card ul li::marker {
  content: "";
}

.support-sidebar-button {
  width: 100%;
  margin-top: 0.75rem;
}

.support-done-main {
  min-height: calc(100vh - 9rem);
}

.support-done-section {
  padding: 4.5rem 0 6rem;
}

.support-done-shell {
  width: min(100%, 760px);
  margin-left: auto;
  margin-right: auto;
}

.support-done-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.5rem;
  box-shadow: 0 28px 64px -44px rgba(15, 23, 42, 0.18);
  padding: clamp(1.9rem, 4vw, 3.2rem);
  text-align: center;
}

.support-done-card h1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.support-done-copy {
  max-width: 620px;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.7;
}

.support-done-ticket {
  display: grid;
  gap: 0.55rem;
  justify-items: center;
  margin-top: 2rem;
  padding: 1.25rem;
  background: rgba(138, 93, 255, 0.08);
  border: 1px solid rgba(138, 93, 255, 0.16);
  border-radius: 1.25rem;
}

.support-done-ticket-label {
  color: #64748b;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.support-done-ticket strong {
  color: #0f172a;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.03em;
  word-break: break-word;
}

.support-done-ticket-help {
  max-width: 460px;
  margin: 0;
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.65;
}

.support-done-notice {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  font-size: 0.98rem;
  line-height: 1.65;
}

.support-done-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.support-done-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem 1.25rem;
  margin-top: 1.5rem;
}

.support-done-links a {
  color: #64748b;
  font-weight: 600;
}

.support-page .faq-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 34px;
  padding: 0 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 93, 255, 0.12);
  box-shadow: 0 12px 28px -24px rgba(95, 101, 255, 0.24);
  color: #111827;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.support-page .pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #8a5dff 0%, #5f65ff 100%);
}

.support-page-footer {
  border-top: 1px solid rgba(17, 24, 39, 0.08);
  background: #fff;
}

.support-page-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.2rem 0 1.5rem;
}

.support-page-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #111827;
  font-weight: 700;
}

.support-page-footer-meta {
  display: grid;
  justify-items: end;
  gap: 0.45rem;
  color: #667085;
  font-size: 0.95rem;
}

.support-page-footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 0.9rem 1rem;
}

.support-page-footer-nav a {
  color: #667085;
  font-weight: 600;
}

.feedback-main {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8faff 42%, #ffffff 100%);
}

.feedback-header-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.feedback-hero-section {
  padding: 4rem 0 2.5rem;
  background:
    radial-gradient(circle at top left, rgba(138, 93, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.feedback-compact-hero {
  padding-bottom: 1.5rem;
}

.feedback-hero-inner {
  width: min(100%, 980px);
  margin-left: auto;
  margin-right: auto;
}

.feedback-hero-inner h1 {
  max-width: 820px;
  margin: 1rem 0 1rem;
  font-size: clamp(2.35rem, 4.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
}

.feedback-hero-inner p {
  max-width: 720px;
  color: #64748b;
  font-size: 1.05rem;
  line-height: 1.78;
}

.feedback-section {
  padding-top: 1rem;
}

.feedback-shell,
.feedback-detail-shell,
.feedback-form-shell {
  width: min(100%, 1040px);
  margin-left: auto;
  margin-right: auto;
}

.feedback-community-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.feedback-community-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(99, 102, 241, 0.14);
  border-radius: 999px;
  background: #fff;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 700;
}

.feedback-community-nav a[aria-current="page"] {
  background: rgba(138, 93, 255, 0.1);
  color: var(--primary-deep);
}

.feedback-welcome-banner,
.feedback-form-card,
.feedback-form-side,
.feedback-detail-card {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.1rem;
  box-shadow: 0 24px 54px -42px rgba(15, 23, 42, 0.22);
}

.feedback-welcome-banner {
  padding: 1.25rem 1.35rem;
  margin-bottom: 1rem;
  background:
    linear-gradient(135deg, rgba(138, 93, 255, 0.1) 0%, rgba(255, 255, 255, 0.98) 55%),
    #ffffff;
}

.feedback-welcome-banner strong {
  display: block;
  color: #111827;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.feedback-welcome-banner p {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: #64748b;
  line-height: 1.7;
}

.feedback-toolbar {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1rem;
}

.feedback-sort-group {
  display: inline-grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.3rem;
  border: 1px solid rgba(138, 93, 255, 0.12);
  border-radius: 0.9rem;
  background: #f6f3ff;
}

.feedback-sort-button {
  min-height: 42px;
  padding: 0 0.85rem;
  border: 1px solid transparent;
  border-radius: 0.72rem;
  background: transparent;
  color: #475569;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
}

.feedback-sort-button.is-active {
  background: #fff;
  border-color: rgba(138, 93, 255, 0.2);
  color: var(--primary-deep);
  box-shadow: 0 12px 26px -24px rgba(93, 85, 255, 0.32);
}

.feedback-search-input {
  width: 100%;
  min-height: 48px;
  padding: 0 1rem;
  border: 1px solid rgba(99, 102, 241, 0.24);
  border-radius: 0.9rem;
  background: #fff;
  color: #0f172a;
  font: inherit;
}

.feedback-search-input:focus {
  outline: none;
  border-color: rgba(138, 93, 255, 0.56);
  box-shadow: 0 0 0 4px rgba(138, 93, 255, 0.12);
}

.feedback-new-button {
  white-space: nowrap;
}

.feedback-list {
  display: grid;
  gap: 0.85rem;
}

.feedback-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 0.9rem;
  background: #fff;
  box-shadow: 0 16px 38px -34px rgba(15, 23, 42, 0.2);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.feedback-card:hover,
.feedback-card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(138, 93, 255, 0.28);
  box-shadow: 0 22px 48px -36px rgba(93, 85, 255, 0.26);
  outline: none;
}

.feedback-card-top,
.feedback-card-meta,
.feedback-card-stats,
.feedback-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.feedback-card-top {
  justify-content: space-between;
}

.feedback-status-chip,
.feedback-rank,
.feedback-card-meta span,
.feedback-card-stats span,
.feedback-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.feedback-status-chip {
  background: #eef2ff;
  color: #4338ca;
}

.feedback-status-in-progress {
  background: #ecfeff;
  color: #0e7490;
}

.feedback-status-done {
  background: #ecfdf5;
  color: #047857;
}

.feedback-rank {
  background: #f8fafc;
  color: #475569;
}

.feedback-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.18rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.feedback-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.65;
}

.feedback-card-meta span {
  background: #f8fafc;
  color: #64748b;
  font-weight: 700;
}

.feedback-card-stats span {
  background: rgba(138, 93, 255, 0.08);
  color: var(--primary-deep);
}

.feedback-empty-state,
.feedback-loading,
.feedback-muted {
  margin: 1rem 0 0;
  color: #64748b;
  line-height: 1.7;
}

.feedback-sentinel {
  width: 100%;
  height: 1px;
}

.feedback-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1rem;
  align-items: start;
}

.feedback-form-card,
.feedback-form-side {
  padding: 1.35rem;
}

.feedback-form-card {
  display: grid;
  gap: 1rem;
}

.feedback-form-side {
  display: grid;
  gap: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbff 100%);
}

.feedback-form-side strong {
  color: #0f172a;
  font-size: 1.05rem;
}

.feedback-form-side p {
  margin: 0;
  color: #64748b;
  line-height: 1.7;
}

.feedback-detail-section {
  padding-top: 3rem;
}

.feedback-detail-shell {
  max-width: 860px;
}

.feedback-detail-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1rem;
}

.feedback-detail-card h1 {
  margin: 0;
  color: #0f172a;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.feedback-detail-card h2 {
  margin: 0;
  color: #0f172a;
  font-size: 1.25rem;
}

.feedback-detail-body {
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.85;
}

.feedback-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feedback-detail-actions .button {
  min-width: 150px;
}

.feedback-comment-form {
  display: grid;
  gap: 0.75rem;
}

.feedback-comment-form[hidden] {
  display: none !important;
}

.feedback-comment {
  padding: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 0.85rem;
  background: #f8fafc;
}

.feedback-comment strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #0f172a;
}

.feedback-comment p {
  margin: 0;
  color: #475569;
  line-height: 1.7;
}

.feedback-related-card [data-feedback-related] {
  display: grid;
  gap: 0.75rem;
}

.feedback-submitted-banner {
  margin-bottom: 1rem;
}

.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;
  }
}

@media (max-width: 960px) {
  .support-shell {
    grid-template-columns: 1fr;
  }

  .feedback-toolbar,
  .feedback-form-shell {
    grid-template-columns: 1fr;
  }

  .feedback-new-button {
    width: 100%;
  }

  .support-type-list,
  .support-form-row {
    grid-template-columns: 1fr;
  }

  .support-page-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-page-footer-meta,
  .support-page-footer-nav {
    justify-items: start;
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .support-page-main {
    padding-bottom: 4.5rem;
  }

  .support-hero-section {
    padding-top: 3rem;
  }

  .support-panel,
  .support-sidebar-card,
  .support-done-card {
    padding: 1.15rem;
    border-radius: 1rem;
  }

  .support-hero-copy h1,
  .support-done-card h1 {
    letter-spacing: -0.025em;
  }

  .support-hero-copy p,
  .support-panel-header p,
  .support-hint,
  .support-sidebar-card p {
    font-size: 0.97rem;
  }

  .support-hero-actions,
  .support-done-actions {
    display: grid;
  }

  .support-hero-actions .button,
  .support-done-actions .button,
  .faq-support-links .button,
  .faq-support-link {
    width: 100%;
    justify-content: center;
  }

  .support-page .header-actions {
    gap: 8px;
  }

  .feedback-header-actions {
    max-width: calc(100% - 54px);
  }

  .feedback-header-actions .header-link {
    font-size: 13px;
  }

  .feedback-hero-section {
    padding-top: 2.5rem;
  }

  .feedback-hero-inner h1 {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .feedback-toolbar {
    gap: 0.65rem;
  }

  .feedback-sort-group {
    width: 100%;
  }

  .feedback-community-nav a {
    flex: 1 1 auto;
  }

  .feedback-detail-actions {
    display: grid;
  }

  .feedback-detail-actions .button {
    width: 100%;
  }

  .support-page-footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 0.65rem 1rem;
  }
}
