/* Premium minimal product landing styles */

:root {
  --color-primary: #0F172A;
  --color-secondary: #94A3B8;
  --color-accent: #7DD3FC;
  --font-main: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  --radius: 16px;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.10);
  --spacing: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  background: #FFFFFF;
  color: var(--color-primary);
  font-family: var(--font-main);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(125, 211, 252, 0.9);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #fff;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.6);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 14px var(--spacing);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(125, 211, 252, 0.55);
  overflow: hidden;
}

.brand-name {
  font-weight: 800;
  letter-spacing: 0.2px;
  line-height: 1.1;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.nav-inline {
  display: none;
  gap: 18px;
  align-items: center;
}

.nav-inline a {
  font-size: 13px;
  font-weight: 650;
  color: rgba(15, 23, 42, 0.9);
  padding: 10px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.nav-inline a:hover {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(125, 211, 252, 0.06);
  transform: translateY(-1px);
}

.burger {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease;
}

.burger:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.7);
}

.burger-lines {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 14px;
}

.burger-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 23, 42, 0.92);
  border-radius: 999px;
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.burger-lines span:nth-child(1) {
  top: 1px;
}
.burger-lines span:nth-child(2) {
  top: 6px;
}
.burger-lines span:nth-child(3) {
  top: 11px;
}

.burger[data-open="true"] .burger-lines span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.burger[data-open="true"] .burger-lines span:nth-child(2) {
  opacity: 0;
}
.burger[data-open="true"] .burger-lines span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.52);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 18px;
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.menu-overlay[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.menu-panel {
  width: min(720px, 100%);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 22px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(10px) scale(0.99);
  transition: transform 240ms ease;
}

.menu-overlay[data-open="true"] .menu-panel {
  transform: translateY(0) scale(1);
}

.menu-panel-top {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.menu-title {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.2px;
}

.menu-close {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease;
}

.menu-close:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 211, 252, 0.7);
}

.menu-items {
  padding: 18px 16px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.menu-item-card {
  border-radius: var(--radius);
  border: 0.5px solid rgba(125, 211, 252, 0.65);
  padding: 14px 14px;
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.menu-item-card:hover {
  transform: translateY(-2px) scale(1.01);
  background: rgba(125, 211, 252, 0.06);
}

.menu-item-card a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

.menu-item-card small {
  font-weight: 650;
  color: var(--color-secondary);
}

.main {
  flex: 1;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--spacing);
}

.section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 18px;
  display: grid;
  gap: 10px;
}

.section-head .kicker {
  color: var(--color-secondary);
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 13px;
}

.section-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.4px;
}

.section-head p {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  max-width: 68ch;
  line-height: 1.65;
}

.hero {
  padding: 48px 0 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.hero-card {
  border-radius: 22px;
  border: 0.5px solid rgba(125, 211, 252, 0.35);
  padding: 18px;
  overflow: hidden;
  position: relative;
}

.order-hero-media {
  position: relative;
  margin: 0 0 14px 0;
  border-radius: 20px;
  border: 0.5px solid rgba(125, 211, 252, 0.38);
  background:
    radial-gradient(circle at 30% 25%, rgba(125, 211, 252, 0.18), rgba(125, 211, 252, 0) 60%),
    radial-gradient(circle at 70% 30%, rgba(148, 163, 184, 0.18), rgba(148, 163, 184, 0) 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(255, 255, 255, 0));
  padding: 16px;
}

.order-hero-product {
  width: 100%;
  height: auto;
  max-height: min(420px, 55vh);
  object-fit: contain;
  object-position: center;
  display: block;
  filter: saturate(1.02);
}

.order-hero-overlay {
  margin-top: 12px;
  border-radius: 18px;
  border: 0.5px solid rgba(125, 211, 252, 0.55);
  background: rgba(255, 255, 255, 0.72);
  padding: 14px 14px;
  backdrop-filter: blur(10px);
}

@media (min-width: 700px) {
  .order-hero-media {
    padding: 18px;
  }

  .order-hero-overlay {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    margin-top: 0;
    max-width: 460px;
  }
}

@media (max-width: 480px) {
  .order-hero-media {
    padding: 12px;
  }

  .order-hero-product {
    max-height: 44vh;
  }

  .order-hero-overlay {
    padding: 12px;
  }
}

.order-hero-overlay .badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.55);
  color: rgba(15, 23, 42, 0.88);
  font-weight: 800;
  font-size: 12px;
}

.order-hero-overlay .badge .dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.95);
  box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.18);
}

.order-hero-overlay .meta {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.stars {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 14px;
}

.stars .star {
  color: rgba(125, 211, 252, 0.95);
  letter-spacing: 2px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.old-price {
  color: rgba(148, 163, 184, 1);
  font-weight: 750;
  text-decoration: line-through;
  font-size: 14px;
}

.hero-content {
  padding: 6px 2px 0;
}

.hero-title {
  margin: 0 0 12px 0;
  font-size: 44px;
  letter-spacing: -1px;
  line-height: 1.05;
}

.hero-sub {
  margin: 0 0 18px 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.65;
  max-width: 68ch;
  font-size: 15px;
}

.hero-origin-heading {
  margin: 10px 0 14px 0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.25px;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.hero-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.order-wrap {
  border-radius: 22px;
  border: 0.5px solid rgba(125, 211, 252, 0.35);
  padding: 18px;
  background:
    radial-gradient(circle at 10% 10%, rgba(125, 211, 252, 0.12), rgba(255, 255, 255, 0) 60%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.02), rgba(255, 255, 255, 0));
}

.order-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.order-top h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.trust-badge {
  font-size: 12px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
}

.order-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.order-form {
  display: grid;
  gap: 12px;
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

label {
  font-weight: 800;
  font-size: 12px;
  color: rgba(15, 23, 42, 0.85);
}

input,
textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 12px 12px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.85);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: rgba(125, 211, 252, 0.85);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.18);
  outline: none;
}

.error {
  color: #b91c1c;
  font-size: 12px;
  font-weight: 750;
  min-height: 14px;
}

.gdpr-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 14px;
  padding: 12px 12px;
  border: 0.5px solid rgba(148, 163, 184, 0.35);
  background: rgba(255, 255, 255, 0.7);
}

.gdpr-row input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.gdpr-text {
  color: rgba(15, 23, 42, 0.82);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.btn {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(125, 211, 252, 0.75);
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  color: rgba(15, 23, 42, 0.95);
}

.btn.secondary {
  background: rgba(255, 255, 255, 0.75);
  color: rgba(15, 23, 42, 0.95);
}

.btn.secondary:hover {
  background: rgba(15, 23, 42, 0.95);
  color: #fff;
}

.order-image {
  margin-top: 12px;
  border-radius: 18px;
  border: 0.5px solid rgba(125, 211, 252, 0.45);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.4);
}

.order-image img {
  width: 100%;
  height: auto;
}

.legal-disclaimer {
  margin-top: 16px;
  border-radius: 18px;
  border: 0.5px solid rgba(148, 163, 184, 0.35);
  padding: 14px;
  background: rgba(255, 255, 255, 0.7);
}

.legal-disclaimer strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.legal-disclaimer p {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.6;
  font-size: 13px;
}

.grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.card {
  border-radius: 18px;
  border: 0.5px solid rgba(125, 211, 252, 0.32);
  padding: 14px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.card:hover {
  transform: translateY(-2px) scale(1.01);
  border-color: rgba(125, 211, 252, 0.75);
  background: rgba(255, 255, 255, 1);
}

.card h3 {
  margin: 0 0 8px 0;
  font-size: 16px;
}

.card p {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.65;
  font-size: 14px;
}

.figure-logo {
  border-radius: 18px;
  border: 0.5px solid rgba(125, 211, 252, 0.45);
  padding: 16px;
  background: rgba(255, 255, 255, 0.65);
}

.figure-logo img {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 18px;
  border: 0.5px solid rgba(125, 211, 252, 0.35);
  background: rgba(255, 255, 255, 0.88);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.95);
}

.faq-question span {
  color: rgba(125, 211, 252, 0.95);
  font-weight: 900;
}

.faq-answer {
  padding: 0 14px 14px;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.7;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 120;
  margin: 0 auto;
  width: min(980px, calc(100% - 24px));
  background: rgba(255, 255, 255, 0.92);
  border-radius: 18px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 12px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.6;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.cookie-settings {
  border-radius: 16px;
  border: 0.5px solid rgba(148, 163, 184, 0.35);
  padding: 12px;
}

.cookie-settings .row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 10px;
}

.cookie-settings input {
  width: 18px;
  height: 18px;
  padding: 0;
}

.cookie-settings label {
  font-size: 13px;
  font-weight: 800;
  color: rgba(15, 23, 42, 0.85);
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 22px 0;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 var(--spacing);
  display: grid;
  gap: 10px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer-inner .copy {
  color: rgba(15, 23, 42, 0.82);
  font-weight: 650;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  font-weight: 800;
  color: rgba(15, 23, 42, 0.84);
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  border-color: rgba(125, 211, 252, 0.5);
  background: rgba(125, 211, 252, 0.06);
  transform: translateY(-1px);
}

.cursor-ring {
  position: fixed;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.65);
  pointer-events: none;
  z-index: 200;
  transform: translate(calc(var(--x, 0) * 1px - 19px), calc(var(--y, 0) * 1px - 19px)) scale(1);
  opacity: 0;
  transition: opacity 120ms ease, transform 120ms ease;
}

.cursor-ring.is-visible {
  opacity: 1;
}

.cursor-ring.is-clicked {
  transform: translate(calc(var(--x, 0) * 1px - 19px), calc(var(--y, 0) * 1px - 19px)) scale(0.55);
}

.menu-item-card,
.card,
.faq-item,
.order-hero-media,
.order-hero-overlay,
.order-wrap,
.order-image img {
  will-change: transform;
}

.policy-legal {
  border-radius: 22px;
  border: 0.5px solid rgba(125, 211, 252, 0.35);
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
}

.policy-legal h2 {
  margin-top: 0;
}

.policy-legal h3 {
  margin-top: 20px;
  font-size: 16px;
}

.policy-legal p,
.policy-legal li {
  color: rgba(15, 23, 42, 0.82);
  line-height: 1.7;
  font-size: 14px;
}

.policy-legal ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.policy-legal .last-updated {
  margin-top: 10px;
  color: rgba(148, 163, 184, 1);
  font-weight: 800;
  font-size: 12px;
}

@media (min-width: 700px) {
  .hero-grid {
    gap: 20px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-grid-2 {
    grid-template-columns: 1fr;
  }

  .order-form-grid {
    grid-template-columns: 1fr;
  }

  .field-pair {
    grid-template-columns: 1fr 1fr;
  }

  .grid-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-inline {
    display: flex;
    justify-content: center;
  }

  .burger {
    display: none;
  }

  .grid-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-inline {
    display: none;
  }
}

/* Production landing styles (minimal + premium). */
:root{
  --color-primary:#0F172A;
  --color-secondary:#94A3B8;
  --color-accent:#7DD3FC;
  --font-main:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  --radius:16px;
  --shadow:0 12px 30px rgba(2,6,23,.10);
  --spacing:16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  margin:0;
  font-family:var(--font-main);
  color:var(--color-primary);
  background:#FFFFFF;
}

img{ max-width:100%; height:auto; }
a{ color:inherit; text-decoration:none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible{
  outline:2px solid rgba(125,211,252,.85);
  outline-offset:3px;
}

.skip-link{
  position:absolute;
  top:10px;
  left:10px;
  padding:10px 12px;
  background:#fff;
  border-radius:12px;
  border:0.5px solid rgba(15,23,42,.20);
  transform:translateY(-200%);
  transition:transform .2s ease;
  z-index:999;
}
.skip-link:focus{ transform:translateY(0); }

.container{
  width:min(1100px, calc(100% - 2*var(--spacing)));
  margin-inline:auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:80;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(10px);
  border-bottom:0.5px solid rgba(15,23,42,.12);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:240px;
}
.brand-logo{
  display:block;
  border-radius:14px;
  border:0.5px solid rgba(125,211,252,.35);
  padding:6px;
  background:rgba(125,211,252,.04);
}
.brand-name{
  font-weight:700;
  letter-spacing:.2px;
}

.header-nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.header-nav a{
  padding:10px 10px;
  border-radius:12px;
  border:0.5px solid transparent;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}
.header-nav a:hover{
  border-color:rgba(125,211,252,.60);
  background:rgba(125,211,252,.07);
  transform:translateY(-1px);
}

.burger-button{
  display:none;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:14px;
  border:0.5px solid rgba(15,23,42,.18);
  background:#fff;
  cursor:pointer;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.burger-button:hover{
  transform:translateY(-1px);
  border-color:rgba(125,211,252,.70);
}
.burger-icon{
  width:18px;
  height:14px;
  position:relative;
}
.burger-icon span{
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background:rgba(15,23,42,.92);
  border-radius:2px;
  transition:transform .2s ease, top .2s ease, opacity .2s ease;
}
.burger-icon span:nth-child(1){ top:1px; }
.burger-icon span:nth-child(2){ top:6px; }
.burger-icon span:nth-child(3){ top:11px; }
.burger-button[aria-expanded="true"] .burger-icon span:nth-child(1){ top:6px; transform:rotate(45deg); }
.burger-button[aria-expanded="true"] .burger-icon span:nth-child(2){ opacity:0; }
.burger-button[aria-expanded="true"] .burger-icon span:nth-child(3){ top:6px; transform:rotate(-45deg); }

.burger-overlay{
  position:fixed;
  inset:0;
  z-index:120;
  background:rgba(255,255,255,.70);
  backdrop-filter:blur(10px);
  display:flex;
  align-items:flex-start;
  justify-content:center;
  padding:90px var(--spacing) var(--spacing);
}
.burger-overlay[hidden]{ display:none; }
.burger-panel{
  width:min(100%, 1023px);
  border-radius: calc(var(--radius) + 6px);
  border:0.5px solid rgba(15,23,42,.18);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
  overflow:hidden;
  transform-origin:top center;
  animation:panelIn .18s ease-out both;
}
@keyframes panelIn{
  from{ opacity:0; transform:translateY(-10px) scale(.98); }
  to{ opacity:1; transform:translateY(0) scale(1); }
}
.burger-panel header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-bottom:0.5px solid rgba(15,23,42,.10);
}
.burger-title{
  font-weight:650;
}
.burger-close{
  border:0.5px solid rgba(15,23,42,.18);
  background:#fff;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
}
.burger-close:hover{
  border-color:rgba(125,211,252,.65);
}
.burger-links{
  padding:14px;
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
}
.burger-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 14px;
  border-radius:14px;
  border:0.5px solid rgba(15,23,42,.14);
  background:transparent;
  transition:transform .2s ease, border-color .2s ease, background .2s ease;
}
.burger-links a:hover{
  border-color:rgba(125,211,252,.85);
  background:rgba(125,211,252,.07);
  transform:translateY(-1px);
}
.burger-links a span{ color:var(--color-secondary); }

@media (max-width:1023px){
  .header-nav{ display:none; }
  .burger-button{ display:inline-flex; }
}

main{ flex:1; }

.hero{
  padding: clamp(28px, 4vw, 48px) 0;
}
.hero-banner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:18px;
  border-radius: calc(var(--radius) + 10px);
  border:0.5px solid rgba(15,23,42,.14);
  overflow:hidden;
  padding: clamp(18px, 2.8vw, 28px);
}
.hero-banner::before{
  content:"";
  position:absolute;
  inset:-40px -20px -20px -20px;
  background:
    radial-gradient(60% 40% at 20% 10%, rgba(125,211,252,.18) 0%, rgba(125,211,252,0) 60%),
    radial-gradient(40% 30% at 80% 0%, rgba(148,163,184,.22) 0%, rgba(148,163,184,0) 60%),
    linear-gradient(180deg, rgba(15,23,42,.02), rgba(15,23,42,0));
  filter: blur(0px);
  z-index:1;
  pointer-events:none;
}
.hero-banner .hero-media{
  position:relative;
  z-index:0;
  align-self:stretch;
  margin:0;
  display:flex;
  align-items:center;
  justify-content:center;
}
.hero-banner .hero-media img{
  width:100%;
  max-width: 520px;
  border-radius: calc(var(--radius) + 12px);
  border:0.5px solid rgba(125,211,252,.32);
  box-shadow: 0 0 0 1px rgba(15,23,42,.03) inset;
  padding:8px;
}
.hero-copy{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.hero-kicker{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--color-secondary);
  font-size:14px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:0.5px solid rgba(125,211,252,.50);
  background:rgba(125,211,252,.07);
  color:rgba(15,23,42,.86);
  font-weight:600;
}
.hero-title{
  margin:0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height:1.1;
  letter-spacing:-.3px;
}
.hero-desc{
  margin:0;
  color:rgba(15,23,42,.86);
  max-width: 48ch;
}
.hero-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.rating{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius: var(--radius);
  border:0.5px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.64);
}
.stars{
  display:flex;
  gap:3px;
}
.star{
  width:16px;
  height:16px;
  display:inline-block;
}
.rating-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.rating-text strong{ font-size:14px; }
.rating-text span{ font-size:12px; color:var(--color-secondary); }

.pricing{
  display:flex;
  align-items:baseline;
  gap:12px;
  padding:10px 12px;
  border-radius: var(--radius);
  border:0.5px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.64);
}
.price{
  font-size:22px;
  font-weight:760;
  letter-spacing:-.2px;
}
.old-price{
  color:var(--color-secondary);
  text-decoration:line-through;
}

.order-wrap{
  position:relative;
  z-index:2;
  align-self:start;
}
.order-card{
  border-radius: calc(var(--radius) + 10px);
  border:0.5px solid rgba(125,211,252,.35);
  background:rgba(255,255,255,.70);
  padding:16px;
}
.order-card h2{
  margin:0 0 6px 0;
  font-size:18px;
  letter-spacing:-.2px;
}
.trust-line{
  margin:0 0 14px 0;
  color:var(--color-secondary);
  font-size:13px;
}
form .field{
  display:flex;
  flex-direction:column;
  gap:8px;
  margin-bottom:12px;
}
label{
  font-size:13px;
  color:rgba(15,23,42,.86);
  font-weight:600;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:0.5px solid rgba(15,23,42,.18);
  background:#fff;
  font:inherit;
  color:var(--color-primary);
  transition:border-color .2s ease, box-shadow .2s ease;
}
textarea{ min-height:110px; resize:vertical; }
input:invalid[aria-invalid="true"],
textarea[aria-invalid="true"]{
  border-color:rgba(239,68,68,.55);
  box-shadow:0 0 0 3px rgba(239,68,68,.12);
}
.form-error{
  margin:0;
  color:rgba(185,28,28,.95);
  font-size:12px;
  min-height: 16px;
}
.gdpr{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:12px 0 14px 0;
  padding:10px 12px;
  border-radius:14px;
  border:0.5px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.50);
}
.gdpr input{
  width:18px;
  height:18px;
  margin-top:2px;
}
.gdpr p{
  margin:0;
  font-size:12px;
  color:var(--color-secondary);
  line-height:1.35;
}
.cta{
  width:100%;
  border-radius:16px;
  padding:14px 14px;
  border:0.5px solid rgba(15,23,42,.18);
  background:var(--color-accent);
  color:var(--color-primary);
  font-weight:800;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.cta:hover{
  transform:translateY(-1px);
  background:var(--color-primary);
  color:var(--color-accent);
  border-color:rgba(125,211,252,.55);
}
.cta:disabled{ opacity:.65; cursor:not-allowed; transform:none; }

.legal-disclaimer{
  border-radius: var(--radius);
  border:0.5px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.55);
  padding:14px 14px;
}
.legal-disclaimer p{
  margin:0;
  color:rgba(15,23,42,.84);
  font-size:12.5px;
  line-height:1.45;
}

.section{
  padding: clamp(34px, 4.5vw, 64px) 0;
}
.section h2{
  margin:0 0 10px 0;
  font-size: clamp(20px, 2.2vw, 28px);
  letter-spacing:-.25px;
}
.section p.lead{
  margin:0 0 22px 0;
  color:rgba(15,23,42,.86);
  max-width: 70ch;
}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.card{
  grid-column: span 6;
  border-radius: var(--radius);
  border:0.5px solid rgba(15,23,42,.14);
  padding:16px;
  background:transparent;
  transition:transform .22s ease, border-color .22s ease, background .22s ease;
}
.card.molecular{
  transition:transform .22s ease, border-color .22s ease, background .22s ease, filter .22s ease;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(125,211,252,.70);
  background:rgba(125,211,252,.05);
}
.card.molecular:hover{
  transform: translateY(-2px) scale(1.02);
}
.card h3{
  margin:0 0 8px 0;
  font-size:15px;
  letter-spacing:-.15px;
}
.card p{
  margin:0;
  color:rgba(15,23,42,.84);
  font-size:13px;
  line-height:1.55;
}
.list{
  margin:0;
  padding-left:18px;
}
.list li{
  margin:8px 0;
  color:rgba(15,23,42,.84);
  font-size:13px;
  line-height:1.55;
}
.split{
  grid-column: span 12;
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:18px;
}
.split article,
.split aside{ grid-column: span 6; }
[data-reveal]{
  opacity:0;
  transform:translateY(16px);
  transition:opacity .7s ease, transform .7s ease;
}
[data-reveal].is-visible{
  opacity:1;
  transform:translateY(0);
}

.accordion{
  display:grid;
  gap:10px;
}
.acc-item{
  border-radius: var(--radius);
  border:0.5px solid rgba(15,23,42,.14);
  background:rgba(255,255,255,.45);
  overflow:hidden;
}
.acc-button{
  width:100%;
  text-align:left;
  background:transparent;
  border:0;
  padding:14px 14px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font:inherit;
}
.acc-button strong{
  font-size:14px;
  letter-spacing:-.15px;
}
.acc-button span{
  color:var(--color-secondary);
}
.acc-panel{
  padding:0 14px 14px 14px;
  color:rgba(15,23,42,.84);
  font-size:13px;
  line-height:1.6;
}
.acc-panel[hidden]{ display:none; }

.contact-figure{
  display:flex;
  align-items:center;
  justify-content:center;
}
.map{
  width:100%;
  height:300px;
  border:0;
  border-radius: var(--radius);
  border:0.5px solid rgba(15,23,42,.14);
}

.policy-hero{
  border-radius: calc(var(--radius) + 10px);
  border:0.5px solid rgba(15,23,42,.14);
  padding: 18px;
  background:rgba(255,255,255,.68);
  overflow:hidden;
  position:relative;
}
.policy-hero::before{
  content:"";
  position:absolute;
  inset:-30px -20px -20px -20px;
  background: radial-gradient(55% 35% at 20% 0%, rgba(125,211,252,.18) 0%, rgba(125,211,252,0) 60%);
  z-index:0;
  pointer-events:none;
}
.policy-hero .inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
.policy-hero figure{
  margin:0;
  display:flex;
  justify-content:center;
}
.policy-hero figure img{
  max-width: 420px;
  border-radius: calc(var(--radius) + 12px);
  border:0.5px solid rgba(125,211,252,.30);
  padding:6px;
}
.policy-hero h1{
  margin:0 0 10px 0;
  font-size: clamp(22px, 2.6vw, 34px);
}
.policy-hero p{
  margin:0;
  color:rgba(15,23,42,.86);
  line-height:1.6;
  font-size:14px;
}

footer{
  margin-top:auto;
  border-top:0.5px solid rgba(15,23,42,.12);
  padding:18px 0 28px 0;
  background:rgba(255,255,255,.70);
}
.footer-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.footer-left{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.footer-left small{
  color:var(--color-secondary);
}
.footer-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.footer-links a{
  padding:10px 12px;
  border-radius:14px;
  border:0.5px solid rgba(15,23,42,.12);
  background:transparent;
  transition:border-color .2s ease, background .2s ease, transform .2s ease;
}
.footer-links a:hover{
  border-color:rgba(125,211,252,.70);
  background:rgba(125,211,252,.07);
  transform:translateY(-1px);
}

.cookie-consent{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:16px;
  width:min(980px, calc(100% - 24px));
  z-index:200;
  background:rgba(255,255,255,.92);
  border:0.5px solid rgba(15,23,42,.18);
  border-radius: calc(var(--radius) + 6px);
  box-shadow:var(--shadow);
  padding:14px 14px;
}
.cookie-consent[hidden]{ display:none; }
.cookie-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.cookie-text{
  flex:1;
  min-width: 220px;
}
.cookie-text h2{
  margin:0 0 6px 0;
  font-size:16px;
}
.cookie-text p{
  margin:0;
  color:rgba(15,23,42,.84);
  font-size:13px;
  line-height:1.45;
}
.cookie-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cookie-actions button{
  border-radius:16px;
  padding:10px 12px;
  border:0.5px solid rgba(15,23,42,.18);
  background:#fff;
  cursor:pointer;
  font:inherit;
  transition:transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
  font-weight:700;
}
.cookie-actions button:hover{
  transform:translateY(-1px);
  border-color:rgba(125,211,252,.70);
  background:rgba(125,211,252,.06);
}
.cookie-actions .primary{
  background:var(--color-accent);
  border-color:rgba(125,211,252,.75);
  color:var(--color-primary);
}
.cookie-actions .primary:hover{
  background:var(--color-primary);
  color:var(--color-accent);
}
.cookie-details{
  margin-top:12px;
  border-top:0.5px solid rgba(15,23,42,.10);
  padding-top:12px;
}
.cookie-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
  align-items:start;
}
.toggle{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  border:0.5px solid rgba(15,23,42,.12);
  background:rgba(255,255,255,.55);
}
.toggle input{ width:18px; height:18px; }
.toggle span{
  font-size:13px;
  color:rgba(15,23,42,.86);
  font-weight:650;
}
.cookie-meta{
  margin-top:10px;
  color:var(--color-secondary);
  font-size:12px;
  line-height:1.4;
}

.cursor-ring{
  position:fixed;
  top:0;
  left:0;
  width:22px;
  height:22px;
  border-radius:999px;
  border:1.2px solid rgba(125,211,252,.75);
  transform:translate(-50%, -50%) scale(1);
  pointer-events:none;
  z-index:9999;
  transition:transform .18s ease, width .18s ease, height .18s ease, opacity .2s ease;
  opacity:.95;
  mix-blend-mode:multiply;
}
.cursor-ring--sm{
  width:10px;
  height:10px;
  border-color:rgba(15,23,42,.35);
  opacity:.75;
}
.cursor-ring.is-clicking{
  transform:translate(-50%, -50%) scale(.55);
  opacity:.75;
}
.cursor-ring.is-hover{
  width:28px;
  height:28px;
}

@media (prefers-reduced-motion: reduce){
  *{ scroll-behavior:auto !important; }
  .reveal{ transition:none; opacity:1; transform:none; }
  .burger-panel{ animation:none; }
}

@media (max-width:900px){
  .hero-banner{ grid-template-columns:1fr; }
  .policy-hero .inner{ grid-template-columns:1fr; }
  .cookie-grid{ grid-template-columns:1fr; }
}

