:root {
  --bg: #08111f;
  --bg-soft: #101c30;
  --surface: #f8fafc;
  --surface-strong: #ffffff;
  --surface-dark: #0f172a;
  --line: #d9e2ec;
  --text: #122033;
  --muted: #526277;
  --heading: #08111f;
  --accent: #8fb7ff;
  --accent-strong: #5f8cff;
  --accent-warm: #d6a56f;
  --success: #bfd6c7;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(8, 17, 31, 0.10);
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif; background: var(--surface); color: var(--text); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; border-radius: 16px; }
h1, h2, h3 { margin: 0 0 0.75rem; line-height: 1.1; color: var(--heading); }
p { margin: 0 0 1rem; }
ul, ol { margin: 0; padding-left: 1.2rem; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.narrow { max-width: 760px; }
.skip-link { position: absolute; left: -999px; }
.skip-link:focus { left: 1rem; top: 1rem; background: #fff; padding: 0.75rem 1rem; z-index: 1000; border-radius: 12px; }
.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: blur(12px); background: rgba(8, 17, 31, 0.82); border-bottom: 1px solid rgba(255,255,255,0.06); }
.header-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; padding: 0.75rem 0; }
.brand { display: inline-flex; align-items: center; gap: 0.9rem; color: #fff; }
.brand strong { display: block; font-size: 1rem; }
.brand small { color: rgba(255,255,255,0.7); }
.brand-mark { width: 44px; height: 44px; border-radius: 14px; display: inline-grid; place-items: center; background: linear-gradient(135deg, var(--accent-strong), var(--accent-warm)); color: #08111f; font-weight: 800; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 0.6rem; color: rgba(255,255,255,0.88); }
.site-nav a { padding: 0.6rem 0.8rem; border-radius: 999px; }
.site-nav a:hover { background: rgba(255,255,255,0.08); }
.menu-toggle { display: none; }
.hero-section { padding: 5rem 0 3rem; background: radial-gradient(circle at top left, rgba(143, 183, 255, 0.20), transparent 35%), linear-gradient(180deg, #08111f 0%, #101c30 100%); color: #fff; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr); gap: 2rem; align-items: stretch; }
.hero-section h1, .hero-section h2 { color: #fff; }
.lead { font-size: 1.1rem; color: inherit; opacity: 0.92; }
.eyebrow { display: inline-flex; margin-bottom: 0.9rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-warm); font-weight: 700; }
.hero-panel, .card { background: var(--surface-strong); color: var(--text); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.hero-panel { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.12); }
.hero-panel h2, .hero-panel h3 { color: #fff; }
.journey-list { display: grid; gap: 0.8rem; margin-bottom: 1.25rem; }
.button-row, .button-stack { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.button-stack { flex-direction: column; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0.9rem 1.2rem; border-radius: 999px; font-weight: 700; }
.button-block { width: 100%; }
.button-primary { background: linear-gradient(135deg, var(--accent-strong), var(--accent)); color: #08111f; }
.button-secondary { background: transparent; border: 1px solid currentColor; }
.text-link { color: var(--accent-strong); font-weight: 700; }
.text-link.light { color: #fff; }
.section { padding: 4rem 0; }
.section-soft { background: #eef4fb; }
.section-dark { background: var(--surface-dark); color: #fff; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-bottom: 1.5rem; }
.card-grid { display: grid; gap: 1.25rem; }
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.media-card img, .product-card img, .machine-card img { aspect-ratio: 4 / 3; object-fit: cover; margin-bottom: 1rem; background: linear-gradient(135deg, #cfdcf5, #eef4fb); }
.product-row { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.split-panel, .detail-grid, .form-shell { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.accent-card { background: linear-gradient(180deg, #0f172a, #1b2840); color: #fff; border-color: rgba(255,255,255,0.08); }
.accent-card h2, .accent-card h3, .accent-card .eyebrow { color: #fff; }
.info-card { background: #fff; }
.feature-list { display: grid; gap: 0.7rem; margin-top: 1rem; }
.trust-inline { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.25rem; padding: 0; list-style: none; }
.trust-inline li { padding: 0.7rem 0.9rem; background: rgba(255,255,255,0.08); border-radius: 999px; }
.page-hero { padding: 4rem 0 1rem; background: linear-gradient(180deg, #eaf1fb, #f8fafc); }
.product-layout { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr); gap: 1.5rem; align-items: start; }
.product-gallery { display: grid; gap: 1rem; }
.product-summary { position: sticky; top: 96px; }
.price { font-size: 2rem; font-weight: 800; margin: 0 0 1rem; color: var(--heading); }
.detail-block + .detail-block { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.form-card label { display: grid; gap: 0.5rem; margin-bottom: 1rem; font-weight: 600; }
.form-card input, .form-card textarea { width: 100%; padding: 0.9rem 1rem; border: 1px solid var(--line); border-radius: 14px; font: inherit; }
.site-footer { background: var(--surface-dark); color: #fff; padding: 3rem 0; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr; gap: 1.5rem; }
.footer-grid h2, .footer-grid h3 { color: #fff; }
.footer-grid ul { list-style: none; padding: 0; display: grid; gap: 0.5rem; }
.muted { color: rgba(255,255,255,0.68); }
@media (max-width: 960px) {
  .hero-grid, .product-layout, .three-up, .two-up, .split-panel, .detail-grid, .form-shell, .footer-grid { grid-template-columns: 1fr; }
  .product-summary { position: static; }
}
@media (max-width: 760px) {
  .menu-toggle { display: inline-flex; border: 1px solid rgba(255,255,255,0.18); background: transparent; color: #fff; border-radius: 999px; padding: 0.75rem 1rem; }
  .site-nav { display: none; position: absolute; top: 78px; left: 1rem; right: 1rem; flex-direction: column; align-items: stretch; background: #0f172a; padding: 1rem; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); }
  .site-nav.open { display: flex; }
  .section-heading { align-items: start; flex-direction: column; }
  .trust-inline { flex-direction: column; }
}
