:root {
  --bg: #efebe4;
  --surface: rgba(255, 252, 246, 0.68);
  --surface-strong: #fbf7ef;
  --ink: #17130f;
  --muted: #70675c;
  --line: rgba(23, 19, 15, 0.12);
  --accent: #8a7030;
  --accent-strong: #c79c3e;
  --dark: #080810;
  --radius-lg: 30px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(37, 27, 12, 0.12);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 70% 0%, rgba(199, 156, 62, 0.16), transparent 34rem),
    linear-gradient(180deg, #f5f0e7 0%, var(--bg) 45%, #ebe4da 100%);
}

a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  justify-content: space-between;
  padding: 1rem clamp(1rem, 3vw, 2.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(239, 235, 228, 0.82);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.mark, .mini-mark {
  display: inline-flex;
  align-items: center;
  gap: .22rem;
}
.mark i, .mark b, .mini-mark span, .mini-mark em {
  display: block;
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--ink);
  opacity: .7;
}
.mark b, .mini-mark em { background: var(--accent-strong); opacity: 1; }
.mark:before, .mini-mark:before,
.mark:after, .mini-mark:after {
  content: "";
  width: 1rem;
  height: 1px;
  background: var(--line);
  display: block;
}
nav { display: flex; align-items: center; gap: 1rem; font-size: .94rem; color: var(--muted); }
nav a { text-decoration: none; }
nav a:hover { color: var(--ink); }
.language-toggle {
  display: flex;
  gap: .25rem;
  padding: .25rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}
.language-toggle button {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: .38rem .55rem;
  font-weight: 700;
  cursor: pointer;
}
.language-toggle button.active { background: var(--ink); color: #fff; }
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) clamp(1.1rem, 4vw, 2rem);
}
.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 800;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 8vw, 6.25rem);
  line-height: .92;
  letter-spacing: -0.075em;
  margin-bottom: 1.25rem;
  max-width: 850px;
}
h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}
h3 { font-size: 1.1rem; letter-spacing: -.02em; margin-bottom: .45rem; }
.lead {
  max-width: 650px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
  color: var(--muted);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: .85rem 1.15rem;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}
.primary { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.secondary { border: 1px solid var(--line); color: var(--ink); background: rgba(255,255,255,.28); }
.trust-list { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.trust-list li {
  padding: .5rem .7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,.26);
  font-size: .9rem;
}
.phone-card { display: flex; justify-content: center; }
.phone {
  width: min(340px, 100%);
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 44px;
  background: linear-gradient(180deg, #101018 0%, #080810 100%);
  color: #f8f2e8;
  box-shadow: 0 35px 90px rgba(0,0,0,.32);
  padding: 1.1rem 1.15rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.phone-top { width: 90px; height: 24px; border-radius: 0 0 16px 16px; background: #050509; margin-bottom: 4.25rem; }
.phone .mini-mark { margin-bottom: 2.3rem; }
.phone .mini-mark:before, .phone .mini-mark:after { background: rgba(248,242,232,.18); width: 2.1rem; }
.phone .mini-mark span { background: rgba(248,242,232,.62); }
.phone-label { color: #b99d59; font-weight: 800; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.phone h2 { font-size: 2.05rem; line-height: 1.14; letter-spacing: -.05em; margin: .7rem 0 auto; }
.phone-button { width: 100%; border-radius: 999px; padding: 1rem; background: #d2a441; color: #100b05; font-weight: 900; }
.split { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: start; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.feature, .support-card, .legal-grid article, .privacy-panel, .mood-list div {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(37, 27, 12, 0.07);
}
.feature { padding: 1.25rem; }
.feature span { color: var(--accent); font-weight: 900; font-size: .8rem; }
.feature p, .support-card p, .legal p { color: var(--muted); line-height: 1.6; }
.moods h2 { max-width: 740px; }
.mood-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: .8rem; margin-top: 2rem; }
.mood-list div { padding: 1rem; min-height: 120px; display: flex; flex-direction: column; gap: .6rem; }
.mood-list strong { font-size: 1.2rem; }
.mood-list span { color: var(--muted); font-size: .94rem; line-height: 1.4; }
.privacy-panel { padding: clamp(2rem, 5vw, 3.5rem); }
.privacy-panel > p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; line-height: 1.65; max-width: 780px; }
.privacy-grid, .legal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.privacy-grid div { padding: 1rem; border-top: 1px solid var(--line); }
.privacy-grid strong, .privacy-grid span { display: block; }
.privacy-grid span { color: var(--muted); margin-top: .35rem; }
.support-card { padding: 1.5rem; }
.support-card a { font-weight: 800; color: var(--accent); overflow-wrap: anywhere; }
.small { font-size: .92rem; margin-top: 1.4rem; }
.legal-grid article { padding: 1.25rem; }
address { font-style: normal; line-height: 1.65; color: var(--muted); }
.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 2rem 1rem;
}
.site-footer a { text-decoration: none; }
@media (max-width: 860px) {
  .site-header { flex-wrap: wrap; }
  nav { order: 3; width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .phone-card { order: -1; }
  .phone { min-height: 520px; }
  .feature-grid, .privacy-grid, .legal-grid, .mood-list { grid-template-columns: 1fr; }
  h1 { font-size: clamp(3.1rem, 15vw, 4.6rem); }
}
@media (prefers-color-scheme: dark) {
  body {
    color: #f8f2e8;
    background:
      radial-gradient(circle at 70% 0%, rgba(199, 156, 62, 0.16), transparent 30rem),
      linear-gradient(180deg, #111119 0%, #080810 100%);
  }
  .site-header { background: rgba(8,8,16,.82); }
  :root {
    --bg: #080810;
    --surface: rgba(255, 255, 255, 0.055);
    --surface-strong: rgba(255, 255, 255, 0.08);
    --ink: #f8f2e8;
    --muted: #b5aa9c;
    --line: rgba(248, 242, 232, 0.14);
    --accent: #d0a74d;
  }
  .language-toggle button.active { background: #f8f2e8; color: #080810; }
  .primary { background: #f8f2e8; color: #080810; }
}
