.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid rgb(232 232 226 / 0.8);
  background: rgb(251 251 248 / 0.88);
  backdrop-filter: blur(18px);
}
.site-header > .button { justify-self: end; }
.site-nav { display: flex; gap: 28px; color: var(--muted); font-size: 14px; }
.site-nav a, .site-footer nav a { min-height: 44px; display: flex; align-items: center; }
.site-nav a:hover { color: var(--ink); }
.nav-toggle {
  position: relative;
  display: none;
  min-width: 44px;
  min-height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--ease-out), top 180ms var(--ease-out);
}
.nav-toggle span:first-child { top: 17px; }
.nav-toggle span:last-child { top: 25px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.8fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding-top: 150px;
}
.hero__copy { padding-bottom: 40px; }
.hero__visual { justify-self: end; width: min(100%, 600px); }
.hero-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 30px;
  background: #d8d8d1;
  box-shadow: var(--shadow-soft);
}
.hero-card > img, .hero-card > video { width: 100%; height: 100%; object-fit: cover; }
.hero-card > video { position: absolute; inset: 0; z-index: 1; }
.hero-card > img { position: relative; z-index: 0; }
.talent-chip {
  position: absolute;
  z-index: 3;
  left: -32px;
  bottom: 42px;
  display: flex;
  gap: 10px;
  min-width: 210px;
  padding: 12px;
  border: 1px solid rgb(0 0 0 / 0.08);
  border-radius: 14px;
  background: rgb(255 255 255 / 0.92);
  box-shadow: 0 12px 30px rgb(0 0 0 / 0.12);
  backdrop-filter: blur(12px);
}
.talent-chip__avatar { width: 38px; height: 38px; border-radius: 10px; background: var(--mint); }
.talent-chip small, .talent-chip strong { display: block; line-height: 1.25; }
.talent-chip small { color: var(--muted); font-size: 11px; }
.hero-dots { display: flex; justify-content: center; gap: 8px; padding-top: 22px; }
.hero-dots button { width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.hero-dots button::before { content: ""; display: block; width: 7px; height: 7px; margin: auto; border-radius: 50%; background: #bdbdb7; }
.hero-dots button[aria-current="true"]::before { background: var(--ink); }
.hero-dots .hero-pause { width: auto; padding-inline: 10px; color: var(--muted); font-size: 12px; }
.hero-dots .hero-pause::before { display: none; }
.proof { display: flex; gap: 10px; align-items: center; margin-top: 18px; font-size: 13px; }
.proof__faces { display: flex; }
.proof__faces i { width: 24px; height: 24px; margin-left: -6px; border: 2px solid var(--paper); border-radius: 50%; background: var(--lilac); }
.proof__faces i:nth-child(2) { background: var(--mint); }
.proof__faces i:nth-child(3) { background: var(--blush); }
.section-heading { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 12vw; align-items: end; }
.section-heading h2 { max-width: 14ch; }
.section-heading p { max-width: 45ch; color: var(--muted); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 54px; }
.benefit-card { min-height: 240px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--white); }
.benefit-card h3 { margin-top: 50px; }
.benefit-card p { color: var(--muted); }
.people { max-width: none; padding-inline: 0; overflow: hidden; }
.display-centre { max-width: 14ch; margin-inline: auto; padding-inline: var(--gutter); text-align: center; }
.role-window { margin-top: 70px; }
.role-track { display: flex; width: max-content; gap: 14px; padding-block: 8px; animation: role-drift 42s linear infinite; }
.role-track--reverse { animation-direction: reverse; }
.role-pill { display: flex; align-items: center; gap: 10px; padding-right: 18px; font-weight: 620; white-space: nowrap; }
.role-pill img { width: 48px; height: 48px; border-radius: 12px; object-fit: cover; transform: rotate(-4deg); }
.role-pill:nth-child(even) img { transform: rotate(5deg); }
@keyframes role-drift { to { transform: translateX(-50%); } }
.product__intro { max-width: 840px; margin-inline: auto; text-align: center; }
.product__intro h2 { margin-inline: auto; }
.product__intro > p:last-child { color: var(--muted); }
.product-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; }
.product-card { position: relative; min-height: 510px; overflow: hidden; grid-column: span 5; padding: 28px; border-radius: var(--radius-card); isolation: isolate; }
.product-card:nth-child(4n + 1), .product-card:nth-child(4n + 4) { grid-column: span 7; }
.product-card__copy { position: relative; z-index: 2; }
.product-card p { max-width: 35ch; color: var(--muted); }
.ui-scene { position: absolute; inset: 39% 6% 6%; overflow: hidden; border: 1px solid rgb(255 255 255 / 0.72); border-radius: 20px; background: linear-gradient(145deg, rgb(255 255 255 / 0.96), rgb(235 235 230 / 0.74)); box-shadow: 0 18px 50px rgb(0 0 0 / 0.13); transform: rotate(-0.8deg); }
.product-card:nth-child(even) .ui-scene { transform: rotate(0.8deg); }
.ui-scene:not(.ui-scene--with-image)::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 72% 32%, rgb(239 96 78 / 0.32) 0 16%, transparent 16.5%), linear-gradient(115deg, transparent 0 34%, rgb(255 255 255 / 0.78) 34% 61%, transparent 61%), repeating-linear-gradient(0deg, transparent 0 34px, rgb(23 23 23 / 0.055) 35px 36px); }
.ui-scene--with-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgb(12 12 12 / 0.28)); pointer-events: none; }
.ui-scene__image { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; filter: saturate(0.88) contrast(0.98); }
.ui-scene__topbar { position: absolute; z-index: 2; top: 14px; left: 14px; right: 14px; min-height: 42px; display: flex; align-items: center; gap: 5px; padding: 0 13px; border: 1px solid rgb(255 255 255 / 0.65); border-radius: 12px; background: rgb(255 255 255 / 0.88); box-shadow: 0 8px 24px rgb(0 0 0 / 0.1); backdrop-filter: blur(12px); }
.ui-scene__topbar i { width: 6px; height: 6px; border-radius: 50%; background: #b6b6b1; }
.ui-scene__topbar i:first-child { background: var(--tomato); }
.ui-scene__topbar b { margin-left: auto; font-size: 11px; font-weight: 620; letter-spacing: -0.01em; }
.ui-scene__panel { position: absolute; z-index: 2; right: 14px; bottom: 14px; left: 14px; min-height: 76px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 15px 16px; border: 1px solid rgb(255 255 255 / 0.72); border-radius: 15px; background: rgb(255 255 255 / 0.91); box-shadow: 0 12px 32px rgb(0 0 0 / 0.14); backdrop-filter: blur(12px); }
.ui-scene__panel small { max-width: 22ch; color: var(--muted); font-size: 12px; }
.ui-scene__panel strong { font-size: 13px; letter-spacing: -0.03em; }
.claim { display: grid; grid-template-columns: 0.92fr 0.78fr; gap: 10vw; }
.claim__copy h2 { max-width: 11ch; }
.claim__copy > p { max-width: 48ch; color: var(--muted); }
.claim-card { align-self: start; padding: 8px; border-radius: 32px; background: linear-gradient(135deg, #ef95a4, #f0c77f, #8db876, #aa91d9); }
.claim-card__rim { padding: clamp(28px, 4vw, 54px); border-radius: 25px; background: var(--white); }
.claim-card form { display: grid; gap: 9px; }
.claim-card label, .claim-card legend { font-size: 13px; font-weight: 620; }
.claim-card fieldset { display: grid; gap: 8px; margin: 10px 0; padding: 0; border: 0; }
.radio { display: flex; align-items: center; gap: 9px; min-height: 44px; padding: 0 15px; border-radius: var(--radius-control); background: var(--stone); }
.radio input { width: auto; min-height: 0; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item button { width: 100%; min-height: 58px; display: flex; justify-content: space-between; align-items: center; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-answer { padding: 0 34px 18px 0; color: var(--muted); }
.faq-answer[hidden] { display: none; }
.closing { min-height: 80svh; display: grid; place-items: center; align-content: center; text-align: center; }
.closing h2 { max-width: 12ch; margin-top: 28px; }
.closing p { max-width: 50ch; color: var(--muted); }
.site-footer { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 50px; padding: 70px var(--gutter) 30px; border-top: 1px solid var(--line); }
.site-footer > div p { max-width: 42ch; margin-top: 20px; color: var(--muted); }
.site-footer nav { display: grid; gap: 8px; align-content: start; }
.disclosure { grid-column: 1 / -1; margin-top: 70px; padding-top: 22px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }
.media-failed { background: linear-gradient(145deg, var(--lilac), var(--mint) 58%, var(--blush)); }
@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto auto; }
  .site-nav { position: fixed; inset: 72px var(--gutter) auto; display: none; padding: 24px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: var(--shadow-soft); }
  .site-nav.is-open { display: grid; }
  .nav-toggle { display: block; }
  .hero { grid-template-columns: 1fr 0.8fr; gap: 40px; }
  .section-heading { gap: 50px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-card, .product-card:nth-child(4n + 1), .product-card:nth-child(4n + 4) { grid-column: auto; }
  .claim { gap: 50px; }
}
@media (max-width: 760px) {
  .site-header { min-height: 64px; }
  .site-header > .button { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 118px; }
  .hero__visual { width: 100%; }
  .talent-chip { left: 14px; bottom: 20px; }
  .section-heading, .claim { grid-template-columns: 1fr; }
  .benefit-grid, .product-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 210px; }
  .product-card, .product-card:nth-child(4n + 1), .product-card:nth-child(4n + 4) { min-height: 460px; grid-column: 1; }
  .site-footer { grid-template-columns: 1fr; }
  .disclosure { grid-column: 1; }
  .inline-form { grid-template-columns: 1fr; }
  .inline-form .button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
