:root {
  --ink: #17202a;
  --muted: #66717d;
  --paper: #f7f5ef;
  --panel: rgba(255, 255, 255, 0.78);
  --blue: #1768e5;
  --blue-dark: #0b3f98;
  --orange: #f5a524;
  --line: rgba(23, 32, 42, 0.13);
  --shadow: 0 24px 70px rgba(23, 46, 74, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 104, 229, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 104, 229, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 8% 0%, rgba(245, 165, 36, 0.15), transparent 25rem),
    linear-gradient(180deg, #fbfaf6, #edf3f8 58%, #f7f5ef);
  background-size: 32px 32px, 32px 32px, auto, auto;
  font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 48px; height: 48px; border-radius: 13px; box-shadow: 0 10px 25px rgba(23, 104, 229, .22); }
.brand strong { display: block; font-size: 1.04rem; }
.brand span { color: var(--muted); font-size: .82rem; }
.nav-links { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.nav-links a, .button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, .58);
  text-decoration: none;
  font-weight: 650;
}
.button { display: inline-flex; align-items: center; justify-content: center; gap: 8px; }
.button.primary { color: #fff; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); border-color: transparent; box-shadow: 0 12px 30px rgba(23, 104, 229, .25); }
.button:hover, .nav-links a:hover { transform: translateY(-1px); }
.hero {
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 64px);
  background: linear-gradient(145deg, rgba(255,255,255,.93), rgba(226,237,248,.8));
  box-shadow: var(--shadow);
}
.hero::after { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; right: -180px; top: -190px; background: rgba(23,104,229,.09); }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(28px, 6vw, 74px); align-items: center; position: relative; z-index: 1; }
.eyebrow, .kicker { color: var(--blue-dark); font-size: .78rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(3.1rem, 7.2vw, 6.6rem); font-weight: 400; line-height: .92; letter-spacing: -.045em; }
h1 em { display: block; color: var(--blue); font-style: normal; }
.lede { max-width: 670px; color: #394653; font-size: 1.1rem; line-height: 1.7; }
.actions, .chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.chip { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.54); color: #3f4b57; font-size: .88rem; font-weight: 600; }
.phones { min-height: 650px; display: grid; place-items: center; position: relative; }
.phones img { width: min(290px, 63vw); border-radius: 34px; box-shadow: 0 30px 65px rgba(24,40,58,.26); }
.phones img:first-child { transform: translate(-19%, 3%) rotate(-5deg); }
.phones img:last-child { position: absolute; transform: translate(28%, -2%) rotate(4deg); }
.section { padding: 88px 0 0; }
.section-head { max-width: 760px; margin-bottom: 28px; }
.section h2 { margin: 8px 0 12px; font-family: "DM Serif Display", Georgia, serif; font-size: clamp(2.2rem, 5vw, 4.2rem); font-weight: 400; line-height: 1; }
.section-head p, .card p, .legal-card p, .legal-card li { color: var(--muted); line-height: 1.7; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card, .legal-card {
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 24px;
  padding: 25px;
  background: var(--panel);
  box-shadow: 0 14px 36px rgba(23,46,74,.08);
}
.card h3 { margin-bottom: 8px; font-size: 1.18rem; }
.card .number { color: var(--orange); font-size: 2rem; font-weight: 800; }
.screens { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; align-items: end; }
.screens figure { margin: 0; }
.screens img { display: block; border-radius: 20px; box-shadow: 0 18px 45px rgba(23,46,74,.16); }
.screens figcaption { margin-top: 10px; color: var(--muted); text-align: center; font-size: .78rem; }
.callout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: center; margin-top: 88px; padding: clamp(28px, 5vw, 54px); border-radius: 28px; color: #fff; background: linear-gradient(135deg, #0b3f98, #1768e5); box-shadow: var(--shadow); }
.callout h2 { color: #fff; }
.callout p { color: rgba(255,255,255,.8); line-height: 1.65; }
.callout .button { background: #fff; color: var(--blue-dark); }
.legal-wrap { width: min(920px, calc(100% - 32px)); margin: 36px auto 0; }
.legal-hero { padding: 36px; border-radius: 28px; background: linear-gradient(135deg, #0b3f98, #1768e5); color: #fff; box-shadow: var(--shadow); }
.legal-hero h1 { font-size: clamp(2.5rem, 6vw, 4.8rem); }
.legal-hero p { color: rgba(255,255,255,.8); }
.legal-card { margin-top: 18px; }
.legal-card h2 { margin-top: 8px; font-size: 1.5rem; }
.legal-card ul { padding-left: 20px; }
.meta { color: var(--muted); font-size: .88rem; }
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.support-visual { display: grid; grid-template-columns: minmax(150px, .7fr) minmax(220px, 1fr); align-items: center; gap: 16px; }
.support-visual > img { width: 100%; max-height: 610px; object-fit: contain; filter: drop-shadow(0 24px 34px rgba(23,46,74,.2)); }
.wide-product-shot { margin: 0; display: grid; justify-items: center; }
.wide-product-shot img { width: min(440px, 88vw); border-radius: 22px; box-shadow: var(--shadow); }
.wide-product-shot figcaption { max-width: 620px; margin-top: 14px; color: var(--muted); text-align: center; line-height: 1.6; }
.legal-hero-grid { display: grid; grid-template-columns: 1fr 180px; gap: 28px; align-items: center; overflow: hidden; }
.legal-hero-grid img { width: 180px; max-height: 340px; object-fit: cover; object-position: top; border-radius: 18px; box-shadow: 0 18px 40px rgba(0,0,0,.22); }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:first-of-type { border-top: 0; }
.faq summary { cursor: pointer; font-weight: 750; }
.faq details p { margin: 10px 0 0; }
footer { margin-top: 86px; padding: 34px 0 44px; border-top: 1px solid var(--line); color: var(--muted); }
.footer-row { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
@media (max-width: 900px) {
  .hero-grid, .callout { grid-template-columns: 1fr; }
  .support-visual { max-width: 650px; }
  .phones { min-height: 570px; }
  .grid { grid-template-columns: 1fr 1fr; }
  .screens { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .nav { align-items: flex-start; }
  .nav-links a:not(:last-child) { display: none; }
  .hero { border-radius: 24px; }
  .phones { min-height: 430px; }
  .phones img { width: 210px; border-radius: 25px; }
  .grid, .support-grid { grid-template-columns: 1fr; }
  .support-visual { grid-template-columns: 1fr; }
  .support-visual > img { max-height: 520px; }
  .legal-hero-grid { grid-template-columns: 1fr 110px; gap: 16px; }
  .legal-hero-grid img { width: 110px; max-height: 230px; }
  .screens { grid-template-columns: 1fr 1fr; }
  .section { padding-top: 68px; }
}
