
@font-face {
  font-family: "Geist";
  src: url("/fonts/geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist Mono";
  src: url("/fonts/geist-mono-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
a { color: inherit; }

:root {
  --font-geist-sans: "Geist";
  --font-geist-mono: "Geist Mono";
  --paper: #f7f8f4;
  --paper-strong: #ffffff;
  --ink: #17211f;
  --ink-soft: #53615d;
  --line: #d9e0dc;
  --line-strong: #bdcac5;
  --teal: #087f78;
  --teal-dark: #08645f;
  --teal-soft: #dcefeb;
  --mint: #bde2da;
  --slate: #385b66;
  --sand: #b17651;
  --shadow: 0 24px 70px rgba(18, 45, 40, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(8, 127, 120, 0.35);
  outline-offset: 4px;
}

.site-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(189, 202, 197, 0.72);
  background: rgba(247, 248, 244, 0.9);
  backdrop-filter: blur(18px);
  transition: transform 200ms ease;
  will-change: transform;
}

.header[data-scroll-state="hidden"] {
  transform: translateY(-100%);
}

#prodotti,
#azienda,
#team,
#footer,
#lista-attesa {
  scroll-margin-top: 96px;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-mark {
  width: 35px;
  height: 35px;
  position: relative;
  border: 1px solid var(--teal);
  border-radius: 10px 2px 10px 2px;
  background:
    radial-gradient(circle at 17% 22%, var(--teal) 0 2px, transparent 2.4px),
    radial-gradient(circle at 31% 37%, var(--teal) 0 1.7px, transparent 2.1px),
    radial-gradient(circle at 20% 58%, var(--teal) 0 1.5px, transparent 1.9px),
    linear-gradient(90deg, transparent 51%, rgba(8,127,120,.18) 51% 53%, transparent 53%),
    linear-gradient(0deg, transparent 51%, rgba(8,127,120,.18) 51% 53%, transparent 53%);
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 13px;
  height: 13px;
  border-right: 2px solid var(--teal);
  border-bottom: 2px solid var(--teal);
}

.brand-name {
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}

.nav-link {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 160ms ease;
}

.nav-link:hover {
  color: var(--ink);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-strong);
}

.lang-link {
  min-width: 34px;
  padding: 6px 8px;
  border-radius: 999px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--ink-soft);
}

.lang-link.active {
  background: var(--ink);
  color: white;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 650;
  font-size: 14px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal);
  color: white;
  box-shadow: 0 10px 26px rgba(8, 127, 120, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255,255,255,.72);
  color: var(--ink);
}

.nav-cta {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--ink);
  cursor: pointer;
}

.menu-icon {
  width: 20px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-line {
  width: 100%;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform 200ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] .menu-line:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] .menu-line:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  color: var(--teal-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 84px 0 76px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .42;
  background-image:
    linear-gradient(rgba(23,33,31,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,33,31,.055) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(460px, 1.08fr);
  align-items: center;
  gap: 64px;
}

.hero h1,
.product-hero h1 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 84px);
  line-height: .98;
  letter-spacing: -.062em;
  font-weight: 590;
}

.hero h1 span {
  color: var(--teal);
}

.hero-lead,
.product-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.trust-note {
  margin: 22px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #65716e;
  font-size: 12px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-soft);
}

.hero-visual {
  position: relative;
  aspect-ratio: 1.12 / .78;
  border: 1px solid var(--line-strong);
  border-radius: 5px 38px 5px 38px;
  background: #edf3f0;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.concept-label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 999px;
  background: rgba(247,248,244,.86);
  backdrop-filter: blur(12px);
  color: var(--ink-soft);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.technical-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 17% 32%, rgba(8,127,120,.72) 0 2px, transparent 2.4px),
    radial-gradient(circle at 21% 58%, rgba(8,127,120,.64) 0 1.6px, transparent 2px),
    radial-gradient(circle at 34% 46%, rgba(8,127,120,.52) 0 1.8px, transparent 2.2px),
    linear-gradient(90deg, transparent 65%, rgba(23,33,31,.17) 65% 65.4%, transparent 65.4%),
    linear-gradient(0deg, transparent 28%, rgba(23,33,31,.17) 28% 28.4%, transparent 28.4%),
    linear-gradient(135deg, #e7f1ed, #f8faf8);
}

.technical-fallback::before,
.technical-fallback::after {
  content: "";
  position: absolute;
  border: 2px solid rgba(8,127,120,.48);
}

.technical-fallback::before {
  width: 31%;
  height: 44%;
  right: 14%;
  top: 20%;
  border-left-color: transparent;
}

.technical-fallback::after {
  width: 16%;
  height: 23%;
  right: 30%;
  bottom: 12%;
  border-top-color: transparent;
}

.section {
  padding: 108px 0;
}

.section-tight {
  padding: 82px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2,
.content-heading {
  margin: 0;
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 570;
}

.section-heading p {
  max-width: 610px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 4;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px 30px 6px 30px;
  background: rgba(255,255,255,.78);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.card-visual {
  position: relative;
  height: 214px;
  overflow: hidden;
  border-radius: 3px 21px 3px 21px;
  background: #edf3f0;
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.product-card:hover .card-visual img {
  transform: scale(1.025);
}

.card-visual.plan {
  background:
    linear-gradient(90deg, transparent 63%, rgba(8,127,120,.32) 63% 63.5%, transparent 63.5%),
    linear-gradient(0deg, transparent 36%, rgba(8,127,120,.32) 36% 36.5%, transparent 36.5%),
    radial-gradient(circle at 24% 40%, var(--teal) 0 2px, transparent 2.5px),
    radial-gradient(circle at 35% 61%, rgba(8,127,120,.72) 0 1.5px, transparent 2px),
    #e8f3f0;
}

.card-visual.scan {
  background: radial-gradient(ellipse at 50% 100%, rgba(8,127,120,.26), transparent 58%), #eef3f1;
}

.card-visual.scan::after {
  content: "";
  position: absolute;
  left: calc(50% - 26px);
  bottom: 28px;
  width: 52px;
  height: 74px;
  border: 2px solid var(--teal);
  border-radius: 50% 50% 8px 8px;
  box-shadow: 0 0 0 32px rgba(8,127,120,.05), 0 0 0 64px rgba(8,127,120,.035);
}

.card-visual.render {
  background: linear-gradient(125deg, #eef1ed 0 48%, #dcefeb 48% 51%, #f4ede7 51% 100%);
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 6px 4px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink-soft);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.status-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
}

.card-body h3 {
  margin: 22px 0 12px;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 600;
}

.card-body p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.card-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
}

.card-link span {
  transition: transform 160ms ease;
}

.product-card:hover .card-link span {
  transform: translateX(4px);
}

.workflow-section {
  background: var(--ink);
  color: #f6f8f6;
}

.workflow-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.workflow-header h2 {
  margin: 0;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 540;
}

.workflow-header p {
  margin: 0;
  color: #aebbb7;
  line-height: 1.7;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #40504c;
}

.workflow-step {
  position: relative;
  padding: 28px 25px 8px 0;
  border-right: 1px solid #40504c;
}

.workflow-step + .workflow-step {
  padding-left: 25px;
}

.workflow-step:last-child {
  border-right: 0;
}

.step-number {
  color: #6fd0c4;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.workflow-step h3 {
  margin: 40px 0 12px;
  font-size: 18px;
  font-weight: 560;
}

.workflow-step p {
  margin: 0;
  color: #9facaa;
  font-size: 13px;
  line-height: 1.65;
}

.value-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 100px;
  align-items: start;
}

.value-intro {
  position: sticky;
  top: 120px;
}

.value-intro p {
  margin: 24px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.benefit-list {
  border-top: 1px solid var(--line-strong);
}

.benefit {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-index {
  color: var(--teal);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
}

.benefit h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 590;
}

.benefit p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.65;
  font-size: 14px;
}

.prelaunch {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #edf4f1;
}

.prelaunch-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 100px;
  align-items: start;
}

.prelaunch-copy p {
  color: var(--ink-soft);
  line-height: 1.75;
}

.principles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.principle {
  min-height: 150px;
  padding: 23px;
  border: 1px solid var(--line-strong);
  border-radius: 3px 20px 3px 20px;
  background: rgba(255,255,255,.55);
}

.principle strong {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
}

.principle span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.waitlist-section {
  padding: 110px 0;
}

.waitlist-panel {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  padding: 64px;
  border-radius: 6px 42px 6px 42px;
  background: var(--teal-dark);
  color: white;
  box-shadow: var(--shadow);
}

.waitlist-copy h2 {
  margin: 0;
  max-width: 500px;
  font-size: clamp(38px, 4.2vw, 57px);
  line-height: 1;
  letter-spacing: -.05em;
  font-weight: 560;
}

.waitlist-copy p {
  max-width: 510px;
  margin: 24px 0 0;
  color: #c4e3dd;
  line-height: 1.7;
}

.waitlist-form {
  align-self: start;
  padding: 27px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px 24px 3px 24px;
  background: rgba(255,255,255,.1);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.fieldset legend {
  color: #d9efeb;
  font-size: 12px;
  font-weight: 600;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 8px 2px 8px 2px;
  background: rgba(255,255,255,.12);
  color: white;
  outline: none;
}

.field input::placeholder {
  color: #add0ca;
}

.field select option {
  color: var(--ink);
}

.field input:focus,
.field select:focus {
  border-color: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,.12);
}

.fieldset {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  padding: 0;
  border: 0;
}

.check-grid {
  display: grid;
  gap: 8px;
  margin-top: 11px;
}

.check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 8px 2px 8px 2px;
  color: #e9f6f3;
  font-size: 12px;
  line-height: 1.45;
}

.check-row input {
  accent-color: #8ad6cc;
  margin-top: 2px;
}

.form-note {
  margin: 14px 0 0;
  color: #bcd9d4;
  font-size: 11px;
  line-height: 1.5;
}

.form-button {
  width: 100%;
  margin-top: 18px;
  background: white;
  color: var(--teal-dark);
}

.form-message {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px 2px 8px 2px;
  color: white;
  font-size: 12px;
  line-height: 1.5;
}

.form-error {
  margin: 9px 0 0;
  color: #fff1d6;
  font-size: 12px;
  font-weight: 600;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.hero-visual img,
.card-visual img,
.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company {
  padding: 75px 0;
  border-top: 1px solid var(--line);
}

.company-grid {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 80px;
  align-items: start;
}

.company-identity {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.company-logo {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.company-logo .brand-mark {
  width: 68px;
  height: 68px;
  border-width: 2px;
  border-radius: 18px 4px 18px 4px;
}

.company-logo .brand-mark::after {
  right: 10px;
  bottom: 10px;
  width: 25px;
  height: 25px;
  border-width: 0 3px 3px 0;
}

.company-logo .brand-name {
  max-width: 170px;
  font-size: clamp(25px, 3vw, 38px);
  line-height: .95;
}

.company-story > .hero-lead {
  margin-top: 0;
}

.company-gallery {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 14px;
  margin-top: 36px;
}

.company-gallery figure {
  position: relative;
  min-width: 0;
  height: 310px;
  margin: 0;
  overflow: hidden;
  border-radius: 4px 24px 4px 24px;
  background: var(--line);
}

.company-gallery figure:last-child {
  margin-top: 48px;
}

.company-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-gallery figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 7px 9px;
  border-radius: 4px;
  background: rgba(23, 33, 31, .76);
  color: white;
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.company-note {
  padding: 28px;
  border-left: 2px solid var(--teal);
  background: rgba(255,255,255,.52);
  color: var(--ink-soft);
  line-height: 1.7;
}

.team {
  padding: 108px 0;
  border-top: 1px solid var(--line);
  background: var(--teal-soft);
}

.team-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 80px;
  align-items: end;
}

.team-members {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
}

.team-member {
  display: flex;
  min-height: 190px;
  padding: 30px 22px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px 18px 3px 18px;
  background: rgba(255, 255, 255, .62);
}

.team-member h3 {
  margin: 0 0 6px;
  font-size: 20px;
}

.team-member p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.team-member a {
  display: inline-flex;
  width: 32px;
  height: 32px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  border: 1px solid currentColor;
  border-radius: 6px 2px 6px 2px;
}

.team-member a:hover {
  color: var(--teal);
  background: var(--paper-strong);
}

.team-member svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer {
  padding: 55px 0 28px;
  border-top: 1px solid var(--line-strong);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 60px;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.65;
}

.footer-column h3 {
  margin: 0 0 18px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  margin: 10px 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #74807c;
  font-size: 11px;
}

.product-hero {
  padding: 78px 0 64px;
  border-bottom: 1px solid var(--line);
  background-image:
    linear-gradient(rgba(23,33,31,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,33,31,.045) 1px, transparent 1px);
  background-size: 46px 46px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.product-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
}

.product-type {
  color: var(--teal-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-hero h1 {
  font-size: clamp(44px, 5.5vw, 74px);
}

.detail-visual {
  position: relative;
  aspect-ratio: 1.25 / .82;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 5px 34px 5px 34px;
  background: #e9f1ee;
  box-shadow: var(--shadow);
}

.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 100px;
}

.detail-aside {
  position: sticky;
  top: 110px;
  align-self: start;
}

.detail-aside h2 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -.04em;
  font-weight: 580;
}

.detail-aside p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.spec-list {
  display: grid;
  gap: 14px;
}

.spec-card {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 3px 20px 3px 20px;
  background: rgba(255,255,255,.7);
}

.spec-card h3 {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 650;
}

.spec-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.notice {
  margin-top: 22px;
  padding: 20px 22px;
  border-left: 3px solid var(--teal);
  background: var(--teal-soft);
  color: var(--teal-dark);
  font-size: 13px;
  line-height: 1.65;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.related-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 3px 20px 3px 20px;
  background: white;
}

.related-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.related-card p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 12px;
}

@media (max-width: 991.98px) {
  .nav-links,
  .nav > .nav-cta {
    display: none;
  }

  .navigation-enhanced .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: block;
    max-height: calc(100dvh - 76px);
    overflow-y: auto;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(18, 45, 40, 0.08);
  }

  .navigation-enhanced .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav-inner {
    display: grid;
    gap: 4px;
    padding-top: 8px;
    padding-bottom: 18px;
  }

  .mobile-nav-inner > a:not(.mobile-nav-cta) {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 14px;
  }

  .mobile-nav-cta {
    width: 100%;
    margin-top: 8px;
  }
}

@media (max-width: 980px) {

  .hero-grid,
  .product-hero-grid,
  .waitlist-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    aspect-ratio: 1.45 / .8;
  }

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

  .product-card {
    grid-column: auto;
  }

  .product-card:first-child {
    grid-column: 1 / -1;
  }

  .section-heading,
  .workflow-header,
  .value-grid,
  .prelaunch-grid,
  .company-grid,
  .team-grid,
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .value-intro,
  .company-identity,
  .detail-aside {
    position: static;
  }

  .waitlist-panel {
    padding: 44px;
    gap: 44px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    min-height: 68px;
  }

  .brand-name {
    font-size: 14px;
  }

  .header .lang-switch {
    margin-left: auto;
  }

  .mobile-nav {
    max-height: calc(100dvh - 68px);
  }

  .hero,
  .product-hero {
    padding: 58px 0 46px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1,
  .product-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .section-tight,
  .waitlist-section,
  .team {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .product-grid,
  .principles,
  .related-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .team-members {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .product-card,
  .product-card:first-child {
    grid-column: auto;
    min-height: 490px;
  }

  .company-gallery {
    grid-template-columns: 1fr;
  }

  .company-gallery figure,
  .company-gallery figure:last-child {
    height: 260px;
    margin-top: 0;
  }

  .workflow {
    grid-template-columns: 1fr;
  }

  .workflow-step,
  .workflow-step + .workflow-step {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid #40504c;
  }

  .workflow-step h3 {
    margin-top: 22px;
  }

  .waitlist-panel {
    padding: 30px 20px;
    border-radius: 4px 28px 4px 28px;
  }

  .waitlist-form {
    padding: 20px 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.legal-hero {
  padding: 88px 0 64px;
  background: var(--teal-soft);
  border-bottom: 1px solid var(--line);
}

.legal-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .55fr);
  gap: 72px;
  align-items: start;
}

.legal-header h1 {
  max-width: 780px;
  margin: 12px 0 22px;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
}

.legal-authority {
  max-width: 720px;
  color: var(--ink-soft);
  font-size: 17px;
}

.legal-toc {
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--paper-strong);
}

.legal-toc h2 {
  margin: 0 0 16px;
  font-size: 20px;
}

.legal-toc ol {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 22px;
}

.legal-toc a,
.legal-body a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-body {
  max-width: 900px;
  padding-top: 72px;
  padding-bottom: 100px;
}

.legal-body > p {
  font-size: 18px;
}

.legal-section {
  padding-top: 42px;
  scroll-margin-top: 92px;
}

.legal-section h2 {
  margin-bottom: 22px;
  font-size: clamp(28px, 4vw, 42px);
}

.legal-section h3 {
  margin: 30px 0 12px;
  font-size: 21px;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  line-height: 1.75;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

@media (max-width: 900px) {
  .legal-header {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media print {
  .header,
  .footer,
  .legal-toc,
  .skip-link {
    display: none !important;
  }

  .legal-hero,
  .legal-body {
    padding: 0;
    background: #fff;
  }

  .legal-section {
    break-inside: avoid;
  }

  .legal-body a {
    color: inherit;
  }
}

.footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-link:hover,
.footer-link:focus-visible {
  color: var(--paper-strong);
}

.analytics-consent {
  position: fixed;
  z-index: 100;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: end;
  width: min(calc(100% - 48px), 760px);
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 4px 24px 4px 24px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.analytics-consent[hidden] {
  display: none;
}

.analytics-consent h2 {
  margin: 8px 0 12px;
  font-size: clamp(24px, 4vw, 34px);
}

.analytics-consent p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
}

.consent-links {
  display: flex;
  gap: 18px;
  margin-top: 14px !important;
}

.consent-links a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  display: grid;
  gap: 10px;
  min-width: 175px;
}

.consent-choice {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--teal-dark);
  border-radius: 3px;
  background: var(--paper-strong);
  color: var(--teal-dark);
  font-weight: 650;
  cursor: pointer;
}

.consent-choice:hover,
.consent-choice:focus-visible {
  background: var(--teal-dark);
  color: var(--paper-strong);
}

@media (max-width: 700px) {
  .analytics-consent {
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
    max-height: calc(100vh - 28px);
    overflow: auto;
    padding: 22px;
  }

  .consent-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media print {
  .analytics-consent {
    display: none !important;
  }
}
