:root {
  --red: #dc1328;
  --red-dark: #a90619;
  --green: #078f3e;
  --green-light: #35b53a;
  --ink: #131313;
  --muted: #696964;
  --paper: #ffffff;
  --soft: #f5f4ef;
  --cyan: #18c9d3;
  --yellow: #ffd51c;
  --line: rgba(19, 19, 19, .12);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; top: -100px; left: 16px; z-index: 1000; padding: 10px 16px; background: var(--ink); color: #fff; }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 132px) 0; }
.section-tight { padding: clamp(52px, 6vw, 84px) 0; }
.eyebrow { margin: 0 0 18px; color: var(--red); font-size: .78rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.display { margin: 0; font-size: clamp(3.2rem, 8vw, 7.5rem); line-height: .88; letter-spacing: -.07em; font-weight: 900; }
.title { margin: 0; font-size: clamp(2.35rem, 5vw, 4.8rem); line-height: .98; letter-spacing: -.055em; font-weight: 900; }
.subtitle { margin: 0; font-size: clamp(1.25rem, 2vw, 1.65rem); line-height: 1.25; letter-spacing: -.025em; }
.lead { max-width: 650px; margin: 22px 0 0; color: var(--muted); font-size: clamp(1.06rem, 1.8vw, 1.27rem); }
.muted { color: var(--muted); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-weight: 800; transition: transform .25s ease, background .25s ease, color .25s ease; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dark); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-light { background: #fff; color: var(--ink); }
.btn-outline { border-color: var(--ink); background: transparent; }
.btn-arrow::after { content: "↗"; font-size: 1.05em; }

.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); }
.nav { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 28px; }
.brand img { width: 148px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: .94rem; font-weight: 700; }
.nav-links a:not(.btn) { position: relative; padding: 12px 0; }
.nav-links a:not(.btn)::after { position: absolute; right: 0; bottom: 8px; left: 0; height: 2px; background: var(--red); content: ""; transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; font-size: 1.25rem; cursor: pointer; }

.hero { position: relative; min-height: calc(100svh - 78px); overflow: hidden; padding: clamp(34px, 5vw, 72px) 0; background: var(--soft); }
.hero-grid { display: grid; min-height: calc(100svh - 150px); grid-template-columns: .92fr 1.08fr; align-items: center; gap: clamp(28px, 5vw, 72px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .display span { color: var(--red); }
.hero-benefits { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-benefits span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.65); font-size: .84rem; font-weight: 750; }
.hero-stage { position: relative; min-height: 640px; }
.hero-image-main { position: absolute; inset: 0 2% 3% 11%; overflow: hidden; border-radius: 44px; transform: rotate(2.5deg); }
.hero-image-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-mini { position: absolute; bottom: 0; left: 0; width: 38%; overflow: hidden; border: 10px solid var(--soft); border-radius: 32px; transform: rotate(-6deg); }
.hero-image-mini img { aspect-ratio: 4/5; width: 100%; object-fit: cover; }
.orbit-label { position: absolute; top: 5%; right: -1%; display: grid; width: 118px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--red); color: #fff; text-align: center; font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; transform: rotate(9deg); }

.ticker { overflow: hidden; background: var(--ink); color: #fff; }
.ticker-track { display: flex; width: max-content; animation: ticker 24s linear infinite; }
.ticker span { display: inline-flex; align-items: center; gap: 26px; padding: 19px 16px; font-size: .86rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.ticker span::after { content: "✦"; color: var(--yellow); }
@keyframes ticker { to { transform: translateX(-50%); } }

.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 44px; }
.section-head .lead { max-width: 470px; margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.product-card { position: relative; grid-column: span 4; overflow: hidden; border-radius: var(--radius); background: var(--soft); transition: transform .3s ease; }
.product-card:nth-child(4), .product-card:nth-child(5) { grid-column: span 6; }
.product-card:hover { transform: translateY(-7px); }
.product-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.product-card:nth-child(4) .product-visual, .product-card:nth-child(5) .product-visual { aspect-ratio: 6/5; }
.product-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-visual img { transform: scale(1.04); }
.product-info { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px; }
.product-info h3 { margin: 0; font-size: 1.3rem; letter-spacing: -.03em; }
.product-info p { margin: 4px 0 0; color: var(--muted); font-size: .88rem; }
.product-go { display: grid; flex: 0 0 auto; width: 42px; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; transition: background .25s ease, transform .25s ease; }
.product-card:hover .product-go { background: var(--red); transform: rotate(45deg); }

.mobility { background: var(--ink); color: #fff; }
.mobility-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.mobility-visual { position: relative; overflow: hidden; border-radius: 42px; }
.mobility-visual img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.mobility-badge { position: absolute; right: 18px; bottom: 18px; max-width: 210px; padding: 18px; border-radius: 22px; background: var(--yellow); color: var(--ink); font-weight: 850; line-height: 1.15; transform: rotate(-2deg); }
.feature-list { display: grid; margin-top: 38px; }
.feature-row { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 25px 0; border-top: 1px solid rgba(255,255,255,.2); }
.feature-row strong { color: var(--yellow); font-size: 1.05rem; }
.feature-row h3 { margin: 0 0 6px; font-size: 1.35rem; }
.feature-row p { margin: 0; color: rgba(255,255,255,.68); }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit { min-height: 280px; padding: 30px; border-radius: var(--radius); }
.benefit:nth-child(1) { background: var(--cyan); }
.benefit:nth-child(2) { background: var(--yellow); }
.benefit:nth-child(3) { background: var(--red); color: #fff; }
.benefit-number { display: block; margin-bottom: 76px; font-size: .82rem; font-weight: 900; letter-spacing: .15em; }
.benefit h3 { margin: 0; font-size: 1.75rem; line-height: 1.05; letter-spacing: -.04em; }
.benefit p { margin: 12px 0 0; max-width: 32ch; }

.cta-band { overflow: hidden; background: var(--red); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 60px; align-items: center; }
.cta-image { overflow: hidden; border-radius: 38px; transform: rotate(2deg); }
.cta-image img { width: 100%; aspect-ratio: 4/4.5; object-fit: cover; }

.page-hero { padding: clamp(72px, 10vw, 138px) 0 64px; background: var(--soft); }
.page-hero .lead { max-width: 780px; }
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 34px; color: var(--muted); font-size: .86rem; }
.crumbs span { color: #aaa; }
.catalog-intro { display: grid; grid-template-columns: 1fr .8fr; gap: 50px; align-items: end; }

.product-detail { padding: 50px 0 100px; }
.product-detail-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(36px, 6vw, 88px); align-items: start; }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gallery figure { margin: 0; overflow: hidden; border-radius: 26px; background: var(--soft); }
.gallery figure:first-child { grid-column: 1 / -1; }
.gallery img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.gallery figure:first-child img { aspect-ratio: 5/5.4; }
.product-summary { position: sticky; top: 112px; }
.product-kicker { display: inline-flex; padding: 8px 12px; border-radius: 999px; background: var(--yellow); font-size: .78rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.product-summary h1 { margin: 18px 0 0; font-size: clamp(2.6rem, 5vw, 5.1rem); line-height: .95; letter-spacing: -.06em; }
.product-summary .lead { margin-top: 20px; }
.facts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 30px; }
.fact { padding: 18px; border-radius: 18px; background: var(--soft); }
.fact small { display: block; margin-bottom: 4px; color: var(--muted); }
.allergen { margin-top: 14px; padding: 18px; border-left: 5px solid var(--red); border-radius: 8px 18px 18px 8px; background: #fff0f1; }
.nutrition-wrap { margin-top: 38px; }
.nutrition-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 16px; }
.nutrition-head h2 { margin: 0; font-size: 1.6rem; }
.nutrition-head small { max-width: 310px; color: var(--muted); text-align: right; }
.nutrition-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--ink); }
.nutrition-table th, .nutrition-table td { padding: 12px 8px; border-bottom: 1px solid var(--line); text-align: right; }
.nutrition-table th:first-child, .nutrition-table td:first-child { padding-left: 0; text-align: left; }
.nutrition-table th { font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.content-card { padding: 25px; border-radius: 22px; background: var(--soft); }
.content-card h3 { margin: 0 0 8px; }
.content-card p { margin: 0; color: var(--muted); }

.prose { max-width: 820px; }
.prose h2 { margin: 52px 0 14px; font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: -.04em; }
.prose h3 { margin: 34px 0 10px; font-size: 1.25rem; }
.prose p, .prose li { color: #44443f; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 3px; }
.prose ul { padding-left: 22px; }
.prose .legal-note { margin: 30px 0; padding: 20px; border-radius: 18px; background: var(--soft); }

.contact-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 24px; }
.contact-card, .form-card { padding: clamp(26px, 4vw, 44px); border-radius: var(--radius); background: var(--soft); }
.contact-card { background: var(--ink); color: #fff; }
.contact-card h2, .form-card h2 { margin: 0 0 22px; font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.04em; }
.contact-list { display: grid; gap: 16px; }
.contact-item { padding-top: 16px; border-top: 1px solid rgba(255,255,255,.18); }
.contact-item small { display: block; margin-bottom: 3px; color: rgba(255,255,255,.6); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 800; }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; border: 1px solid var(--line); border-radius: 14px; background: #fff; padding: 12px 14px; color: var(--ink); outline: none; }
.field textarea { min-height: 132px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(220,19,40,.1); }
.check { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-size: .86rem; }
.check input { margin-top: 5px; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 72px 0 30px; background: #0c0c0c; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr .8fr; gap: 40px; }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.footer-brand p { max-width: 360px; color: rgba(255,255,255,.58); }
.footer-col h3 { margin: 0 0 16px; font-size: .84rem; color: rgba(255,255,255,.5); letter-spacing: .12em; text-transform: uppercase; }
.footer-col a { display: block; margin: 10px 0; color: rgba(255,255,255,.82); }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.48); font-size: .82rem; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.error-page { display: grid; min-height: 70svh; place-items: center; text-align: center; }

@media (max-width: 980px) {
  .nav-links { position: fixed; inset: 78px 0 auto; display: grid; gap: 0; padding: 22px 20px 30px; background: #fff; border-bottom: 1px solid var(--line); transform: translateY(-130%); transition: transform .35s ease; }
  .menu-open .nav-links { transform: translateY(0); }
  .nav-links a { padding: 15px 0 !important; border-bottom: 1px solid var(--line); }
  .nav-links .btn { margin-top: 14px; }
  .menu-toggle { display: grid; place-items: center; }
  .hero-grid, .mobility-grid, .cta-grid, .product-detail-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-stage { min-height: 600px; }
  .hero { min-height: auto; }
  .product-card { grid-column: span 6; }
  .product-card:nth-child(4), .product-card:nth-child(5) { grid-column: span 6; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit { min-height: 230px; }
  .benefit-number { margin-bottom: 46px; }
  .product-summary { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav { min-height: 70px; }
  .brand img { width: 126px; }
  .nav-links { top: 70px; }
  .hero { padding-top: 40px; }
  .hero-grid { min-height: auto; }
  .hero-stage { min-height: 490px; margin-top: 8px; }
  .hero-image-main { inset: 0 0 5% 4%; border-radius: 30px; }
  .hero-image-mini { width: 42%; border-width: 7px; border-radius: 24px; }
  .orbit-label { top: 2%; right: -5px; width: 92px; font-size: .66rem; }
  .section-head { display: block; }
  .section-head .lead { margin-top: 18px; }
  .product-grid { display: flex; margin-inline: -14px; padding-inline: 14px; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .product-grid::-webkit-scrollbar { display: none; }
  .product-card, .product-card:nth-child(4), .product-card:nth-child(5) { flex: 0 0 82vw; scroll-snap-align: center; }
  .product-card:nth-child(4) .product-visual, .product-card:nth-child(5) .product-visual { aspect-ratio: 4/5; }
  .catalog-page .product-grid { display: grid; margin: 0; padding: 0; overflow: visible; grid-template-columns: 1fr; }
  .catalog-page .product-card { width: auto; }
  .gallery { gap: 8px; }
  .gallery figure { border-radius: 18px; }
  .facts, .content-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .nutrition-table { font-size: .85rem; }
  .nutrition-head { display: block; }
  .nutrition-head small { display: block; margin-top: 8px; text-align: left; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
