@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700;800&family=Inter:wght@400;450;500;600&display=swap');

:root {
  --bg: #07070a;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e9e9f0;
  --muted: #9a9aa7;
  --heading: #ffffff;
  --ring: rgba(245, 158, 11, 0.55);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.75);
  --shadow-sm: 0 12px 30px -16px rgba(0, 0, 0, 0.6);
  --radius: 22px;
  --wrap: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 520px at 82% -8%, rgba(245, 158, 11, 0.16), transparent 60%),
    radial-gradient(760px 520px at 6% 3%, rgba(244, 63, 94, 0.12), transparent 58%),
    radial-gradient(1000px 720px at 50% 118%, rgba(99, 102, 241, 0.10), transparent 60%),
    var(--bg);
  background-attachment: fixed;
}

h1, h2, h3 { color: var(--heading); font-family: 'Inter Tight', 'Inter', sans-serif; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 .5em; }
h1 { font-size: 2.4rem; font-weight: 800; }
h2 { font-size: 1.7rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: #f5a35a; text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--muted); }

.accent-text {
  background: linear-gradient(100deg, #fbbf24 0%, #f97316 42%, #fb7185 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* Header */
.site-header { position: sticky; top: 0; z-index: 30; padding-top: 14px; }
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(12, 12, 16, 0.6);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 12px 10px 16px;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; color: var(--heading); font-size: 1.02rem; }
.brand:hover { text-decoration: none; }
.brand .mark {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(150deg, #fcd34d, #f97316); color: #fff;
  display: grid; place-items: center; font-size: .78rem; font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 6px 14px -6px rgba(249,115,22,.6);
}
.nav { display: flex; gap: 6px; font-size: .92rem; }
.nav a { color: var(--muted); padding: 6px 12px; border-radius: 999px; }
.nav a:hover { color: var(--heading); background: var(--surface); text-decoration: none; }
@media (max-width: 620px) { .nav { display: none; } }

/* Hero */
.hero { padding: 72px 0 44px; }
.hero.center { text-align: center; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
.hero .sub { font-size: 1.2rem; color: var(--muted); max-width: 640px; margin: 18px auto 0; }
.hero.center .sub { margin-left: auto; margin-right: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); background: var(--surface);
  border-radius: 999px; padding: 6px 14px; font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 999px; background: #fb923c; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; justify-content: center;
  font-weight: 600; border-radius: 999px; padding: 12px 22px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(100deg, #fbbf24, #f97316 55%, #fb7185); color: #fff;
  box-shadow: 0 14px 32px -12px rgba(249, 115, 22, .6), inset 0 1px 0 rgba(255,255,255,.45);
}
.btn-primary:hover { filter: brightness(1.05); color: #fff; box-shadow: 0 20px 42px -14px rgba(249,115,22,.72), inset 0 1px 0 rgba(255,255,255,.45); }
.btn-ghost, .btn-outline { background: var(--surface); color: var(--text); border-color: var(--border-strong); }
.btn-ghost:hover, .btn-outline:hover { color: var(--heading); border-color: var(--ring); }

/* Product grid + cards */
.grid { display: grid; gap: 22px; }
@media (min-width: 800px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-5px); border-color: var(--border-strong); box-shadow: var(--shadow); }
.card .tag { font-size: .74rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.card h3 { font-size: 1.3rem; margin-top: 14px; }
.card .price { font-size: 1.9rem; font-weight: 800; color: var(--heading); font-family: 'Inter Tight', sans-serif; margin: 4px 0 12px; }
.card p { color: var(--muted); flex: 1; }
.card .btn { margin-top: 18px; }

/* iOS-style shaded rounded icon tiles */
.tile {
  position: relative; width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; color: #fff; flex: none;
  box-shadow: 0 10px 22px -8px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.35), inset 0 -8px 16px rgba(0,0,0,.18);
}
.tile svg { width: 27px; height: 27px; filter: drop-shadow(0 1px 1px rgba(0,0,0,.3)); }
.tile::after { content:""; position:absolute; inset:0; border-radius:inherit; background:linear-gradient(180deg, rgba(255,255,255,.28), transparent 45%); mix-blend-mode:screen; }
.tile-sm { width: 42px; height: 42px; border-radius: 13px; }
.tile-sm svg { width: 21px; height: 21px; }
.g-amber  { background: linear-gradient(155deg, #fcd34d, #f97316); }
.g-rose   { background: linear-gradient(155deg, #fb923c, #f43f5e); }
.g-violet { background: linear-gradient(155deg, #a78bfa, #6366f1); }
.g-emerald{ background: linear-gradient(155deg, #34d399, #0ea5e9); }
.g-slate  { background: linear-gradient(155deg, #94a3b8, #475569); }

/* Panels / prose / SEO pages */
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); }
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.7em; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: .45em; color: var(--text); }
.lead { font-size: 1.2rem; color: var(--heading); }
.pill { display: inline-block; background: var(--surface); border: 1px solid var(--border); color: #f5a35a; border-radius: 999px; padding: 5px 14px; font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }

.cta-band {
  position: relative; overflow: hidden; border: 1px solid var(--border);
  background: var(--surface-2); border-radius: var(--radius); padding: 40px; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 560px; height: 260px; border-radius: 999px; opacity: .55; filter: blur(60px);
  background: radial-gradient(circle, rgba(249,115,22,.5), transparent 70%);
}
.cta-band > * { position: relative; }

/* Footer */
.site-footer { border-top: 1px solid var(--border); padding: 34px 0; margin-top: 32px; color: var(--muted); font-size: .92rem; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
.site-footer a { color: var(--text); }

/* Gentle entrance */
@keyframes riseIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.rise { animation: riseIn .7s cubic-bezier(.2,.7,.2,1) both; }
.rise-2 { animation-delay: .08s; }
.rise-3 { animation-delay: .16s; }
.rise-4 { animation-delay: .24s; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .rise { animation: none; } }

:focus-visible { outline: 2px solid var(--ring); outline-offset: 3px; border-radius: 8px; }
