
@font-face { font-family: "Crimson"; src: url("fonts/CrimsonText-Regular.ttf"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Crimson"; src: url("fonts/CrimsonText-Bold.ttf"); font-weight: 700; font-display: swap; }
:root {
  --purple: #9370DB; --purple-deep: #7A5BC4; --mauve: #EDE9FF; --ink: #1A1A1A;
  --muted: #6B6B6B; --line: #E8DDE2; --card: #FFFFFF; --bg: #FAF8FF;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: "Crimson", Georgia, serif;
  font-size: 19px; line-height: 1.6; }
a { color: var(--purple-deep); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
nav { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; }
nav .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-size: 24px; }
nav .brand img { width: 34px; height: 34px; border-radius: 8px; }
nav .links a { margin-left: 18px; text-decoration: none; color: var(--muted); font-size: 17px; }
nav .links a:hover { color: var(--purple-deep); }
.hero { background: linear-gradient(180deg, #9B7BE0 0%, #7A5BC4 100%); color: #fff; }
.hero .wrap { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; padding: 56px 20px 64px; }
.hero h1 { font-size: 60px; line-height: 1.05; margin: 0 0 14px; font-weight: 400; }
.hero p { font-size: 22px; margin: 0 0 26px; opacity: .92; }
.hero img.shot { width: 100%; max-width: 360px; justify-self: center; }
/* Phone-style black bezel + playful tilt. JS sets --rx/--ry from the pointer position. */
.phone { border: 6px solid #111; border-radius: 40px; background: #111;
  box-shadow: 0 18px 40px rgba(40,20,80,.28);
  transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--lift, 0));
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease; will-change: transform; }
.phone.is-hover { --lift: -10px; box-shadow: 0 36px 70px rgba(40,20,80,.38); transition: transform .08s linear, box-shadow .35s ease; }
.phone:active { --lift: -4px; }
@media (hover: none) { .phone:active { transform: scale(.97); } }
@media (prefers-reduced-motion: reduce) { .phone, .phone.is-hover { transform: none !important; transition: none; } }
.badge { display: inline-block; background: #000; color: #fff; text-decoration: none; border-radius: 12px;
  padding: 12px 22px; font-family: -apple-system, system-ui, sans-serif; font-size: 16px; }
.badge small { display: block; font-size: 11px; opacity: .8; }
.hero nav a, .hero nav .brand { color: #fff; }
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding: 56px 0 24px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: 22px; padding: 26px; }
.card h3 { margin: 0 0 6px; font-size: 24px; font-weight: 400; }
.card p { margin: 0; color: var(--muted); }
.shots { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; padding: 24px 0 56px; }
.shots img { width: 100%; }
.shots .phone { border-width: 5px; border-radius: 32px; }
.free-note { margin: 14px 0 0; font-size: 17px; opacity: .85; }
.free { padding: 64px 0 60px; text-align: center; }
.free .eyebrow { margin: 0 0 6px; color: var(--purple-deep); font-size: 15px; letter-spacing: .14em; text-transform: uppercase; }
.free h2 { font-size: 42px; font-weight: 400; margin: 0 auto 12px; max-width: 760px; line-height: 1.15; }
.free p:last-child { color: var(--muted); margin: 0 auto; max-width: 600px; }
.band { background: var(--mauve); padding: 48px 0; text-align: center; }
.band h2 { font-size: 38px; font-weight: 400; margin: 0 0 8px; }
.band p { color: var(--muted); margin: 0 auto; max-width: 620px; }
footer { padding: 36px 0 48px; color: var(--muted); font-size: 16px; }
footer .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
footer a { color: var(--muted); margin-right: 16px; }
.doc { max-width: 760px; margin: 0 auto; padding: 24px 20px 64px; }
.doc h1 { font-size: 44px; font-weight: 400; margin: 10px 0 4px; }
.doc h2 { font-size: 28px; font-weight: 400; margin: 34px 0 6px; }
.doc h3 { font-size: 22px; margin: 22px 0 4px; }
.doc .faq { border-top: 1px solid var(--line); padding: 16px 0; }
.doc .faq h3 { margin: 0 0 4px; }
.doc .faq p { margin: 0; color: #333; }
.contact { background: var(--mauve); border-radius: 18px; padding: 22px; margin: 26px 0; }
@media (max-width: 760px) {
  body { font-size: 18px; }
  .hero .wrap { grid-template-columns: 1fr; padding: 32px 20px 48px; text-align: center; }
  .hero h1 { font-size: 44px; }
  .free h2 { font-size: 32px; }
  .hero img.shot { max-width: 260px; }
  .features, .shots { grid-template-columns: 1fr; }
  .shots img { max-width: 320px; margin: 0 auto; display: block; }
  nav .links a { margin-left: 12px; }
}
