:root {
  --bg: #fffafd;
  --bg-soft: #fff3f7;
  --panel: #ffffff;
  --panel-soft: #fff6f9;
  --text: #24191d;
  --muted: #75646b;
  --line: #efd7df;
  --brand: #f05b78;
  --brand-deep: #d94b67;
  --blue: #4767d8;
  --green: #2b9f68;
  --gold: #9a6a16;
  --shadow: 0 18px 50px rgba(240, 91, 120, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: linear-gradient(180deg, #fffafd 0%, #ffffff 62%, #fff9fc 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "PingFang SC", "Helvetica Neue", sans-serif;
  line-height: 1.68;
}

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

a:hover {
  color: var(--brand-deep);
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.site-meta-bar {
  background: linear-gradient(90deg, rgba(255, 232, 240, 0.94), rgba(239, 244, 255, 0.94));
  border-bottom: 1px solid rgba(240, 216, 224, 0.9);
}

.meta-row {
  min-height: 42px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 13px;
}

.meta-row strong,
.site-footer strong {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 251, 253, 0.94);
  border-bottom: 1px solid rgba(240, 216, 224, 0.8);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark-image {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(240, 91, 120, 0.18);
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.nav nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.nav nav a {
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
}

.nav nav a.active,
.nav nav a:hover {
  color: var(--brand-deep);
}

.hero,
.page-hero {
  padding: 56px 0 30px;
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.summary-grid,
.footer-grid,
.split-grid,
.policy-grid {
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  align-items: start;
}

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

.grid-3,
.summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.footer-grid {
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  align-items: start;
}

.policy-grid {
  grid-template-columns: minmax(0, 1fr);
}

.eyebrow,
.kicker {
  color: var(--brand-deep);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--panel-soft);
}

.eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(34px, 5vw, 56px);
}

h2 {
  font-size: clamp(24px, 3vw, 34px);
}

h3 {
  font-size: 20px;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 800px;
}

.hero-copy,
.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section {
  padding: 28px 0 44px;
}

.section-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.section-title p {
  color: var(--muted);
  max-width: 820px;
}

.card,
.panel,
.metric,
.flow-step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.panel,
.card,
.metric {
  padding: 24px;
}

.hero-card {
  padding: 28px;
}

.card p,
.panel p,
.metric-label,
.flow-step p,
.faq-answer,
.muted {
  color: var(--muted);
}

.card.link-card:hover {
  border-color: rgba(240, 91, 120, 0.42);
  transform: translateY(-2px);
  transition: 160ms ease;
}

.official-badge,
.notice,
.soft-box {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(240, 91, 120, 0.18);
  background: linear-gradient(135deg, rgba(255, 235, 242, 0.95), rgba(239, 244, 255, 0.9));
}

.notice.warning {
  background: #fff6df;
  border-color: #f2ddb1;
  color: #795610;
}

.notice.green {
  background: #f0fbf5;
  border-color: #bfe7cf;
  color: #1d6b43;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}

.button {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 28px rgba(240, 91, 120, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.72);
}

.button.small {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  font-size: 14px;
}

.summary-tag-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag,
.tag-soft {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.tag {
  color: var(--brand-deep);
  background: var(--panel-soft);
}

.tag-soft {
  color: var(--muted);
  background: #faf5f7;
  border: 1px solid var(--line);
}

.metric-value {
  display: block;
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: 0;
}

.metric-label {
  display: block;
  font-size: 14px;
}

.list,
.bullet-list,
.contact-list {
  margin: 0;
  padding-left: 18px;
}

.list li,
.bullet-list li,
.contact-list li {
  margin-bottom: 10px;
}

.contact-list a {
  color: var(--brand-deep);
  font-weight: 800;
}

.app-icon-showcase {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  margin-bottom: 18px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 244, 248, 0.96), rgba(239, 244, 255, 0.96));
}

.app-icon-showcase.compact {
  margin-bottom: 16px;
}

.app-icon-showcase img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(240, 91, 120, 0.12);
  flex: 0 0 auto;
}

.app-icon-showcase strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.app-icon-showcase p {
  color: var(--muted);
  font-size: 14px;
}

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

.flow-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 16px;
}

.flow-step span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--panel-soft);
  color: var(--brand-deep);
  font-weight: 800;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.compare-table th,
.compare-table td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table th {
  background: var(--panel-soft);
  color: var(--brand-deep);
}

.compare-table tr:last-child td {
  border-bottom: 0;
}

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

.faq-item {
  padding: 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.media-copy {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  color: var(--muted);
}

.site-footer {
  padding: 36px 0;
  margin-top: 20px;
  background: #171116;
  color: #f7e8ef;
}

.site-footer p,
.site-footer a {
  color: #d8c5cd;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin: 8px 0 0;
}

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .meta-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .summary-grid,
  .footer-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    padding: 12px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav nav {
    justify-content: flex-start;
  }

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

  .app-icon-showcase {
    align-items: flex-start;
    flex-direction: column;
  }

  .compare-table,
  .compare-table tbody,
  .compare-table tr,
  .compare-table th,
  .compare-table td {
    display: block;
    width: 100%;
  }

  .compare-table thead {
    display: none;
  }

  .compare-table td {
    border-bottom: 1px solid var(--line);
  }
}
