:root {
  --rc-bg: #f6f5f2;
  --rc-surface: #fffdf9;
  --rc-surface-2: #fbf8f2;
  --rc-panel: rgba(255, 253, 249, 0.82);
  --rc-panel-strong: rgba(255, 253, 249, 0.94);
  --rc-primary: #7e9a6d;
  --rc-primary-strong: #6c865e;
  --rc-primary-soft: #dce7d3;
  --rc-secondary: #8fa8b8;
  --rc-accent: #a8d8c2;
  --rc-period: #c97a72;
  --rc-ink: #2e2a26;
  --rc-muted: #6e675f;
  --rc-border: #e6ded4;
  --rc-border-strong: #d7cec3;
  --rc-shadow-soft: 0 24px 60px rgba(57, 49, 35, 0.08);
  --rc-shadow-card: 0 16px 36px rgba(57, 49, 35, 0.07);
  --rc-shadow-line: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --rc-radius-xl: 34px;
  --rc-radius-lg: 24px;
  --rc-radius-md: 18px;
  --rc-radius-sm: 14px;
  --rc-container: 1180px;
  --rc-hero-glow: radial-gradient(circle at 15% 10%, rgba(168, 216, 194, 0.42), transparent 30%), radial-gradient(circle at 85% 18%, rgba(143, 168, 184, 0.24), transparent 28%), radial-gradient(circle at 80% 82%, rgba(201, 122, 114, 0.12), transparent 18%);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    var(--rc-hero-glow),
    linear-gradient(180deg, #f9f8f4 0%, #f6f5f2 42%, #f3f0ea 100%);
  color: var(--rc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.mobile-nav-open {
  overflow: hidden;
}

main {
  overflow: clip;
}

a {
  color: inherit;
}

a:hover {
  color: var(--rc-primary-strong);
}

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

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

.section,
.hero,
.page-hero {
  position: relative;
}

.section {
  padding: 30px 0;
}

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

.section-shell,
.page-shell,
.hero-shell,
.guide-layout,
.app-banner,
.metric-band,
.contact-grid,
.faq-list,
.legal-shell,
.phase-grid,
.info-grid,
.detail-grid,
.hero-visual-card,
.page-intro-grid {
  border: 1px solid var(--rc-border);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(252, 248, 241, 0.86));
  box-shadow: var(--rc-shadow-soft), var(--rc-shadow-line);
  border-radius: var(--rc-radius-xl);
}

.section-shell,
.page-shell,
.metric-band,
.contact-grid,
.faq-list,
.legal-shell,
.phase-grid,
.info-grid,
.detail-grid,
.page-intro-grid {
  padding: clamp(20px, 3vw, 34px);
}

.hero,
.page-hero {
  padding: 34px 0 12px;
}

.hero-shell,
.page-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: center;
  padding: clamp(24px, 4vw, 40px);
  overflow: hidden;
}

.hero-shell::before,
.page-hero-shell::before,
.section-shell::before,
.legal-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url('../img/visuals/soft-mesh.svg');
  background-repeat: no-repeat;
  background-position: top right;
  background-size: min(56vw, 580px);
  opacity: 0.9;
}

.hero-shell > *,
.page-hero-shell > *,
.section-shell > *,
.legal-shell > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(126, 154, 109, 0.18);
  background: rgba(255, 255, 255, 0.75);
  color: var(--rc-primary-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rc-primary), var(--rc-accent));
  box-shadow: 0 0 0 5px rgba(126, 154, 109, 0.08);
}

h1,
.section h2,
.hero h2,
.page-hero h2 {
  margin: 0;
  color: var(--rc-ink);
  letter-spacing: -0.03em;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.6rem);
}

h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.6vw, 1.3rem);
  line-height: 1.25;
}

p,
li {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--rc-muted);
}

.hero-subtitle,
.page-hero-subtitle,
.section-lead {
  max-width: 62ch;
  margin: 18px 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  line-height: 1.78;
  color: var(--rc-muted);
}

.hero-subtitle {
  max-width: 54ch;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 18px;
}

.hero-note,
.hero-trust,
.hero-disclaimer,
.mini-links,
.mini-trust,
.hero-links {
  margin: 0;
  color: var(--rc-muted);
  font-size: 0.95rem;
}

.hero-note,
.hero-trust,
.hero-disclaimer,
.notice-box,
.callout-panel,
.inline-note {
  padding: 14px 16px;
  border-radius: var(--rc-radius-md);
  border: 1px solid rgba(126, 154, 109, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.hero-chip-row,
.mini-links,
.hero-links,
.guide-card-meta,
.detail-meta,
.language-note,
.metric-row,
.phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.mini-links a,
.hero-links a {
  text-decoration: none;
  color: var(--rc-primary-strong);
  font-weight: 600;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--rc-ink);
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.btn:hover,
button.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn.primary,
.btn-header {
  background: linear-gradient(135deg, var(--rc-primary), var(--rc-primary-strong));
  color: #fff;
  box-shadow: 0 16px 28px rgba(126, 154, 109, 0.26);
}

.btn.primary:hover,
.btn-header:hover {
  color: #fff;
  box-shadow: 0 18px 30px rgba(126, 154, 109, 0.32);
}

.btn.outline,
.btn.ghost {
  border-color: var(--rc-border-strong);
  background: rgba(255, 255, 255, 0.76);
}

.btn.outline:hover,
.btn.ghost:hover {
  border-color: rgba(126, 154, 109, 0.34);
  background: rgba(220, 231, 211, 0.28);
}

.hero-buttons,
.feature-cta-actions,
.header-actions,
.footer-cta,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-chip,
.info-chip,
.meta-chip,
.stat-chip,
.guide-card-meta span,
.detail-meta span,
.phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--rc-border);
  background: rgba(255, 255, 255, 0.78);
  color: var(--rc-ink);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-chip::before,
.info-chip::before,
.meta-chip::before,
.phase-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--rc-primary);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 14px;
}

.metric-item {
  padding: 6px;
}

.metric-value {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--rc-ink);
  font-weight: 800;
}

.metric-label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-visual-card,
.guide-hero-cover,
.hero-stage,
.visual-poster,
.visual-stack {
  position: relative;
  overflow: hidden;
}

.hero-stage,
.hero-visual-card {
  min-height: 430px;
  padding: clamp(20px, 3vw, 32px);
}

.hero-stage {
  background:
    radial-gradient(circle at 30% 24%, rgba(168, 216, 194, 0.48), transparent 32%),
    radial-gradient(circle at 78% 22%, rgba(143, 168, 184, 0.22), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.96), rgba(244, 239, 230, 0.82));
  border: 1px solid rgba(230, 222, 212, 0.82);
  border-radius: clamp(28px, 4vw, 40px);
  box-shadow: var(--rc-shadow-soft);
}

.hero-stage::before,
.hero-visual-card::before,
.guide-hero-cover::before,
.visual-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../img/visuals/orbit-lines.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.48;
  pointer-events: none;
}

.hero-phone-wrapper,
.page-phone-frame {
  position: relative;
  z-index: 2;
  width: min(100%, 190px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248, 244, 236, 0.82));
  box-shadow: 0 24px 54px rgba(58, 48, 35, 0.16);
}

.hero-phone-img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 22px 44px rgba(25, 20, 14, 0.18);
}

.hero-floating-card,
.floating-note,
.side-panel,
.sticky-card,
.small-stat-card,
.contact-card,
.article-summary-card,
.phase-card,
.info-card,
.value-card,
.card-stack > article {
  position: relative;
  z-index: 2;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-lg);
  background: var(--rc-panel-strong);
  box-shadow: var(--rc-shadow-card);
}

.hero-floating-card,
.small-stat-card,
.phase-card,
.info-card,
.value-card,
.contact-card,
.article-summary-card {
  padding: 18px;
}

.hero-floating-card {
  position: absolute;
  width: min(220px, 72%);
}

.hero-floating-card.top {
  top: 26px;
  left: 26px;
}

.hero-floating-card.bottom {
  right: 24px;
  bottom: 22px;
}

.hero-floating-card p,
.hero-floating-card h3,
.phase-card p,
.info-card p,
.value-card p,
.contact-card p,
.article-summary-card p,
.sticky-card p {
  margin: 0;
}

.hero-floating-card h3,
.phase-card h3,
.info-card h3,
.value-card h3,
.contact-card h3,
.article-summary-card h3,
.sticky-card h3,
.sidebar-links a {
  color: var(--rc-ink);
}

.hero-floating-card p,
.phase-card p,
.info-card p,
.value-card p,
.article-summary-card p,
.sticky-card p {
  margin-top: 8px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.feature-detail-grid,
.features-grid,
.guides-grid,
.feature-benefits-grid,
.step-grid,
.support-grid,
.phase-grid,
.info-grid,
.contact-grid,
.detail-grid,
.card-grid {
  display: grid;
  gap: 18px;
}

.feature-detail-grid,
.guides-grid,
.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.features-grid,
.feature-benefits-grid,
.step-grid,
.support-grid,
.phase-grid,
.info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid,
.detail-grid,
.page-intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.guide-card,
.feature-detail-card,
.feature-card,
.faq-item,
.prose-card,
.app-screen-thumb,
.guide-card-full {
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(252, 248, 241, 0.86));
  box-shadow: var(--rc-shadow-card);
  overflow: hidden;
}

.guide-card-cover {
  display: block;
  aspect-ratio: 1200 / 630;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(220,231,211,0.55), rgba(255,255,255,0.7));
}

.guide-card-cover img,
.guide-hero-cover img,
.visual-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-body,
.card-body,
.faq-item,
.feature-card,
.prose-card,
.legal-content,
.app-banner,
.feature-card-body,
.page-info-card {
  padding: clamp(18px, 2.6vw, 26px);
}

.guide-card-body,
.feature-card,
.faq-item,
.contact-card,
.value-card,
.small-stat-card,
.article-summary-card {
  display: grid;
  gap: 12px;
}

.guide-card-body p,
.feature-card p,
.faq-item p {
  max-width: 58ch;
}

.guide-card h2 a,
.guide-card h3 a,
.feature-detail-card h2 a,
.feature-detail-card h3 a,
.feature-card h3 a,
.link-more,
.sidebar-links a {
  text-decoration: none;
}

.link-more {
  color: var(--rc-primary-strong);
  font-weight: 700;
}

.link-more:hover {
  color: var(--rc-primary-strong);
}

.feature-mini-links,
.sidebar-links,
.quick-link-list,
.footer-link-list,
.meta-list {
  display: grid;
  gap: 10px;
}

.feature-mini-links span,
.sidebar-links a,
.quick-link-list a,
.meta-list span {
  padding: 12px 14px;
  border: 1px solid var(--rc-border);
  border-radius: var(--rc-radius-md);
  background: rgba(255,255,255,0.8);
  color: var(--rc-muted);
}

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

.page-intro-grid .page-info-card,
.detail-grid .value-card,
.contact-grid .contact-card {
  height: 100%;
}

.notice-box,
.notice-box-soft,
.callout-panel {
  margin-bottom: 18px;
}

.notice-box strong,
.notice-box-soft strong,
.callout-panel strong {
  color: var(--rc-ink);
}

.page-hero-simple .page-hero-shell,
.page-hero-guide .page-hero-shell,
.page-hero-feature .page-hero-shell {
  grid-template-columns: minmax(0, 1.04fr) minmax(280px, 0.96fr);
}

.guide-article-wrap {
  padding-top: 12px;
}

.guide-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.48fr);
  gap: clamp(22px, 3vw, 30px);
}

.guide-article,
.legal-content {
  min-width: 0;
}

.prose-card {
  padding: clamp(24px, 3vw, 34px);
}

.guide-article > *:first-child,
.legal-content > *:first-child {
  margin-top: 0;
}

.guide-article > *:last-child,
.legal-content > *:last-child {
  margin-bottom: 0;
}

.guide-article h2,
.legal-content h2 {
  margin: 34px 0 14px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.guide-article h3,
.legal-content h3 {
  margin: 26px 0 10px;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.guide-article p,
.guide-article li,
.legal-content p,
.legal-content li {
  max-width: 68ch;
  color: #5f584f;
}

.guide-article ul,
.guide-article ol,
.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
}

.guide-sidebar {
  min-width: 0;
}

.sticky-card {
  position: sticky;
  top: 110px;
  padding: 22px;
}

.page-hero-cover,
.guide-hero-cover,
.visual-poster {
  min-height: 280px;
  border: 1px solid var(--rc-border);
  border-radius: clamp(26px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(246,240,230,0.84));
  box-shadow: var(--rc-shadow-card);
}

.page-hero-cover {
  padding: 14px;
}

.page-hero-cover img,
.guide-hero-cover img {
  border-radius: 22px;
}

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

.app-screen-thumb {
  appearance: none;
  padding: 10px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.app-screen-thumb:hover {
  transform: translateY(-2px);
  border-color: rgba(126, 154, 109, 0.28);
}

.app-screen-thumb img {
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.screenshot-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(28, 24, 19, 0.74);
  backdrop-filter: blur(12px);
  z-index: 120;
}

.screenshot-lightbox.is-open {
  display: flex;
}

.screenshot-lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 1120px);
  max-height: calc(100vh - 48px);
  padding: 22px 64px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(249, 247, 241, 0.95);
  box-shadow: 0 30px 90px rgba(15, 14, 10, 0.3);
}

.screenshot-lightbox-inner img {
  max-height: calc(100vh - 120px);
  width: auto;
  border-radius: 26px;
}

.screenshot-lightbox-close,
.screenshot-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: rgba(46, 42, 38, 0.08);
  color: var(--rc-ink);
  font-size: 1.3rem;
  cursor: pointer;
}

.screenshot-lightbox-close {
  top: 18px;
  right: 18px;
}

.screenshot-lightbox-prev {
  left: 14px;
}

.screenshot-lightbox-next {
  right: 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(246, 245, 242, 0.72);
  border-bottom: 1px solid rgba(230, 222, 212, 0.76);
}

.site-announcement {
  border-bottom: 1px solid rgba(230, 222, 212, 0.72);
  background: rgba(255, 253, 249, 0.74);
}

.announcement-inner,
.header-shell,
.mobile-nav-inner,
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.announcement-inner {
  min-height: 44px;
}

.announcement-note {
  margin: 0;
  font-size: 0.88rem;
}

.announcement-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-links a {
  color: var(--rc-primary-strong);
  text-decoration: none;
  font-weight: 600;
}

.header-shell {
  min-height: 78px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.logo-mark {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(126, 154, 109, 0.16), rgba(168, 216, 194, 0.52));
  border: 1px solid rgba(126, 154, 109, 0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rc-primary), var(--rc-accent));
}

.logo-mark::before {
  width: 18px;
  height: 18px;
  top: 11px;
  left: 11px;
}

.logo-mark::after {
  width: 8px;
  height: 8px;
  bottom: 8px;
  right: 8px;
}

.logo-copy {
  display: grid;
  gap: 2px;
}

.logo-text {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--rc-muted);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
}

.main-nav a,
.lang-switch a,
.mobile-lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--rc-muted);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.main-nav a.active,
.main-nav a:hover,
.lang-switch a.active,
.lang-switch a:hover,
.mobile-lang-switch a.active,
.mobile-lang-switch a:hover {
  color: var(--rc-ink);
  border-color: var(--rc-border);
  background: rgba(255, 255, 255, 0.74);
}

.lang-switch,
.mobile-lang-switch {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--rc-border);
  background: rgba(255,255,255,0.78);
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--rc-ink);
  border-radius: 999px;
}

.mobile-nav {
  border-top: 1px solid rgba(230, 222, 212, 0.76);
  background: rgba(247, 245, 240, 0.96);
}

.mobile-nav-inner {
  padding: 16px 0 20px;
  align-items: stretch;
}

.mobile-nav-links,
.mobile-nav-footer {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a,
.mobile-nav-footer a {
  min-height: 50px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--rc-border);
  background: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-weight: 600;
  color: var(--rc-ink);
  display: flex;
  align-items: center;
}

.site-footer {
  padding: 14px 0 34px;
}

.footer-inner {
  border: 1px solid var(--rc-border);
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(252, 247, 240, 0.88));
  box-shadow: var(--rc-shadow-soft), var(--rc-shadow-line);
  border-radius: var(--rc-radius-xl);
  padding: clamp(22px, 4vw, 34px);
}

.footer-top {
  align-items: flex-start;
  margin-bottom: 22px;
}

.footer-brand {
  max-width: 360px;
}

.footer-brand p,
.footer-note,
.footer-meta {
  margin: 10px 0 0;
}

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

.footer-column h3 {
  margin-bottom: 12px;
}

.footer-link-list a {
  text-decoration: none;
  color: var(--rc-muted);
}

.footer-link-list a:hover {
  color: var(--rc-primary-strong);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 18px;
  margin-top: 20px;
  border-top: 1px solid rgba(230, 222, 212, 0.86);
  font-size: 0.9rem;
}

.footer-meta a {
  color: var(--rc-primary-strong);
  text-decoration: none;
}

.consent-banner {
  position: sticky;
  top: 124px;
  z-index: 90;
  margin: 8px auto 0;
  width: min(var(--rc-container), calc(100% - 40px));
  border-radius: 24px;
  border: 1px solid rgba(230, 222, 212, 0.9);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--rc-shadow-card);
  backdrop-filter: blur(12px);
}

.consent-banner-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
}

.consent-banner p {
  margin: 6px 0 0;
  color: var(--rc-muted);
}

.consent-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-shell {
  display: grid;
  gap: 24px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--rc-border);
  background: rgba(255,255,255,0.78);
  text-decoration: none;
  color: var(--rc-muted);
  font-weight: 600;
}

.support-grid,
.page-intro-grid {
  align-items: stretch;
}

.page-hero-support .page-hero-shell,
.page-hero-legal .page-hero-shell {
  grid-template-columns: minmax(0, 1fr);
}

.empty-state-card {
  padding: 24px;
  text-align: center;
}

@media (max-width: 1180px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 1080px) {
  .hero-shell,
  .page-hero-shell,
  .guide-layout,
  .footer-grid,
  .footer-top,
  .page-intro-grid,
  .detail-grid,
  .contact-grid,
  .metric-band,
  .app-screens-grid,
  .feature-detail-grid,
  .guides-grid,
  .features-grid,
  .feature-benefits-grid,
  .step-grid,
  .support-grid,
  .phase-grid,
  .info-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .footer-grid {
    gap: 18px;
  }

  .sticky-card {
    position: static;
  }
}

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

  .site-announcement {
    display: none;
  }

  .lang-switch,
  .header-actions .btn-header {
    display: none;
  }

  .header-shell {
    min-height: 70px;
  }

  .hero,
  .page-hero {
    padding-top: 22px;
  }

  .hero-shell,
  .page-hero-shell,
  .page-shell,
  .section-shell,
  .app-banner,
  .legal-shell,
  .metric-band,
  .faq-list,
  .contact-grid,
  .phase-grid,
  .info-grid,
  .detail-grid,
  .page-intro-grid {
    border-radius: 26px;
  }

  .hero-stage,
  .hero-visual-card {
    min-height: 360px;
  }

  .hero-floating-card {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .page-actions,
  .hero-buttons,
  .feature-cta-actions,
  .footer-cta,
  .consent-actions {
    width: 100%;
  }

  .page-actions .btn,
  .hero-buttons .btn,
  .feature-cta-actions .btn,
  .footer-cta .btn,
  .consent-actions .btn {
    flex: 1 1 100%;
  }

  .consent-banner {
    top: 76px;
    width: calc(100% - 28px);
  }

  .consent-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-shell,
  .page-hero-shell {
    padding: 20px;
  }

  .hero-stage,
  .hero-visual-card {
    min-height: 300px;
    padding: 18px;
  }

  .hero-phone-wrapper,
  .page-phone-frame {
    width: min(100%, 164px);
    padding: 10px;
  }

  .guide-card-body,
  .card-body,
  .feature-card,
  .faq-item,
  .prose-card,
  .app-banner,
  .page-info-card,
  .contact-card,
  .value-card,
  .small-stat-card,
  .article-summary-card {
    padding: 18px;
  }

  .screenshot-lightbox-inner {
    padding: 54px 14px;
  }

  .screenshot-lightbox-close,
  .screenshot-lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .screenshot-lightbox-prev {
    left: 8px;
  }

  .screenshot-lightbox-next {
    right: 8px;
  }
}

.card-stack {
  display: grid;
  gap: 16px;
}

.logo:hover {
  color: inherit;
}

/* Legacy-theme compatibility overrides: neutralize leftover pink/purple rules from style.css */
:root {
  --bg: #f6f5f2;
  --bg2: #ece8df;
  --ink: var(--rc-ink);
  --pink: #7e9a6d;
  --violet: #8fa8b8;
  --card: rgba(255, 253, 249, 0.82);
  --glass: rgba(255, 255, 255, 0.62);
  --border: rgba(230, 222, 212, 0.9);
  --border-strong: rgba(126, 154, 109, 0.24);
  --shadow-soft: var(--rc-shadow-card);
  --shadow-lift: 0 24px 58px rgba(57, 49, 35, 0.12);
}

body::before {
  background:
    radial-gradient(circle at 16% 12%, rgba(168, 216, 194, 0.22), transparent 50%),
    radial-gradient(circle at 84% 18%, rgba(143, 168, 184, 0.16), transparent 42%),
    radial-gradient(circle at 30% 84%, rgba(126, 154, 109, 0.10), transparent 48%),
    linear-gradient(180deg, #f9f8f4 0%, #f4f1ea 52%, #efebe3 100%);
}

.site-header,
.site-announcement,
.mobile-nav {
  border-color: rgba(230, 222, 212, 0.76) !important;
}

.page-home .hero,
.hero-home {
  padding: clamp(42px, 5vw, 62px) 0 18px;
  color: var(--rc-ink);
}

.page-home .hero::before,
.hero-home::before {
  background:
    radial-gradient(circle at 14% 18%, rgba(168, 216, 194, 0.24), transparent 36%),
    radial-gradient(circle at 86% 18%, rgba(143, 168, 184, 0.14), transparent 30%),
    radial-gradient(circle at 72% 82%, rgba(126, 154, 109, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(249, 248, 244, 0.96) 0%, rgba(243, 238, 230, 0.94) 100%);
}

.page-home .hero h1,
.hero-home h1,
.page-home .hero .hero-subtitle,
.hero-home .hero-subtitle,
.page-home .hero .hero-trust,
.hero-home .hero-trust,
.page-home .hero .hero-disclaimer,
.hero-home .hero-disclaimer {
  color: var(--rc-ink);
  text-shadow: none;
}

.page-home .hero .hero-subtitle,
.hero-home .hero-subtitle,
.page-home .hero .hero-trust,
.hero-home .hero-trust,
.page-home .hero .hero-disclaimer,
.hero-home .hero-disclaimer {
  color: var(--rc-muted);
}

.page-home .hero .btn:not(.primary),
.hero-home .btn:not(.primary) {
  color: var(--rc-ink);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(230, 222, 212, 0.9);
  box-shadow: var(--rc-shadow-card);
}

.page-home .hero .btn.outline:not(.primary),
.hero-home .btn.outline:not(.primary) {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(126, 154, 109, 0.22);
}

.page-home .hero .btn.primary,
.hero-home .btn.primary {
  box-shadow: 0 18px 34px rgba(126, 154, 109, 0.24);
}

.page-home .hero-phone-img,
.hero-home .hero-phone-img {
  filter: drop-shadow(0 22px 46px rgba(44, 38, 29, 0.16));
}

.page-home .hero:hover .hero-phone-img,
.hero-home:hover .hero-phone-img {
  filter: drop-shadow(0 26px 54px rgba(44, 38, 29, 0.18));
}

.main-nav a.active,
.main-nav a:hover,
.lang-switch a.active,
.lang-switch a:hover,
.mobile-lang-switch a.active,
.mobile-lang-switch a:hover {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(230, 222, 212, 0.9);
  color: var(--rc-ink);
  box-shadow: none;
}

.lang-switch a.active,
.mobile-lang-switch a.active {
  border-color: rgba(126, 154, 109, 0.22);
  background: rgba(255, 255, 255, 0.92);
}

.logo-mark {
  background: linear-gradient(135deg, rgba(126, 154, 109, 0.18), rgba(168, 216, 194, 0.44));
}

.logo-mark::before,
.logo-mark::after {
  background: linear-gradient(135deg, var(--rc-primary), var(--rc-accent));
}

/* 2026-03-27 follow-up UX + layout polish */
*, *::before, *::after {
  box-sizing: border-box;
}

:root {
  --rc-container: 1288px;
  --rc-shadow-soft: 0 24px 54px rgba(57, 49, 35, 0.075);
  --rc-shadow-card: 0 14px 30px rgba(57, 49, 35, 0.065);
}

body {
  min-height: 100vh;
  line-height: 1.58;
}

main {
  overflow: visible;
}

.section {
  padding: 34px 0;
}

.section-open .container,
.section-band-soft .container,
.section-band-light .container {
  position: relative;
}

.section-band-soft {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.32), rgba(251, 248, 242, 0.74));
  border-top: 1px solid rgba(230, 222, 212, 0.72);
  border-bottom: 1px solid rgba(230, 222, 212, 0.72);
}

.section-band-light {
  background: linear-gradient(180deg, rgba(255,255,255,0.2), rgba(255,255,255,0.42));
}

.section-open .section-head,
.section-band-soft .section-head,
.section-band-light .section-head {
  margin-bottom: 24px;
}

.guide-layout,
.contact-grid,
.detail-grid,
.phase-grid,
.info-grid {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.page-home .hero {
  padding: clamp(34px, 4vw, 54px) 0 18px;
}

.page-home .hero-shell {
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  gap: clamp(22px, 4vw, 44px);
}

.page-home .hero-copy {
  gap: 20px;
}

.hero-stage-balanced {
  display: grid;
  gap: 16px;
  min-height: 0;
  align-content: center;
}

.hero-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(168px, 204px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.hero-phone-rail {
  display: grid;
  gap: 12px;
  justify-items: center;
}

.hero-stage-balanced .hero-phone-wrapper {
  width: min(100%, 176px);
  padding: 10px;
}

.hero-stage-balanced .hero-phone-img {
  border-radius: 20px;
}

.hero-support-card {
  border: 1px solid var(--rc-border);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: var(--rc-shadow-card);
  padding: 16px;
}

.hero-support-card h3,
.hero-support-card p,
.hero-support-card small {
  margin: 0;
}

.hero-support-card p {
  margin-top: 8px;
}

.hero-support-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rc-primary-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-support-card small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rc-primary);
}

.hero-stage-note-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-stage-link {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--rc-border);
  background: rgba(255,255,255,0.74);
  text-decoration: none;
  box-shadow: var(--rc-shadow-card);
}

.hero-stage-link strong,
.hero-stage-link span {
  display: block;
}

.hero-stage-link strong {
  color: var(--rc-ink);
}

.hero-stage-link span {
  color: var(--rc-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

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

.track-grid .value-card,
.feature-detail-grid .feature-detail-card,
.guides-grid .guide-card,
.support-grid .contact-card {
  height: 100%;
}

.catalog-intro,
.editorial-intro {
  display: grid;
  gap: 14px;
}

.hero-visual-card-editorial {
  display: grid;
  gap: 14px;
  min-height: 0;
}

.hero-insight-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 24px;
  border: 1px solid var(--rc-border);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: var(--rc-shadow-card);
}

.hero-insight-card p,
.hero-insight-card h3 {
  margin: 0;
}

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

.hero-stat-pill {
  padding: 16px;
  border-radius: 20px;
  border: 1px solid var(--rc-border);
  background: rgba(255,255,255,0.76);
  box-shadow: var(--rc-shadow-card);
}

.hero-stat-pill strong,
.hero-stat-pill span {
  display: block;
}

.hero-stat-pill strong {
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--rc-ink);
}

.hero-stat-pill span {
  margin-top: 6px;
  color: var(--rc-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.guide-layout {
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.5fr);
  gap: clamp(22px, 3vw, 36px);
}

.prose-card {
  box-shadow: 0 18px 38px rgba(57, 49, 35, 0.055);
}

.guide-article p,
.guide-article li,
.legal-content p,
.legal-content li {
  max-width: 72ch;
}

.section-support-cta .app-banner {
  padding-inline: clamp(22px, 3vw, 34px);
}

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

@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-block;
  }

  .page-home .hero-shell,
  .hero-stage-grid,
  .hero-stage-note-grid,
  .track-grid,
  .hero-stat-row,
  .guides-grid-listing {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 1080px) {
  .guide-layout,
  .contact-grid,
  .detail-grid,
  .phase-grid,
  .info-grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 860px) {
  .page-home .hero {
    padding-top: 18px;
  }

  .page-home .hero-shell {
    gap: 18px;
  }

  .page-home .hero-stage {
    padding: 18px;
  }

  .hero-stage-balanced .hero-phone-wrapper {
    width: min(100%, 162px);
  }
}

@media (max-width: 640px) {
  .section {
    padding: 26px 0;
  }

  .page-home .hero-stage {
    padding: 16px;
  }

  .hero-support-card,
  .hero-stage-link,
  .hero-stat-pill {
    padding: 14px;
  }
}

.app-banner-action {
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-ad-slot .ad-slot {
  padding: 14px;
  border-radius: 24px;
  border: 1px dashed rgba(126, 154, 109, 0.22);
  background: rgba(255, 253, 249, 0.76);
}

@media (min-width: 1101px) {
  .main-nav {
    display: flex !important;
  }

  .nav-toggle {
    display: none !important;
  }
}

.hero-stage-link:hover {
  color: inherit;
  border-color: rgba(126, 154, 109, 0.26);
}

/* 2026-03-27 composition rebuild: wider, calmer, less boxed */
:root {
  --rc-container: 1320px;
}

.site-announcement {
  background: rgba(255, 253, 249, 0.58);
}

.announcement-inner {
  min-height: 38px;
}

.announcement-note,
.announcement-links a {
  font-size: 0.84rem;
}

.header-shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 72px;
  gap: 18px;
}

.logo-subtitle {
  max-width: 25ch;
  line-height: 1.35;
}

.main-nav {
  min-width: 0;
  gap: 4px;
}

.main-nav a {
  min-height: 38px;
  padding: 0 11px;
  font-size: 0.94rem;
}

.lang-switch {
  gap: 6px;
}

.lang-switch a,
.mobile-lang-switch a {
  min-height: 36px;
  padding: 0 10px;
  font-size: 0.84rem;
}

.btn-header {
  min-height: 48px;
  padding-inline: 18px;
}

.page-home .hero {
  padding: clamp(30px, 4vw, 52px) 0 16px;
}

.page-home .hero-shell {
  grid-template-columns: minmax(0, 1.16fr) minmax(380px, 0.84fr);
  gap: clamp(26px, 4vw, 58px);
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.page-home .hero-shell::before {
  display: none;
}

.hero-copy-home {
  max-width: 690px;
  padding: 8px 0 14px;
  gap: 18px;
}

.page-home h1 {
  max-width: 11.2ch;
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
}

.hero-copy-home .hero-subtitle {
  max-width: 58ch;
  margin-top: 0;
  font-size: clamp(1.02rem, 1.52vw, 1.18rem);
}

.hero-proof-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-proof-pill {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(230, 222, 212, 0.92);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.82);
  box-shadow: 0 12px 28px rgba(57, 49, 35, 0.05);
}

.hero-proof-pill strong,
.hero-proof-pill span {
  display: block;
}

.hero-proof-pill strong {
  color: var(--rc-ink);
  font-size: 1rem;
  line-height: 1.3;
}

.hero-proof-pill span {
  color: var(--rc-muted);
  font-size: 0.95rem;
  line-height: 1.58;
}

.hero-disclaimer-inline,
.hero-trust.compact {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.hero-disclaimer-inline {
  font-size: 0.92rem;
  color: var(--rc-muted);
}

.hero-stage-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(172px, 204px);
  grid-template-areas:
    "top top"
    "cardA phone"
    "summary phone"
    "cardB phone";
  gap: 14px;
  min-height: 0;
  padding: 22px;
  align-items: start;
}

.hero-stage-topline {
  grid-area: top;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-stage-badge,
.hero-stage-micro {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(230, 222, 212, 0.88);
  background: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
  line-height: 1;
}

.hero-stage-badge {
  color: var(--rc-primary-strong);
  font-weight: 700;
}

.hero-stage-micro {
  color: var(--rc-muted);
  font-weight: 600;
}

.hero-proof-card {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(230, 222, 212, 0.92);
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 12px 30px rgba(57, 49, 35, 0.05);
}

.hero-proof-card.is-primary {
  grid-area: cardA;
}

.hero-proof-card.is-secondary {
  grid-area: cardB;
}

.hero-proof-card small,
.hero-proof-card h3,
.hero-proof-card p {
  margin: 0;
}

.hero-proof-card small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--rc-primary-strong);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-proof-card small::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--rc-primary);
}

.hero-stage-center {
  grid-area: phone;
  align-self: center;
}

.hero-stage-home .hero-phone-wrapper {
  width: min(100%, 184px);
  padding: 11px;
}

.hero-stage-summary {
  grid-area: summary;
  display: grid;
  gap: 10px;
}

.hero-stage-summary-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(230, 222, 212, 0.88);
  background: rgba(255, 255, 255, 0.68);
  text-decoration: none;
}

.hero-stage-summary-item strong,
.hero-stage-summary-item span {
  display: block;
}

.hero-stage-summary-item strong {
  color: var(--rc-ink);
}

.hero-stage-summary-item span {
  color: var(--rc-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.hero-stage-summary-item:hover {
  color: inherit;
  border-color: rgba(126, 154, 109, 0.26);
}

.section-overview-band {
  padding-top: 10px;
}

.overview-band {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  margin-top: 0;
  gap: 18px;
}

.overview-band .metric-item {
  padding: 18px 0 0;
  border-top: 1px solid rgba(215, 206, 195, 0.92);
}

.overview-band .metric-label {
  max-width: 18ch;
}

.section-home-routine .container {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
}

.home-routine-copy,
.home-routine-side {
  min-width: 0;
}

.step-list {
  display: grid;
  gap: 0;
}

.step-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(215, 206, 195, 0.82);
}

.step-item:first-child {
  margin-top: 10px;
}

.step-item h3,
.step-item p {
  margin: 0;
}

.step-item p {
  margin-top: 6px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(220, 231, 211, 0.7);
  color: var(--rc-primary-strong);
  font-weight: 800;
}

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

.routine-card {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(230, 222, 212, 0.92);
  border-radius: 22px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 14px 28px rgba(57, 49, 35, 0.045);
}

.routine-card h3,
.routine-card p {
  margin: 0;
}

.page-home .feature-detail-grid,
.page-home .guides-grid,
.page-features .feature-detail-grid,
.page-guides .guides-grid,
.page-guide .feature-detail-grid,
.page-guide .guides-grid,
.page-feature .feature-detail-grid,
.page-feature .guides-grid {
  gap: 22px;
}

.page-home .guide-card,
.page-home .feature-detail-card,
.page-guides .guide-card,
.page-features .feature-detail-card,
.page-guide .guide-card,
.page-guide .feature-detail-card,
.page-feature .guide-card,
.page-feature .feature-detail-card {
  box-shadow: 0 16px 34px rgba(57, 49, 35, 0.055);
}

.faq-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.5fr);
  gap: 22px;
  align-items: start;
}

.faq-list-home {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.faq-aside-card {
  display: grid;
  gap: 12px;
  padding: 22px;
  border: 1px solid rgba(230, 222, 212, 0.92);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(252, 248, 241, 0.88));
  box-shadow: 0 18px 36px rgba(57, 49, 35, 0.06);
}

.faq-aside-card h3,
.faq-aside-card p {
  margin: 0;
}

.home-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(22px, 3.2vw, 34px);
  border: 1px solid rgba(230, 222, 212, 0.92);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(252, 248, 241, 0.9));
  box-shadow: 0 20px 40px rgba(57, 49, 35, 0.06);
}

.home-final-copy {
  min-width: 0;
}

.home-final-copy h2,
.home-final-copy p {
  margin: 0;
}

.home-final-copy .section-lead {
  margin-top: 12px;
}

.home-final-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 16px;
}

.home-final-meta a {
  color: var(--rc-primary-strong);
  font-weight: 600;
  text-decoration: none;
}

.page-features .page-hero-shell,
.page-guides .page-hero-shell,
.page-guide .page-hero-shell,
.page-feature .page-hero-shell,
.page-about .page-hero-shell,
.page-app .page-hero-shell,
.page-cycle .page-hero-shell,
.page-faq .page-hero-shell,
.page-contacts .page-hero-shell,
.page-data_safety .page-hero-shell,
.page-privacy .page-hero-shell,
.page-terms .page-hero-shell {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  overflow: visible;
}

.page-features .page-hero-shell::before,
.page-guides .page-hero-shell::before,
.page-guide .page-hero-shell::before,
.page-feature .page-hero-shell::before,
.page-about .page-hero-shell::before,
.page-app .page-hero-shell::before,
.page-cycle .page-hero-shell::before,
.page-faq .page-hero-shell::before,
.page-contacts .page-hero-shell::before,
.page-data_safety .page-hero-shell::before,
.page-privacy .page-hero-shell::before,
.page-terms .page-hero-shell::before {
  display: none;
}

.page-features .section-shell,
.page-guides .section-shell,
.page-guide .section-shell,
.page-feature .section-shell,
.page-faq .section-shell,
.page-data_safety .section-shell {
  border: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.page-guide .guide-layout,
.page-feature .guide-layout {
  grid-template-columns: minmax(0, 1.24fr) minmax(280px, 0.42fr);
  gap: clamp(24px, 4vw, 40px);
}

.page-guide .prose-card,
.page-feature .prose-card,
.page-privacy .prose-card,
.page-terms .prose-card {
  padding: clamp(28px, 3.4vw, 40px);
}

.page-guide .guide-article p,
.page-guide .guide-article li,
.page-feature .guide-article p,
.page-feature .guide-article li,
.page-privacy .legal-content p,
.page-privacy .legal-content li,
.page-terms .legal-content p,
.page-terms .legal-content li {
  max-width: 74ch;
}

.page-guides .guide-layout {
  gap: clamp(22px, 4vw, 36px);
  align-items: start;
}

.page-guides .guide-card-full,
.page-guides .article-summary-card,
.page-features .feature-detail-card,
.page-feature .feature-card,
.page-data_safety .value-card,
.page-faq .faq-item,
.page-contacts .contact-card {
  border-radius: 24px;
}

.page-features .feature-detail-card .guide-card-body,
.page-guides .guide-card .guide-card-body,
.page-guide .guide-card .guide-card-body,
.page-feature .feature-detail-card .guide-card-body {
  padding: 22px 22px 24px;
}

.page-guide .sticky-card,
.page-feature .sticky-card {
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.92);
}

@media (max-width: 1260px) {
  .logo-subtitle {
    display: none;
  }

  .header-shell {
    gap: 12px;
  }

  .main-nav a {
    padding: 0 9px;
    font-size: 0.92rem;
  }

  .lang-switch a {
    padding: 0 9px;
  }
}

@media (max-width: 1100px) {
  .page-home .hero-shell,
  .section-home-routine .container,
  .hero-proof-row,
  .routine-card-grid,
  .faq-home-grid,
  .home-final-cta,
  .overview-band {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-stage-home {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "top"
      "phone"
      "cardA"
      "summary"
      "cardB";
  }

  .hero-stage-center {
    justify-self: center;
  }

  .home-final-cta .feature-cta-actions {
    width: 100%;
  }

  .home-final-cta .feature-cta-actions .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 860px) {
  .header-shell {
    display: flex;
  }

  .page-home .hero-shell {
    gap: 18px;
  }

  .hero-proof-pill {
    padding: 14px 16px;
  }

  .hero-stage-home {
    padding: 18px;
  }

  .overview-band .metric-item {
    padding-top: 14px;
  }
}

@media (max-width: 640px) {
  .page-home h1 {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.35rem);
  }

  .hero-proof-pill,
  .hero-proof-card,
  .routine-card,
  .faq-aside-card,
  .home-final-cta {
    border-radius: 22px;
  }

  .hero-stage-home {
    padding: 16px;
  }

  .hero-stage-home .hero-phone-wrapper {
    width: min(100%, 168px);
  }

  .overview-band .metric-value {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
}
