:root {
  --bg: #faf7f2;
  --surface: #fff;
  --muted: #f3e9dc;
  --primary: #6e4b35;
  --primary-dark: #2c211a;
  --soft: #d8c2aa;
  --light: #efe3d4;
  --text: #2c211a;
  --text-muted: #7c6a5d;
  --border: #eadccb;
  --success: #4d7c59;
  --shadow: 0 24px 70px rgba(44, 33, 26, .11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin-inline: auto; }
.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(250, 247, 242, .88);
  border-bottom: 1px solid rgba(234, 220, 203, .75);
  backdrop-filter: blur(18px);
}
.nav-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-size: 22px; font-weight: 850; letter-spacing: -.04em; }
.brand img { width: 44px; height: 44px; border-radius: 13px; object-fit: cover; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--text-muted); font-size: 14px; font-weight: 650; }
.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--primary); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; border-radius: 999px; background: var(--primary); color: white; font-weight: 750; text-decoration: none; transition: transform .2s, box-shadow .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(110, 75, 53, .22); }
.button.secondary { color: var(--primary); background: var(--light); }

.hero { position: relative; overflow: hidden; padding: 92px 0 108px; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; left: -280px; top: -120px; border-radius: 50%; background: var(--light); filter: blur(3px); }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 72px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.65); color: var(--primary); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
h1 { max-width: 760px; margin: 22px 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 7vw, 82px); line-height: .98; letter-spacing: -.055em; font-weight: 600; }
.lead { max-width: 620px; margin: 0; color: var(--text-muted); font-size: clamp(18px, 2vw, 21px); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: var(--text-muted); font-size: 14px; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust span::before { content: "✓"; color: var(--success); font-weight: 900; }
.hero-art { position: relative; min-height: 510px; display: grid; place-items: center; }
.hero-art::before { content: ""; position: absolute; inset: 5% 2%; border-radius: 46% 54% 45% 55%; background: linear-gradient(145deg, var(--muted), var(--soft)); transform: rotate(-6deg); }
.hero-logo { position: relative; width: min(430px, 92%); border-radius: 36%; mix-blend-mode: multiply; filter: drop-shadow(0 30px 28px rgba(65, 40, 19, .16)); transform: rotate(2deg); }
section { padding: 96px 0; }
.section-kicker { color: var(--primary); font-size: 13px; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
h2 { max-width: 720px; margin: 10px 0 18px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 5vw, 56px); line-height: 1.08; letter-spacing: -.04em; font-weight: 600; }
.section-intro { max-width: 670px; margin: 0; color: var(--text-muted); font-size: 18px; }
.features { background: var(--surface); }
.value-list { margin-top: 52px; border-top: 1px solid var(--border); }
.value-list article { display: grid; grid-template-columns: 100px 1fr; gap: 30px; align-items: center; padding: 30px 0; border-bottom: 1px solid var(--border); }
.value-list article > strong, .value-list article > span { color: var(--primary); font-family: Georgia, serif; font-size: 54px; line-height: 1; text-align: center; }
.value-list h3 { margin: 0 0 5px; font-size: 21px; }
.value-list p { margin: 0; color: var(--text-muted); }
.app-showcase { overflow: hidden; background: var(--muted); }
.showcase-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 90px; }
.phones { position: relative; min-height: 660px; }
.phone { position: absolute; width: 280px; height: 570px; overflow: hidden; border: 9px solid var(--primary-dark); border-radius: 42px; background: var(--bg); box-shadow: 0 30px 65px rgba(44,33,26,.18); font-size: 12px; }
.phone-back { top: 0; left: 0; transform: rotate(-7deg); }
.phone-front { right: 10px; bottom: 0; z-index: 2; transform: rotate(5deg); }
.phone-bar { display: flex; justify-content: space-between; padding: 12px 18px 5px; font-size: 9px; }
.phone-bar b { letter-spacing: 2px; }
.app-head { display: flex; justify-content: space-between; align-items: center; padding: 10px 16px; font-size: 20px; }
.mini-brand { color: var(--primary); font-size: 20px; font-weight: 900; letter-spacing: -.05em; }
.search-line { margin: 4px 14px 14px; padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; color: var(--text-muted); background: white; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 0 13px; }
.mini-product { padding: 6px; border-radius: 13px; background: white; box-shadow: 0 7px 18px rgba(44,33,26,.08); }
.mini-product img { width: 100%; height: 130px; object-fit: cover; border-radius: 9px; }
.mini-product b, .mini-product small { display: block; margin-top: 6px; }
.mini-product small { margin-top: 1px; color: var(--primary); font-weight: 800; }
.tab-line { position: absolute; left: 0; right: 0; bottom: 0; display: flex; justify-content: space-around; padding: 10px 4px; border-top: 1px solid var(--border); background: white; }
.tab-line span { display: grid; text-align: center; font-size: 16px; }
.tab-line small { font-size: 7px; }
.detail-top { display: flex; justify-content: space-between; padding: 9px 16px; font-size: 25px; }
.detail-photo { width: 100%; height: 236px; object-fit: cover; }
.detail-copy { padding: 15px; }
.detail-copy > small { color: var(--primary); font-size: 8px; font-weight: 850; letter-spacing: .1em; }
.detail-copy h3 { margin: 5px 0 0; font-size: 20px; }
.detail-copy > strong { display: block; margin-top: 2px; color: var(--primary); font-size: 22px; }
.detail-copy p { margin: 8px 0; color: var(--text-muted); font-size: 10px; }
.verified-row { display: flex; align-items: center; gap: 9px; padding: 9px 0; border-top: 1px solid var(--border); }
.verified-row i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--soft); font-style: normal; font-weight: 800; }
.verified-row b, .verified-row small { display: block; }
.verified-row small { color: var(--success); font-size: 8px; }
.chat-button { margin-top: 5px; padding: 10px; border-radius: 999px; background: var(--primary); color: white; text-align: center; font-weight: 800; }
.showcase-copy p { color: var(--text-muted); font-size: 18px; }
.zero-badge { display: inline-flex; align-items: center; gap: 14px; margin-top: 24px; padding: 14px 20px; border: 1px solid var(--soft); border-radius: 18px; background: rgba(255,255,255,.6); }
.zero-badge strong { color: var(--primary); font-family: Georgia, serif; font-size: 48px; line-height: 1; }
.zero-badge span { color: var(--text-muted); font-size: 13px; font-weight: 750; line-height: 1.25; text-transform: uppercase; letter-spacing: .05em; }
.community { padding-top: 24px; }
.community-box { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 60px; padding: 64px; border-radius: 34px; background: var(--primary-dark); color: white; }
.community-box::after { content: ""; position: absolute; width: 360px; height: 360px; right: -130px; bottom: -210px; border: 70px solid rgba(255,255,255,.06); border-radius: 50%; }
.community-box h2 { margin-top: 0; }
.community-box p { color: rgba(255,255,255,.68); font-size: 18px; }
.community-points { position: relative; z-index: 1; display: grid; gap: 14px; }
.community-points div { padding: 18px 20px; border: 1px solid rgba(255,255,255,.12); border-radius: 18px; background: rgba(255,255,255,.07); font-weight: 700; }
.community-points span { color: #e1c7a9; margin-right: 9px; }

.footer { margin-top: 80px; padding: 50px 0 32px; border-top: 1px solid var(--border); }
.footer-grid { display: flex; justify-content: space-between; gap: 40px; }
.footer-copy { max-width: 380px; color: var(--text-muted); font-size: 14px; }
.footer-links { display: flex; gap: 28px; font-size: 14px; font-weight: 700; }
.footer-links a { text-decoration: none; }
.copyright { margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--border); color: var(--text-muted); font-size: 13px; }

.legal-hero { padding: 70px 0 34px; }
.legal-hero h1 { font-size: clamp(42px, 6vw, 68px); }
.legal-meta { color: var(--text-muted); font-size: 15px; }
.legal-layout { display: grid; grid-template-columns: 240px minmax(0, 730px); align-items: start; gap: 70px; padding: 28px 0 80px; }
.legal-nav { position: sticky; top: 108px; display: grid; gap: 8px; }
.legal-nav a { padding: 10px 13px; border-radius: 10px; color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 700; }
.legal-nav a:hover, .legal-nav a.active { color: var(--primary); background: var(--light); }
.legal-content { padding: 38px 44px; border: 1px solid var(--border); border-radius: 26px; background: white; box-shadow: 0 18px 55px rgba(44,33,26,.05); }
.legal-content section { padding: 0 0 30px; }
.legal-content section:last-child { padding-bottom: 0; }
.legal-content h2 { margin: 0 0 10px; font-family: inherit; font-size: 23px; letter-spacing: -.02em; }
.legal-content p, .legal-content li { color: #594a40; }
.legal-content p { margin: 0 0 12px; }
.legal-content ul { margin: 8px 0 0; padding-left: 22px; }
.legal-content li + li { margin-top: 8px; }

@media (max-width: 820px) {
  .nav-links a:not(.button) { display: none; }
  .hero { padding: 62px 0 80px; }
  .hero-grid, .community-box, .showcase-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 38px; }
  .hero-art { min-height: 390px; }
  .showcase-grid { gap: 45px; }
  .phones { width: min(570px, 100%); margin-inline: auto; }
  .community-box { padding: 40px 28px; gap: 28px; }
  .legal-layout { grid-template-columns: 1fr; gap: 22px; }
  .legal-nav { position: static; display: flex; overflow-x: auto; }
  .legal-nav a { white-space: nowrap; }
}

@media (max-width: 540px) {
  .wrap { width: min(100% - 28px, 1120px); }
  .nav-inner { height: 68px; }
  .nav-links .button { min-height: 42px; padding: 0 16px; }
  h1 { font-size: 47px; }
  section { padding: 72px 0; }
  .hero-art { min-height: 330px; }
  .value-list article { grid-template-columns: 70px 1fr; gap: 18px; }
  .value-list article > strong, .value-list article > span { font-size: 42px; }
  .phones { min-height: 510px; transform: scale(.78); transform-origin: top left; width: 128%; margin-bottom: -110px; }
  .footer-grid { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 16px 24px; }
  .legal-content { padding: 28px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
