:root {
  --red: #e52621;
  --red-dark: #b91714;
  --ink: #111111;
  --muted: #5d6168;
  --line: #e6e6e6;
  --soft: #f6f6f6;
  --white: #ffffff;
  --radius: 26px;
  --shadow: 0 18px 60px rgba(0,0,0,.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
.wrap { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.nav-wrap { height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { height: 62px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.nav a { position: relative; text-decoration: none; transition: color .18s ease; }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; border-radius: 999px; background: var(--red); transform: scaleX(0); transform-origin: center; transition: transform .18s ease; }
.nav a:hover { color: var(--red); }
.nav a:hover::after, .nav a:focus-visible::after { transform: scaleX(1); }
.nav-cta { background: transparent; color: var(--ink); padding: 0; border-radius: 0; }
.nav-cta:hover { background: transparent; color: var(--red); }
.language-switch { display:flex; align-items:center; padding:3px; border:1px solid #d9d9d9; border-radius:999px; background:#f5f5f5; }
.lang-btn { border:0; background:transparent; color:#555; min-width:38px; height:32px; padding:0 9px; border-radius:999px; font-size:12px; font-weight:900; cursor:pointer; }
.lang-btn.active { background:var(--red); color:#fff; box-shadow:0 2px 8px rgba(229,38,33,.22); }
.nav-toggle { display: none; width: 46px; height: 46px; padding: 10px; border: 1px solid #dedede; border-radius: 14px; background: #fff; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; box-shadow: 0 4px 18px rgba(0,0,0,.04); }
.nav-toggle span { display: block; width: 22px; height: 2px; border-radius: 999px; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { min-height: 820px; height: 100svh; position: relative; display: grid; align-items: center; overflow: hidden; padding-top: 86px; background: #ddd; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-wash {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.92) 34%, rgba(255,255,255,.42) 60%, rgba(255,255,255,.10) 100%),
    linear-gradient(0deg, rgba(255,255,255,.50), rgba(255,255,255,0) 40%);
}
.hero-content { position: relative; z-index: 2; }
.hero-card { width: min(670px, 65vw); padding: 30px 0; }
.eyebrow { margin: 0 0 16px; font-size: 13px; letter-spacing: .16em; font-weight: 900; color: var(--ink); }
.eyebrow.red, .red-text { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, .statement-line { font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif; }
h1, h2, .statement-line { letter-spacing: -.045em; }
h1 { font-size: clamp(58px, 7.2vw, 104px); line-height: .92; margin-bottom: 28px; font-weight: 950; max-width: 760px; }
h1 em { color: var(--red); font-style: normal; }
.hero-lede { font-size: clamp(19px, 2vw, 25px); line-height: 1.45; color: #31343a; max-width: 650px; margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; border-radius: 999px; padding: 0 24px; border: 1px solid transparent; font-weight: 850; text-decoration: none; cursor: pointer; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-dark); }
.button-light { background: rgba(255,255,255,.82); border-color: rgba(0,0,0,.12); color: var(--ink); }
.button-dark { background: var(--ink); color: white; width: fit-content; }
.button-dark:hover { background: var(--red); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.hero-badges span { background: rgba(255,255,255,.82); border: 1px solid rgba(0,0,0,.1); padding: 8px 12px; border-radius: 999px; font-size: 13px; font-weight: 750; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; transform: translateX(-50%); width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: white; text-decoration: none; box-shadow: 0 8px 30px rgba(0,0,0,.14); font-size: 22px; }

.section { padding: 110px 0; }
.section-tight { padding: 32px 0; }
.section-heading { max-width: 860px; margin-bottom: 54px; }
.section-heading h2, .content h2, .contact-copy h2 { font-size: clamp(42px, 5vw, 70px); line-height: 1.0; margin-bottom: 22px; }
.section-heading > p:last-child, .content > p, .contact-copy > p { font-size: 19px; color: var(--muted); max-width: 760px; }

 .impact { background: #fff; }
.impact-heading { max-width: 900px; }
.stats-story { display: grid; grid-template-columns: 1fr 54px 1fr 54px 1fr; align-items: center; gap: 0; }
.stat-card { position: relative; border: 1px solid var(--line); padding: 36px 32px 34px; border-radius: 26px; min-height: 355px; box-shadow: 0 14px 45px rgba(18,29,48,.06); background: linear-gradient(180deg,#fff 0%,#fbfbfb 100%); overflow: hidden; }
.stat-card::before { content:""; position:absolute; inset:0 0 auto; height:4px; background: currentColor; }
.stat-red { color: var(--red); } .stat-blue { color:#1769c2; } .stat-green { color:#4d963f; }
.stat-icon { width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center; background: color-mix(in srgb, currentColor 10%, white); margin-bottom: 28px; box-shadow: inset 0 0 0 1px color-mix(in srgb, currentColor 16%, white); }
.stat-icon svg { width: 44px; height: 44px; fill: currentColor; }
.stat-icon .icon-line { fill:none; stroke:white; stroke-width:4; stroke-linecap:round; stroke-linejoin:round; }
.stat-icon .heavy { stroke:currentColor; }
.stat-card strong { display:block; font-size:clamp(58px,5vw,78px); line-height:.95; letter-spacing:-.06em; color:currentColor; margin-bottom:18px; }
.stat-card h3 { font-size:20px; text-transform:uppercase; color:var(--ink); margin-bottom:12px; letter-spacing:.015em; }
.stat-card p { color:var(--muted); font-size:17px; margin:0; }
.stat-arrow { text-align:center; font-size:42px; color:#69717e; font-weight:300; }
.source-note { color:#777; font-size:13px; margin:18px 4px 0; } .source-note a { color:var(--red); }

.statement { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.statement-line { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 34px; font-size: clamp(24px, 3vw, 38px); font-weight: 900; text-align: center; }
.statement-line span:not(:last-child)::after { content: ""; width: 2px; height: .9em; background: var(--red); display: inline-block; margin-left: 34px; transform: translateY(.08em); }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 74px; align-items: center; }
.split.reverse { grid-template-columns: .92fr 1.08fr; }
.media-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--soft); box-shadow: var(--shadow); }
.media-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.media-label { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 15px 18px; border-radius: 14px; background: rgba(255,255,255,.90); backdrop-filter: blur(10px); font-weight: 800; font-size: 14px; }
.steps { margin-top: 36px; display: grid; gap: 0; }
.step { display: grid; grid-template-columns: 62px 1fr; gap: 20px; padding: 24px 0; border-top: 1px solid var(--line); }
.step:last-child { border-bottom: 1px solid var(--line); }
.step > span { font-size: 22px; color: var(--red); font-weight: 950; }
.step h3 { font-size: 23px; margin-bottom: 6px; }
.step p { margin-bottom: 0; color: var(--muted); }

.feature-band { background: #f7f7f7; color: var(--ink); padding: 112px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.feature-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 42px; align-items: stretch; }
.product-image { border-radius: var(--radius); overflow: hidden; min-height: 600px; background: white; box-shadow: var(--shadow); border:1px solid var(--line); }
.product-image img { width: 100%; height: 100%; object-fit: contain; background:white; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; background: transparent; }
.feature-grid article { background: white; border:1px solid var(--line); border-radius:18px; padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; min-height: 180px; box-shadow:0 9px 30px rgba(0,0,0,.035); }
.feature-grid b { font-size: 20px; }
.feature-grid span { color: var(--muted); }

.public-spaces { background: #f7f7f7; }
.chip-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip-list span { background: white; border: 1px solid #ddd; border-radius: 999px; padding: 10px 14px; font-weight: 750; font-size: 14px; }

.experience { background: white; }
.module-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.module { padding: 32px 26px 38px; min-height: 290px; border-right: 1px solid var(--line); }
.module:last-child { border-right: 0; }
.module > span { color: var(--red); font-weight: 950; display: block; margin-bottom: 64px; }
.module h3 { font-size: 25px; margin-bottom: 12px; }
.module p { color: var(--muted); margin-bottom: 0; }


/* About us */
.about {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 18%, rgba(229,38,33,.08) 0 2px, transparent 2.5px) 0 0 / 18px 18px no-repeat,
    linear-gradient(180deg, #fbfbfb 0%, #f5f5f5 100%);
  border-top: 1px solid var(--line);
}
.about::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  left: -250px;
  top: 175px;
  border-radius: 50%;
  background: var(--red);
  opacity: .96;
}
.about-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .88fr 1.32fr;
  gap: 64px;
  align-items: center;
}
.about-brand-card {
  min-height: 430px;
  padding: 44px 38px 36px;
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 70px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.about-logo-wrap {
  width: 100%;
  min-height: 150px;
  display: grid;
  place-items: center;
}
.about-logo-wrap img {
  width: min(100%, 430px);
  max-height: 175px;
  object-fit: contain;
}
.about-pulse {
  width: min(230px, 75%);
  display: grid;
  grid-template-columns: 1fr 88px 1fr;
  align-items: center;
  gap: 10px;
  margin: 30px 0 22px;
}
.about-pulse span { height: 2px; background: var(--red); }
.about-pulse svg { width: 88px; height: 24px; }
.about-pulse path { fill: none; stroke: var(--red); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.about-brand-note { margin: 0; max-width: 360px; color: var(--muted); font-weight: 750; font-size: 15px; }
.about-copy { padding-right: 10px; }
.about-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: .98;
  margin-bottom: 28px;
  max-width: 820px;
}
.about-copy h2::after { content: "."; color: var(--red); }
.about-body {
  margin: 0;
  max-width: 800px;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.7;
  color: #3f4349;
}
.about-values {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  margin-left: min(250px, 16vw);
}
.about-value {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 18px;
  align-items: start;
  background: rgba(255,255,255,.98);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 26px 24px;
  min-height: 180px;
  box-shadow: 0 12px 34px rgba(0,0,0,.045);
}
.about-value-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(229,38,33,.08);
}
.about-value-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--red);
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.about-value h3 { font-size: 22px; line-height: 1.1; margin: 4px 0 9px; }
.about-value p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.55; }
.about-closing {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 118px;
  padding: 24px 34px;
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: center;
  gap: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.035);
}
.about-closing-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}
.about-closing-icon svg { width: 58px; height: 58px; fill: none; stroke: var(--red); stroke-width: 3.2; stroke-linecap: round; stroke-linejoin: round; }
.about-closing-text {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: clamp(22px, 2.3vw, 33px);
  font-weight: 900;
  letter-spacing: -.035em;
}
.about-closing-text span { padding: 0 28px; }
.about-closing-text span + span { border-left: 1px solid #d9d9d9; }

.contact { background: var(--red); }
.contact-panel { display: grid; grid-template-columns: 1fr .92fr; gap: 70px; background: white; border-radius: 32px; padding: 64px; box-shadow: 0 20px 80px rgba(0,0,0,.16); }
.contact-email { display: inline-block; margin-top: 18px; font-weight: 900; color: var(--red); text-decoration: none; overflow-wrap: anywhere; }
.contact-form { display: grid; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; font-size: 13px; font-weight: 850; }
input, textarea, select { width: 100%; border: 1px solid #d5d5d5; border-radius: 11px; padding: 13px 14px; background: white; color: var(--ink); outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(229,38,33,.10); }
textarea { resize: vertical; }
.form-note { color: #7a7a7a; font-size: 12px; margin: 0; }

.footer { background: white; border-top: 1px solid var(--line); padding: 32px 0; }
.footer-inner { display: grid; grid-template-columns: 190px 1fr auto; gap: 30px; align-items: center; }
.footer img { width: 170px; height: auto; }
.footer p { margin: 0; color: var(--muted); font-size: 14px; }
.footer a { font-weight: 800; text-decoration: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .site-header { overflow: visible; }
  .nav-wrap { position: relative; }
  .nav-toggle { display: inline-flex; flex: 0 0 auto; }
  .nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    background: rgba(255,255,255,.985);
    box-shadow: 0 18px 50px rgba(0,0,0,.13);
    backdrop-filter: blur(18px);
  }
  .nav.open { display: flex; }
  .nav a, .nav-cta {
    display: block;
    width: 100%;
    padding: 14px 12px;
    border-radius: 12px;
    color: var(--ink);
    background: transparent;
    font-size: 16px;
  }
  .nav a::after { display: none; }
  .nav a:hover, .nav a:focus-visible, .nav-cta:hover { color: var(--red); background: #fff4f3; }
  .language-switch { align-self: flex-start; margin: 8px 10px 6px; }
  .hero { min-height: 760px; }
  .hero-card { width: min(720px, 88vw); }
  .hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.97), rgba(255,255,255,.76) 70%, rgba(255,255,255,.35)); }
  .stats-story { grid-template-columns: 1fr; gap:16px; }
  .stat-arrow { transform:rotate(90deg); line-height:1; }
  .module-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .split.reverse, .feature-layout, .contact-panel { grid-template-columns: 1fr; }
  .media-card { max-width: 720px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .product-image { min-height: auto; aspect-ratio: 16 / 10; }
  .module { border-bottom: 1px solid var(--line); }
  .about-hero { grid-template-columns: 1fr; gap: 42px; }
  .about-brand-card { min-height: 330px; max-width: 700px; }
  .about-values { grid-template-columns: 1fr; margin: 42px 0 0; }
  .about-value { min-height: auto; }
  .about-closing { grid-template-columns: 62px 1fr; }
  .about-closing-text { grid-template-columns: 1fr; gap: 8px; }
  .about-closing-text span { padding: 0; }
  .about-closing-text span + span { border-left: 0; }
  .contact-panel { padding: 46px; gap: 40px; }
}

@media (max-width: 680px) {
  .wrap { width: min(100% - 30px, 1180px); }
  .nav-wrap { height: 72px; }
  .brand img { height: 50px; }
  .nav { top: calc(100% + 8px); border-radius: 18px; }
  .nav a, .nav-cta { padding: 13px 12px; font-size: 15px; }
  .hero { padding-top: 72px; min-height: 720px; }
  .hero-video { object-position: 60% center; }
  .hero-wash { background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.78)); }
  .hero-card { width: 100%; padding-right: 10px; }
  h1 { font-size: clamp(52px, 16vw, 74px); }
  .hero-actions .button { width: 100%; }
  .section { padding: 78px 0; }
  .section-heading { margin-bottom: 36px; }
  .stats-story, .feature-grid, .module-grid { grid-template-columns: 1fr; }
  .statement-line { display: grid; gap: 8px; }
  .statement-line span::after { display: none !important; }
  .split { gap: 44px; }
  .step { grid-template-columns: 46px 1fr; gap: 12px; }
  .feature-grid article { min-height: auto; }

  /* Mobile kiosk image: let the portrait product diagram define its own height.
     This removes the empty white side gutters created by the desktop landscape card. */
  .product-image {
    aspect-ratio: auto;
    min-height: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 22px;
  }
  .product-image img {
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: transparent;
    border-radius: 22px;
  }

  .module { border-right: 0; }
  .module > span { margin-bottom: 30px; }
  .about::before { width: 260px; height: 260px; left: -200px; top: 150px; }
  .about-brand-card { min-height: 280px; padding: 32px 24px; border-radius: 24px; }
  .about-logo-wrap { min-height: 110px; }
  .about-logo-wrap img { max-height: 125px; }
  .about-copy h2 { font-size: clamp(38px, 12vw, 54px); }
  .about-body { font-size: 17px; line-height: 1.65; }
  .about-value { grid-template-columns: 56px 1fr; padding: 22px 18px; }
  .about-value-icon { width: 52px; height: 52px; }
  .about-closing { grid-template-columns: 1fr; text-align: center; padding: 26px 20px; }
  .about-closing-icon { margin: 0 auto; }
  .about-closing-text { font-size: 24px; }
  .contact-panel { padding: 28px 22px; border-radius: 22px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .hero { background: url('assets/hero-poster.jpg') center / cover no-repeat; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .button { transition: none; }
}
