:root {
  --bg: #f7f3ef;
  --surface: rgba(255,255,255,.7);
  --ink: #24211f;
  --muted: #766f69;
  --line: rgba(76,58,48,.12);
  --peach: #d8957d;
  --peach-soft: #f4d8ce;
  --green: #5c9d7a;
  --shadow: 0 26px 70px rgba(91,70,58,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 4%, rgba(230,184,166,.24), transparent 27rem),
    radial-gradient(circle at 2% 42%, rgba(255,255,255,.9), transparent 30rem),
    var(--bg);
  font: 16px/1.55 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }

.site-header {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-size: 22px; font-weight: 600; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 15px; position: relative; display: inline-block;
  background: rgba(255,255,255,.84); border: 1px solid rgba(255,255,255,.94);
  box-shadow: 0 8px 25px rgba(74,48,36,.13), inset 0 0 0 1px rgba(108,81,68,.07);
}
.brand-mark i {
  position: absolute; width: 21px; height: 21px; left: 11px; top: 11px;
  border: 6px solid var(--peach); border-right: 0; border-bottom: 0; border-radius: 7px 0 0 0;
}
.brand-mark b { position: absolute; width: 7px; height: 7px; right: 9px; bottom: 9px; border-radius: 50%; background: var(--peach); }
.brand-mark.small { width: 31px; height: 31px; border-radius: 10px; }
.brand-mark.small i { transform: scale(.62); transform-origin: top left; left: 7px; top: 7px; }
.brand-mark.small b { width: 5px; height: 5px; right: 6px; bottom: 6px; }
nav { display: flex; gap: 30px; }
nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
nav a:hover { color: var(--ink); }
.status { justify-self: end; padding: 8px 13px; border-radius: 999px; border: 1px solid var(--line); color: var(--muted); font-size: 12px; }

.hero {
  width: min(1320px, calc(100% - 48px)); min-height: 690px; margin: 20px auto 80px;
  display: grid; grid-template-columns: 1fr .9fr; gap: 80px; align-items: center;
}
.eyebrow { text-transform: uppercase; letter-spacing: .17em; color: #a56750; font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(48px, 6.2vw, 92px); line-height: .98; letter-spacing: -.055em; margin: 20px 0 28px; font-weight: 430; }
h1 em { font-family: Georgia, serif; font-weight: 400; color: var(--peach); }
.lead { max-width: 640px; font-size: clamp(18px, 2vw, 23px); color: var(--muted); line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 52px; padding: 0 24px; border-radius: 18px; text-decoration: none; font-weight: 600; }
.button.primary { background: var(--ink); color: #fff; box-shadow: 0 14px 35px rgba(34,31,29,.18); }
.button.secondary { background: rgba(255,255,255,.6); border: 1px solid rgba(255,255,255,.9); }
.fine { margin-top: 18px; color: #938b85; font-size: 12px; }

.product-preview {
  padding: 22px; border-radius: 36px; background: rgba(255,255,255,.61);
  border: 1px solid rgba(255,255,255,.96); box-shadow: var(--shadow);
  transform: rotate(1deg); backdrop-filter: blur(18px);
}
.preview-top, .preview-heading, .score-card, .preview-list > div { display: flex; align-items: center; justify-content: space-between; }
.preview-top { color: var(--muted); font-size: 12px; margin-bottom: 35px; }
.mini-brand { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 650; }
.preview-heading small, .preview-heading strong { display: block; }
.preview-heading small, .score-card small, .preview-list small { color: var(--muted); }
.preview-heading strong { font-size: 30px; font-weight: 450; }
.avatar { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--peach-soft); color: #9e5f48; font-size: 13px; }
.score-card { margin: 22px 0 12px; padding: 26px; border-radius: 26px; background: #fff; border: 1px solid rgba(117,92,78,.09); }
.score-card strong { display: block; font-size: 54px; line-height: 1.1; font-weight: 430; margin: 5px 0; }
.positive { color: var(--green); font-size: 12px; }
.ring { width: 104px; height: 104px; border-radius: 50%; display: grid; place-items: center; background: conic-gradient(var(--peach) 0 87%, #eee6e1 87%); position: relative; }
.ring::after { content: ""; position: absolute; inset: 9px; background: #fff; border-radius: 50%; }
.ring span { position: relative; z-index: 1; font-size: 22px; }
.preview-list { padding: 4px 14px; }
.preview-list > div { gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--line); }
.preview-list > div:last-child { border: 0; }
.preview-list p { flex: 1; margin: 0; }
.preview-list b, .preview-list small { display: block; }
.preview-list strong { font-size: 18px; }
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.coral { background: #e58f77; }.dot.green { background: #75ad8d; }.dot.sand { background: #cab083; }

.trust-row {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 19px max(24px, calc((100vw - 1320px)/2));
  display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px;
}
.section { width: min(1320px, calc(100% - 48px)); margin: 140px auto; }
.section-title { display: grid; grid-template-columns: 1fr 1.35fr .9fr; gap: 42px; align-items: end; margin-bottom: 58px; }
h2 { font-size: clamp(36px, 4vw, 60px); line-height: 1.08; letter-spacing: -.045em; font-weight: 430; margin: 0; }
.section-title > p:last-child { color: var(--muted); margin: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-grid article { min-height: 290px; padding: 27px; border-radius: 26px; background: var(--surface); border: 1px solid rgba(255,255,255,.92); display: flex; flex-direction: column; box-shadow: 0 15px 45px rgba(89,70,61,.06); }
.number { color: var(--peach); font-family: Georgia, serif; }
.feature-grid h3 { margin: auto 0 10px; font-size: 22px; font-weight: 550; }
.feature-grid p { color: var(--muted); margin: 0; }

.security-section { width: min(1320px, calc(100% - 48px)); margin: 120px auto; padding: clamp(34px, 6vw, 80px); border-radius: 38px; color: #fff; background: #292624; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; }
.security-section .eyebrow { color: #eab39f; }
.security-copy { color: #d4cfcb; font-size: 18px; }
.security-copy ul { list-style: none; padding: 0; margin: 30px 0 0; }
.security-copy li { border-top: 1px solid rgba(255,255,255,.12); padding: 17px 0 17px 28px; position: relative; }
.security-copy li::before { content: "✓"; position: absolute; left: 0; color: #eab39f; }
.cta { width: min(1050px, calc(100% - 48px)); margin: 150px auto; text-align: center; }
.cta h2 { margin: 18px 0 35px; }

footer { background: rgba(255,255,255,.5); border-top: 1px solid var(--line); padding: 60px max(24px, calc((100vw - 1320px)/2)) 32px; display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px; }
footer h3 { font-size: 13px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); }
footer a, footer p { color: var(--muted); font-size: 14px; }
footer a { display: block; margin: 8px 0; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.footer-brand p { max-width: 370px; }
.copyright { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 25px; color: #958c86; font-size: 12px; }

.legal { width: min(860px, calc(100% - 48px)); margin: 70px auto 120px; }
.legal h1 { font-size: clamp(42px, 6vw, 72px); }
.legal h2 { font-size: 28px; margin: 44px 0 14px; }
.legal p, .legal li { color: #5f5955; }
.legal-note { padding: 18px 20px; border-radius: 16px; background: var(--peach-soft); color: #794d3d !important; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }.site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 50px; padding-top: 45px; }
  .product-preview { max-width: 620px; transform: none; }
  .trust-row { overflow-x: auto; justify-content: flex-start; }.trust-row span { white-space: nowrap; }
  .section-title { grid-template-columns: 1fr; }.feature-grid { grid-template-columns: 1fr 1fr; }
  .security-section { grid-template-columns: 1fr; gap: 40px; }
  footer { grid-template-columns: 1fr 1fr; }.footer-brand { grid-column: 1/-1; }
}
@media (max-width: 560px) {
  .site-header, .hero, .section, .security-section, .cta, .legal { width: min(100% - 30px, 1320px); }
  .site-header { padding: 16px 0; }.status { font-size: 10px; }
  h1 { font-size: 49px; }.hero { margin-top: 0; min-height: auto; }
  .hero-actions { flex-direction: column; }.button { width: 100%; }
  .product-preview { padding: 14px; border-radius: 26px; }
  .score-card { padding: 19px; }.ring { width: 84px; height: 84px; }
  .score-card strong { font-size: 43px; }
  .feature-grid { grid-template-columns: 1fr; }.feature-grid article { min-height: 220px; }
  .security-section { padding: 32px 24px; border-radius: 28px; }
  footer { grid-template-columns: 1fr; }.footer-brand { grid-column: auto; }.copyright { grid-column: auto; }
}
