
:root {
  --ink: #171126;
  --ink-soft: #3d3348;
  --purple: #6a5cff;
  --pink: #ff6fae;
  --peach: #ffb683;
  --blue: #56c6ff;
  --cream: #fffaf6;
  --paper: #ffffff;
  --lavender: #eee8f8;
  --muted: #746b70;
  --line: rgba(33, 24, 45, .1);
  --success: #38a37a;
  --shadow: 0 24px 70px rgba(43, 26, 63, .12);
  --radius-lg: 30px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 111, 174, .13), transparent 28rem),
    radial-gradient(circle at 100% 16%, rgba(86, 198, 255, .14), transparent 30rem),
    var(--cream);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: min(var(--max), calc(100% - 38px)); margin: 0 auto; }
.skip-link {
  position: absolute; left: -9999px; top: 8px;
  background: var(--ink); color: white; padding: 10px 14px; border-radius: 10px;
}
.skip-link:focus { left: 8px; z-index: 9999; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 250, 246, .83);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(36, 25, 47, .07);
}
.nav {
  min-height: 72px; display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.25rem; font-weight: 800; }
.brand img { width: 42px; height: 42px; border-radius: 12px; object-fit: cover; box-shadow: 0 8px 20px rgba(68, 36, 107, .18); }
.nav-links { display: flex; align-items: center; gap: 26px; font-weight: 650; color: var(--ink-soft); }
.nav-links a:hover { color: var(--purple); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.5rem; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 8px;
  min-height: 50px; padding: 0 20px; border-radius: 15px; font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: white;
  background: linear-gradient(115deg, var(--purple), var(--pink) 52%, var(--peach));
  box-shadow: 0 14px 35px rgba(132, 67, 165, .24);
}
.btn-secondary { background: white; border: 1px solid var(--line); }
.hero { padding: 92px 0 68px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr; gap: 62px; align-items: center;
}
.eyebrow {
  display: inline-flex; gap: 8px; align-items: center; padding: 8px 12px;
  border: 1px solid rgba(106, 92, 255, .18); border-radius: 999px;
  color: #634b78; background: rgba(255,255,255,.7); font-size: .86rem; font-weight: 800;
}
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif; line-height: 1.05; letter-spacing: -.03em;
}
h1 { font-size: clamp(3.2rem, 7vw, 6.15rem); margin: 22px 0 20px; max-width: 760px; }
h2 { font-size: clamp(2.25rem, 4vw, 4.2rem); margin: 0 0 18px; }
h3 { font-size: 1.55rem; margin: 0 0 9px; }
.gradient-text {
  background: linear-gradient(110deg, #6a5cff 12%, #ef4f9a 48%, #f49b70 76%, #2eb6f1);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.microcopy { margin-top: 13px; color: var(--muted); font-size: .92rem; }
.product-stage {
  position: relative; min-height: 595px; display: grid; place-items: center;
}
.glow {
  position: absolute; inset: 10% 0 0 10%; border-radius: 50%;
  filter: blur(10px); background: linear-gradient(135deg, rgba(106,92,255,.25), rgba(255,111,174,.25), rgba(86,198,255,.22));
}
.phone {
  position: relative; width: min(340px, 74vw); min-height: 590px;
  border: 9px solid #181321; border-radius: 50px; background: #fbf7f3;
  box-shadow: var(--shadow); padding: 26px 18px; overflow: hidden; transform: rotate(2deg);
}
.phone::before {
  content: ""; position: absolute; top: 9px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 23px; border-radius: 99px; background: #181321;
}
.app-top { display: flex; align-items: center; justify-content: space-between; margin: 20px 2px 18px; }
.app-title { font-family: Georgia, serif; font-size: 1.6rem; font-weight: 800; }
.orb { width: 43px; height: 43px; border-radius: 50%; display: grid; place-items: center; color: white;
  background: radial-gradient(circle at 30% 25%, #ffb683, #ff6fae 38%, #6a5cff 72%, #56c6ff);
  box-shadow: 0 0 0 7px rgba(255,255,255,.8), 0 10px 25px rgba(106,92,255,.25);
}
.stat-card, .app-card {
  background: white; border: 1px solid rgba(33,24,45,.08); border-radius: 20px;
  box-shadow: 0 10px 28px rgba(44, 29, 55, .08); padding: 16px; margin-bottom: 13px;
}
.stat-card { background: linear-gradient(145deg, #fff, #f7effb); }
.stat-row { display: flex; justify-content: space-between; gap: 12px; }
.stat strong { font-size: 1.45rem; display: block; }
.stat span { color: var(--muted); font-size: .76rem; }
.client-row { display: flex; gap: 10px; align-items: center; }
.avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, #f2d7cc, #a56f5c); }
.small { font-size: .82rem; color: var(--muted); }
.watch-card {
  position: absolute; right: -20px; bottom: 48px; width: 190px; padding: 18px;
  color: white; border: 7px solid #21172d; border-radius: 43px; background: #080711;
  box-shadow: 0 24px 55px rgba(23, 10, 42, .25); transform: rotate(-7deg);
}
.watch-orb { width: 62px; height: 62px; border-radius: 50%; margin: 10px auto 14px;
  background: radial-gradient(circle at 30% 25%, #ffb683, #ff6fae 38%, #6a5cff 72%, #56c6ff);
  box-shadow: 0 0 22px rgba(255,111,174,.55);
}
.section { padding: 92px 0; }
.section-intro { max-width: 720px; margin-bottom: 44px; }
.section-intro p { color: var(--muted); font-size: 1.08rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  min-height: 250px; padding: 26px; border-radius: var(--radius-md); background: rgba(255,255,255,.82);
  border: 1px solid var(--line); box-shadow: 0 14px 42px rgba(51,33,62,.07);
}
.feature-icon {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px;
  margin-bottom: 24px; color: white; font-size: 1.25rem;
  background: linear-gradient(135deg, var(--purple), var(--pink), var(--peach));
}
.feature-card p { color: var(--muted); }
.band {
  border-radius: 36px; padding: 58px; color: white;
  background: linear-gradient(125deg, #171126, #332045 56%, #17233d);
  box-shadow: var(--shadow);
}
.band-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center; }
.band p { color: #ddd2e4; font-size: 1.06rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; max-width: 900px; }
.price-card {
  padding: 32px; border-radius: 26px; background: white; border: 1px solid var(--line);
  box-shadow: 0 18px 54px rgba(48, 30, 60, .08);
}
.price-card.featured {
  color: white; background: linear-gradient(145deg, #271a37, #402953 60%, #1f3552);
  border: 0; transform: translateY(-8px);
}
.price { font-size: 3rem; font-weight: 900; letter-spacing: -.05em; margin: 12px 0; }
.price small { font-size: 1rem; font-weight: 650; letter-spacing: 0; }
.checks { list-style: none; padding: 0; margin: 22px 0; }
.checks li { margin: 11px 0; padding-left: 25px; position: relative; }
.checks li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 900; }
.featured .checks li::before { color: #8ce1be; }
.faq { max-width: 850px; }
details { border-bottom: 1px solid var(--line); padding: 20px 0; }
summary { cursor: pointer; font-weight: 850; font-size: 1.05rem; }
details p { color: var(--muted); }
.page-hero { padding: 86px 0 42px; }
.page-hero p { max-width: 720px; color: var(--muted); font-size: 1.13rem; }
.legal {
  max-width: 850px; margin: 0 auto; background: rgba(255,255,255,.88);
  padding: clamp(24px, 5vw, 58px); border: 1px solid var(--line);
  border-radius: 28px; box-shadow: 0 18px 60px rgba(49,30,61,.07);
}
.legal h2 { font-size: 2rem; margin-top: 42px; }
.legal h3 { font-family: inherit; letter-spacing: 0; line-height: 1.3; font-size: 1.1rem; margin-top: 24px; }
.legal p, .legal li { color: #514957; }
.notice { padding: 16px; border-radius: 14px; background: #fff4dd; border: 1px solid #f0d39c; }
.support-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.contact-card { padding: 28px; background: white; border: 1px solid var(--line); border-radius: 22px; }
.field { margin-bottom: 16px; }
label { display: block; margin-bottom: 7px; font-weight: 800; }
input, textarea, select {
  width: 100%; padding: 14px 15px; border: 1px solid rgba(35,24,47,.18);
  border-radius: 13px; background: #fff; font: inherit;
}
textarea { min-height: 150px; resize: vertical; }
.footer { margin-top: 70px; border-top: 1px solid var(--line); padding: 38px 0; background: rgba(255,255,255,.45); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; }
.footer-links { display: grid; gap: 9px; color: var(--muted); }
.footer-note { color: var(--muted); font-size: .9rem; margin-top: 30px; }
@media (max-width: 900px) {
  .hero-grid, .band-grid, .support-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .product-stage { min-height: 650px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: var(--cream); padding: 20px; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 26px, var(--max)); }
  .hero { padding-top: 60px; }
  h1 { font-size: 3.45rem; }
  .grid-3, .pricing-grid, .footer-grid { grid-template-columns: 1fr; }
  .band { padding: 34px 24px; border-radius: 26px; }
  .watch-card { right: 0; width: 165px; }
  .phone { width: 290px; min-height: 570px; }
  .section { padding: 70px 0; }
}
