:root {
  --bg: #0b1020;
  --bg-soft: #121a30;
  --panel: #161f38;
  --ink: #e8ecf6;
  --muted: #9aa6c4;
  --accent: #7c8cff;
  --accent-2: #56e0c8;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 16px;
  --maxw: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: "Fraunces", Georgia, serif; font-weight: 600; line-height: 1.1; }
a { color: inherit; text-decoration: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 16, 32, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  display: grid; place-items: center; width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), #5b6bff);
  color: #fff; border-radius: 10px;
  font-family: "Fraunces", serif; font-size: 22px; font-weight: 600;
}
.brand-text { font-family: "Fraunces", serif; font-size: 20px; font-weight: 600; color: #fff; }
.brand-sub { color: var(--accent); margin-left: 5px; }
.nav { display: flex; gap: 28px; }
.nav a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: #fff; }

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 78% -8%, rgba(124, 140, 255, 0.28), transparent 60%),
    radial-gradient(700px 360px at 8% 110%, rgba(86, 224, 200, 0.16), transparent 60%),
    var(--bg);
  padding: 110px 0 120px;
}
.eyebrow { text-transform: uppercase; letter-spacing: 3px; font-size: 12.5px; font-weight: 600; color: var(--accent-2); margin-bottom: 22px; }
.hero h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); color: #fff; margin-bottom: 24px; }
.hero h1 .accent { color: var(--accent); }
.lede { max-width: 620px; font-size: clamp(1.02rem, 2vw, 1.18rem); color: var(--muted); margin-bottom: 36px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; padding: 13px 26px; border-radius: 999px; font-weight: 600; font-size: 15px; transition: transform 0.15s, box-shadow 0.2s, background 0.2s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: #0b1020; box-shadow: 0 10px 30px rgba(124, 140, 255, 0.4); }
.btn-primary:hover { background: #97a4ff; }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.06); }

/* Sections */
section { padding: 88px 0; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); color: #fff; margin-bottom: 10px; }
.section-sub { color: var(--muted); font-size: 1.05rem; margin-bottom: 44px; }

/* What we do */
.what { background: var(--bg-soft); }
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; margin-top: 28px; }
.feature { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; }
.feature-ico { font-size: 26px; color: var(--accent); margin-bottom: 14px; }
.feature h3 { font-size: 1.25rem; color: #fff; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 0.97rem; }

/* Products */
.products { background: var(--bg); }
.product {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center;
  padding: 40px 0; border-top: 1px solid var(--line);
}
.product:first-of-type { border-top: none; }
.product.reverse .product-media { order: 2; }
.product-media { position: relative; }
.product-media > img {
  width: 100%; border-radius: 14px; border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45); display: block;
}
.product-media .phone {
  position: absolute; right: -10px; bottom: -22px; width: 26%;
  border-radius: 16px; box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55);
}
.ptag { display: inline-block; font-size: 11.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-2); background: rgba(86, 224, 200, 0.1); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.product-body h3 { font-size: 1.9rem; color: #fff; margin-bottom: 12px; }
.product-body p { color: var(--muted); margin-bottom: 18px; }
.product-link { font-weight: 600; color: var(--accent); }
.product-link:hover { text-decoration: underline; }
.product-link.muted { color: var(--muted); font-weight: 500; }
.product-link.muted:hover { text-decoration: none; }

/* Contact */
.contact { background: var(--bg-soft); }
.contact-inner { max-width: 680px; }
.contact-detail { font-size: 1.1rem; margin-top: 6px; color: var(--muted); }
.contact-detail a { color: var(--accent); font-weight: 600; }

/* Footer */
.site-footer { background: #070b16; color: var(--muted); padding: 28px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; font-size: 14px; flex-wrap: wrap; gap: 10px; }
.site-footer a { color: var(--accent); }

@media (max-width: 760px) {
  .product { grid-template-columns: 1fr; gap: 24px; padding: 36px 0; }
  .product.reverse .product-media { order: 0; }
  .product-media .phone { width: 30%; right: 4px; }
}

@media (max-width: 600px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 88px; }
  .header-inner { flex-direction: column; height: auto; padding: 10px 0; gap: 8px; }
  .nav { gap: 22px; }
}
