:root {
  --bg: #0a0a0b;
  --frame: #121215;
  --frame-border: rgba(255, 255, 255, 0.12);
  --text: #f3f4f6;
  --muted: #a4a7b0;
  --green: #34d399;
  --blue: #60a5fa;
}
* { box-sizing: border-box; }
html, body {
  margin: 0;
  width: 100%;
  min-height: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  scroll-behavior: smooth;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.site-shell { position: relative; width: 100%; min-height: 100vh; overflow: hidden; padding: clamp(0.75rem, 3vw, 2.25rem); isolation: isolate; }
.frame { position: relative; margin: 0 auto; width: min(1120px, 100%); border-radius: 28px; border: 1px solid var(--frame-border); background: linear-gradient(155deg, rgba(23, 23, 28, 0.95), rgba(13, 13, 16, 0.95)); box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 28px 80px rgba(0, 0, 0, 0.5); padding: clamp(1rem, 2vw, 2rem); }
.bg-orb { position: absolute; z-index: -3; border-radius: 999px; filter: blur(80px); opacity: 0.3; pointer-events: none; }
.bg-orb-green { width: min(42vw, 580px); height: min(42vw, 580px); left: -12vw; top: -15vh; background: radial-gradient(circle, color-mix(in srgb, var(--green) 55%, transparent) 0%, transparent 72%); }
.bg-orb-blue { width: min(40vw, 540px); height: min(40vw, 540px); right: -12vw; top: 24vh; background: radial-gradient(circle, color-mix(in srgb, var(--blue) 50%, transparent) 0%, transparent 72%); }
.grain { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.13; background-image: radial-gradient(rgba(255, 255, 255, 0.7) 0.5px, transparent 0.5px); background-size: 3px 3px; mix-blend-mode: soft-light; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0.45rem 0.25rem 0.9rem; }
.brand { font-weight: 600; letter-spacing: -0.02em; }
.nav-links { display: flex; gap: 1rem; color: var(--muted); font-size: 0.92rem; }
.nav-links a:hover { color: var(--text); }
.hero { display: grid; grid-template-columns: 1fr; align-items: center; gap: 1.4rem; padding: clamp(2.2rem, 7vw, 5.5rem) clamp(0.25rem, 2vw, 1.2rem) clamp(1.3rem, 5vw, 3.2rem); }
.hero-copy { position: relative; z-index: 1; min-width: 0; }
.hero-visual-wrap { position: relative; justify-self: center; width: 100%; max-width: 580px; max-height: 380px; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)); }
.hero-visual { width: 100%; display: block; opacity: 0.84; }
.eyebrow { margin: 0; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero h1 { margin: 0.85rem 0 0; max-width: 16ch; font-weight: 700; letter-spacing: -0.035em; line-height: 1; font-size: clamp(2.45rem, 8vw, 4.6rem); }
.subhead { margin: 1.15rem 0 0; max-width: 46ch; color: var(--muted); font-size: clamp(1rem, 2.4vw, 1.25rem); line-height: 1.6; }
.hero-cta { display: inline-flex; align-items: center; gap: 0.45rem; margin-top: 1.7rem; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.03); padding: 0.62rem 0.95rem; font-size: 0.9rem; color: #d7d9df; }
.section-divider { margin: 0 clamp(0.25rem, 2vw, 1.2rem) clamp(1.2rem, 3.2vw, 2rem); max-height: 80px; overflow: hidden; border-radius: 12px; }
.divider-image { width: 100%; display: block; opacity: 0.18; }
.products { padding: 0 clamp(0.25rem, 2vw, 1.2rem) clamp(2.4rem, 7vw, 4.4rem); }
.section-label { margin: 0 0 1rem; color: var(--muted); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.78rem; letter-spacing: 0.13em; text-transform: uppercase; }
.product-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.product-card { position: relative; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.15); background: linear-gradient(150deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)); backdrop-filter: blur(12px); padding: 1.1rem; }
.card-green { border-color: color-mix(in srgb, var(--green) 42%, rgba(255, 255, 255, 0.16)); }
.card-blue { border-color: color-mix(in srgb, var(--blue) 42%, rgba(255, 255, 255, 0.16)); }
.product-visual-wrap { width: clamp(120px, 34vw, 156px); margin: 0 0 0.95rem; }
.product-visual { width: 100%; display: block; opacity: 0.78; }
.product-icon { width: 2.2rem; height: 2.2rem; border-radius: 0.7rem; display: grid; place-items: center; margin-bottom: 1rem; }
.card-green .product-icon { color: var(--green); background: color-mix(in srgb, var(--green) 14%, transparent); border: 1px solid color-mix(in srgb, var(--green) 35%, transparent); }
.card-blue .product-icon { color: var(--blue); background: color-mix(in srgb, var(--blue) 14%, transparent); border: 1px solid color-mix(in srgb, var(--blue) 35%, transparent); }
.product-icon svg { width: 1.15rem; height: 1.15rem; }
.product-name { margin: 0; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; color: #c8ccd4; }
.product-card h2 { margin: 0.6rem 0 0; font-size: clamp(1.25rem, 2.2vw, 1.55rem); line-height: 1.2; }
.tagline { margin: 0.62rem 0 0; color: #dce0e8; line-height: 1.5; }
.description { margin: 0.78rem 0 0; color: var(--muted); line-height: 1.66; font-size: 0.95rem; }
.product-cta { display: inline-flex; margin-top: 1.1rem; font-size: 0.9rem; font-weight: 500; border-radius: 0.6rem; padding: 0.5rem 0.75rem; border: 1px solid rgba(255, 255, 255, 0.14); background: rgba(5, 5, 6, 0.36); }
.about-strip { margin: 0 clamp(0.25rem, 2vw, 1.2rem) clamp(1.2rem, 3vw, 2.1rem); border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.03); padding: 1rem 1.1rem; color: #d2d5dd; }
.footer { border-top: 1px solid rgba(255, 255, 255, 0.12); margin-top: 0.2rem; padding: 1.1rem 0.35rem 0.5rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.42rem; font-size: 0.88rem; }
@media (min-width: 768px) { .hero { grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr); gap: clamp(1.2rem, 3vw, 2.2rem); } .hero-visual-wrap { justify-self: end; width: min(46vw, 540px); max-height: 430px; } }
@media (min-width: 880px) { .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; } }
@media (max-width: 560px) { .site-shell { padding: 0.5rem; } .frame { border-radius: 20px; padding: 0.75rem; overflow: hidden; } .product-visual-wrap, .section-divider { display: none; } }
@media (max-width: 480px) { .hero-visual-wrap { display: none; } }
