:root {
  --paper: #f5efe5;
  --ink: #171512;
  --muted: #6f685f;
  --line: rgba(23, 21, 18, 0.14);
  --lilac: #dcb8f2;
  --lilac-deep: #8b4ab5;
  --white: #fffdf9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 750; text-decoration: none; }
.brand img { width: 29px; height: 29px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; font-size: 14px; }
.nav-links a { text-decoration: none; }
.lang {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  padding: 7px 11px;
  cursor: pointer;
  color: var(--ink);
}
.hero { display: grid; grid-template-columns: 1.05fr .95fr; min-height: 720px; align-items: center; gap: 70px; padding: 72px 0 48px; }
.eyebrow { color: var(--lilac-deep); font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.02; margin: 0; }
h1 { font-size: clamp(58px, 7.4vw, 104px); letter-spacing: -.055em; max-width: 700px; }
h2 { font-size: clamp(40px, 5vw, 68px); letter-spacing: -.04em; }
h3 { font-size: 27px; }
.lead { max-width: 600px; margin: 28px 0 32px; font-size: 20px; color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px; border-radius: 14px; background: var(--ink); color: white; text-decoration: none; font-weight: 700; }
.button.secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.device-card { display: flex; align-items: center; justify-content: center; background: #f4e9dd; border: 1px solid var(--line); border-radius: 40px; padding: 42px; overflow: visible; box-shadow: 0 35px 90px rgba(54,37,22,.12); }
.iphone { position: relative; width: min(100%, 310px); padding: 14px; background: #080808; border: 3px solid #303030; border-radius: 58px; box-shadow: 0 20px 38px rgba(0,0,0,.28), inset 0 0 0 2px #000; }
.iphone::after { content: ""; position: absolute; inset: 6px; border: 1px solid rgba(255,255,255,.18); border-radius: 50px; pointer-events: none; }
.iphone img { display: block; width: 100%; height: auto; border-radius: 43px; }
.iphone-button { position: absolute; left: -6px; width: 5px; border-radius: 3px 0 0 3px; background: #111; box-shadow: inset 1px 0 #444; }
.iphone-button-one { top: 108px; height: 30px; }
.iphone-button-two { top: 160px; height: 54px; }
.iphone-button-three { top: 227px; height: 54px; }
.section { padding: 110px 0; border-top: 1px solid var(--line); }
.section-head { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; margin-bottom: 54px; }
.section-head p { max-width: 570px; margin: 8px 0 0; font-size: 19px; color: var(--muted); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { min-height: 220px; padding: 28px; background: rgba(255,255,255,.5); border: 1px solid var(--line); border-radius: 24px; }
.card .number { color: var(--lilac-deep); font-weight: 750; margin-bottom: 45px; }
.card p { color: var(--muted); margin: 14px 0 0; }
.privacy-band { display: grid; grid-template-columns: 1.1fr .9fr; gap: 50px; align-items: end; background: var(--ink); color: white; border-radius: 34px; padding: 54px; }
.privacy-band p { color: #c9c2b8; font-size: 18px; max-width: 620px; }
.privacy-list { list-style: none; padding: 0; margin: 0; }
.privacy-list li { border-top: 1px solid rgba(255,255,255,.18); padding: 15px 0; }
.support-callout { text-align: center; }
.support-callout p { color: var(--muted); font-size: 18px; }
.support-email { display: inline-block; margin-top: 14px; color: var(--ink); font-family: Georgia, "Times New Roman", serif; font-size: clamp(25px, 4vw, 48px); text-decoration-thickness: 1px; text-underline-offset: 8px; }
.page { min-height: 70vh; padding: 82px 0 120px; }
.page h1 { font-size: clamp(52px, 7vw, 86px); }
.page .intro { max-width: 760px; font-size: 20px; color: var(--muted); margin: 26px 0 56px; }
.prose { max-width: 790px; }
.prose h2 { font-family: inherit; font-weight: 750; font-size: 23px; letter-spacing: 0; margin: 46px 0 12px; }
.prose p, .prose li { color: #4f4942; }
.prose a { text-decoration-thickness: 1px; text-underline-offset: 3px; }
.notice { border: 1px solid var(--line); background: rgba(255,255,255,.5); border-radius: 18px; padding: 20px; }
footer { border-top: 1px solid var(--line); padding: 42px 0; font-size: 14px; color: var(--muted); }
.footer-grid { display: flex; justify-content: space-between; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-links a { text-decoration: none; }
.footer-email { display: block; margin-bottom: 12px; color: var(--ink); font-weight: 700; text-align: right; }
[data-lang="en"] { display: none; }
body.en [data-lang="it"] { display: none; }
body.en [data-lang="en"] { display: revert; }

@media (max-width: 800px) {
  .wrap { width: min(100% - 28px, 680px); }
  .nav-links > a { display: none; }
  .hero { grid-template-columns: 1fr; min-height: 0; gap: 42px; padding-top: 54px; }
  h1 { font-size: clamp(52px, 16vw, 74px); }
  .device-card { padding: 30px 24px; }
  .iphone { border-radius: 48px; }
  .iphone img { border-radius: 36px; }
  .section { padding: 78px 0; }
  .section-head, .privacy-band { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .privacy-band { padding: 32px 26px; }
  .footer-grid { flex-direction: column; }
  .footer-email { text-align: left; }
}
