:root {
  --background: #f2d9ed;
  --surface: #eac7e2;
  --card: #ffffff;
  --text: #392435;
  --text-muted: #7f627a;
  --accent: #392435;
  --accent-soft: #e8cfe2;
  --success: #4f7a5a;
  --info: #6a5aa8;
  --warning: #a06d34;
  --danger-soft: #f8deda;
  --border: rgba(57, 36, 53, 0.11);
  --shadow: 0 24px 64px rgba(57, 36, 53, 0.12);
  --shadow-soft: 0 12px 34px rgba(57, 36, 53, 0.08);
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-round: 999px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.55), transparent 34%),
    linear-gradient(180deg, #f7e7f4 0%, var(--background) 38%, #f6edf3 100%);
}

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

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

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

.site-header,
.hero,
.section,
.site-footer,
.proof-strip {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.brand-name {
  font-size: 1.1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--text-muted);
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.header-cta,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius-round);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.header-cta,
.store-button-primary {
  background: var(--accent);
  color: var(--card);
  box-shadow: var(--shadow-soft);
}

.store-button-secondary {
  background: rgba(255, 255, 255, 0.64);
  color: var(--accent);
  border: 1px solid rgba(57, 36, 53, 0.14);
}

.header-cta:hover,
.store-button:hover {
  transform: translateY(-2px);
}

.store-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
  padding: 36px 0 28px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.subpage-hero h1,
.section h2,
.download-card h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.section h2,
.download-card h2 {
  font-size: clamp(1.85rem, 3vw, 3rem);
  line-height: 1.02;
}

.hero-text,
.seo-copy p,
.download-card p,
.faq-item p,
.info-card p,
.feature-panel p,
.comparison-card li {
  color: var(--text-muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

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

.store-note {
  margin: 14px 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-metrics li,
.info-card,
.feature-panel,
.comparison-card,
.keyword-box,
.download-card,
.faq-item {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-metrics li {
  padding: 18px;
}

.hero-metrics strong {
  display: block;
  font-size: 1.35rem;
}

.hero-metrics span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.phone-frame {
  position: absolute;
  overflow: hidden;
  border-radius: 40px;
  background: linear-gradient(180deg, #fff 0%, #f5e7f2 100%);
  border: 10px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.phone-main {
  top: 0;
  right: 34px;
  width: min(100%, 360px);
  height: 640px;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  width: min(290px, calc(100% - 28px));
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.floating-card-place {
  left: 0;
  top: 120px;
}

.floating-card-profile {
  left: 30px;
  bottom: 80px;
}

.floating-photo {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 18px;
}

.floating-avatar {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 50%;
}

.floating-label {
  margin: 0 0 4px;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.floating-title {
  margin: 0;
  font-weight: 800;
}

.floating-meta {
  margin: 4px 0 0;
  color: var(--text-muted);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 0 0;
}

.proof-strip p {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.5);
  color: var(--accent);
  text-align: center;
  font-weight: 700;
}

.section {
  padding: 88px 0 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 28px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.info-card,
.feature-panel,
.comparison-card,
.keyword-box,
.download-card {
  padding: 28px;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 34px;
  border-radius: var(--radius-round);
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.info-card h3,
.feature-panel h3,
.comparison-card h3,
.keyword-box h3 {
  margin: 18px 0 10px;
  font-size: 1.3rem;
}

.section-accent .feature-panel:nth-child(2n) {
  background: linear-gradient(180deg, rgba(232, 207, 226, 0.8), rgba(255, 255, 255, 0.8));
}

.comparison-card-good {
  background: linear-gradient(180deg, rgba(79, 122, 90, 0.12), rgba(255, 255, 255, 0.9));
}

.comparison-card-neutral {
  background: linear-gradient(180deg, rgba(106, 90, 168, 0.08), rgba(255, 255, 255, 0.9));
}

.check-list,
.keyword-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.keyword-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li + li,
.keyword-list li + li {
  margin-top: 12px;
}

.check-list li::before,
.keyword-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.seo-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}

.section-seo {
  padding-bottom: 8px;
}

.keyword-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(232, 207, 226, 0.84));
}

.section-download {
  padding-bottom: 4px;
}

.plans-grid {
  align-items: stretch;
}

.plan-card {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.plan-card-featured {
  background: linear-gradient(180deg, rgba(57, 36, 53, 0.95), rgba(127, 98, 122, 0.92));
  color: var(--card);
  transform: translateY(-6px);
}

.plan-badge {
  display: inline-flex;
  margin: 0 0 16px;
  padding: 8px 14px;
  border-radius: var(--radius-round);
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.plan-label {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.plan-card-featured .plan-label {
  color: rgba(255, 255, 255, 0.72);
}

.plan-card h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.plan-card h3 span {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.plan-subtitle {
  margin: 14px 0 22px;
  color: var(--text-muted);
  line-height: 1.7;
}

.plan-card-featured .plan-subtitle,
.plan-card-featured .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

.download-card {
  background: linear-gradient(135deg, rgba(57, 36, 53, 0.96), rgba(127, 98, 122, 0.9));
  color: var(--card);
}

.download-card p {
  color: rgba(255, 255, 255, 0.82);
}

.download-card .eyebrow {
  color: rgba(255, 255, 255, 0.68);
}

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

.faq-item {
  padding: 20px 24px;
}

.faq-item summary,
.faq-page-card summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.faq-item p {
  margin: 14px 0 0;
}

.subpage-hero,
.subpage-content {
  width: min(calc(100% - 32px), 980px);
  margin: 0 auto;
}

.subpage-hero {
  padding: 36px 0 20px;
}

.subpage-content {
  padding: 18px 0 60px;
}

.legal-card,
.faq-page-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.legal-card + .legal-card,
.faq-page-card + .faq-page-card {
  margin-top: 16px;
}

.legal-card h2,
.faq-page-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li,
.faq-page-card p {
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 56px 0 32px;
}

.footer-brand {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
}

.footer-copy {
  margin: 6px 0 0;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
}

@media (max-width: 1080px) {
  .hero,
  .seo-layout {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 620px;
  }

  .phone-main {
    right: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .floating-card-place {
    left: 0;
    top: 76px;
  }

  .floating-card-profile {
    left: auto;
    right: 0;
    bottom: 40px;
  }

  .three-grid,
  .plans-grid,
  .two-grid,
  .comparison-grid,
  .proof-strip,
  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    padding-top: 12px;
  }

  .hero h1 {
    font-size: 2.8rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .phone-main {
    width: min(100%, 292px);
    height: 500px;
  }

  .floating-card {
    width: min(240px, calc(100% - 12px));
    padding: 12px;
  }

  .floating-card-place {
    top: 42px;
  }

  .floating-card-profile {
    bottom: 16px;
  }

  .three-grid,
  .plans-grid,
  .two-grid,
  .comparison-grid,
  .proof-strip,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .plan-card-featured {
    transform: none;
  }

  .section {
    padding-top: 68px;
  }

  .info-card,
  .feature-panel,
  .comparison-card,
  .keyword-box,
  .download-card,
  .faq-item {
    padding: 22px;
  }
}
