:root {
  --brand: #f4a900;
  --brand-strong: #d99500;
  --brand-soft: #fff4d8;
  --ink: #172321;
  --ink-soft: #53615e;
  --surface: #ffffff;
  --surface-soft: #f5f7f5;
  --surface-warm: #fffaf0;
  --line: #dfe5e1;
  --dark: #1d302e;
  --dark-soft: #29423f;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --shadow: 0 24px 70px rgba(34, 55, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(223, 229, 225, 0.86);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 35px rgba(34, 55, 51, 0.07);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-name {
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.brand-name span {
  color: var(--brand-strong);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.site-nav > a {
  position: relative;
  color: #384743;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav > a:hover::after,
.site-nav > a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav > a.nav-preinscription {
  padding: 9px 13px;
  border: 1px solid #e1b442;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #654900;
  font-weight: 850;
}

.site-nav > a.nav-preinscription::after {
  display: none;
}

.site-nav > a.nav-preinscription:hover,
.site-nav > a.nav-preinscription:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  color: #332600;
}

.nav-access {
  display: flex;
  align-items: center;
  gap: 9px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.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);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #332600;
  box-shadow: 0 13px 30px rgba(244, 169, 0, 0.24);
}

.button-primary:hover {
  background: #ffb817;
  color: #332600;
  box-shadow: 0 16px 35px rgba(244, 169, 0, 0.31);
}

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

.button-secondary:hover {
  border-color: #c3ccc7;
  background: var(--surface);
}

.button-small {
  min-height: 42px;
  padding: 9px 14px;
  border-radius: 11px;
  font-size: 0.78rem;
}

.button-light {
  background: var(--surface);
  color: var(--dark);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: #6c5a2b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 27px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
}

.eyebrow-light {
  color: #f8df9b;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 142px 0 72px;
  background: linear-gradient(135deg, #fffdf8 0%, #f5f8f5 52%, #eef4f0 100%);
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  pointer-events: none;
}

.hero-glow-one {
  top: -250px;
  right: -200px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(244, 169, 0, 0.2), rgba(244, 169, 0, 0));
}

.hero-glow-two {
  bottom: -260px;
  left: -180px;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(78, 124, 113, 0.14), rgba(78, 124, 113, 0));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 44px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(3.1rem, 5.25vw, 5.1rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy h1 em {
  color: var(--brand-strong);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 26px 0 0;
  padding: 0;
  color: #495955;
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-points span {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  background: #e9f0eb;
  color: #4f766a;
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: 590px;
  display: grid;
  place-items: center;
}

.device-stage {
  position: relative;
  width: min(100%, 610px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 48% 45%, #ffffff 0 34%, #f5d789 35% 35.6%, #f2ead8 36% 53%, rgba(242, 234, 216, 0) 53.5%);
}

.device-stage img {
  position: relative;
  z-index: 2;
  width: 96%;
  height: auto;
  filter: drop-shadow(0 35px 35px rgba(23, 35, 33, 0.17));
  transform: rotate(-2deg);
}

.device-orbit {
  position: absolute;
  border: 1px solid rgba(54, 81, 74, 0.17);
  border-radius: 50%;
}

.orbit-one {
  inset: 6%;
}

.orbit-two {
  inset: 16%;
  border-style: dashed;
}

.visual-label,
.floating-note {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(223, 229, 225, 0.88);
  background: rgba(255, 255, 255, 0.91);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.visual-label {
  top: 2%;
  right: 4%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 999px;
  color: #42514e;
  font-size: 0.74rem;
  font-weight: 800;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5c9e7d;
  box-shadow: 0 0 0 5px rgba(92, 158, 125, 0.14);
}

.floating-note {
  min-width: 176px;
  padding: 14px 16px;
  border-radius: 16px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note strong {
  font-size: 0.85rem;
}

.floating-note span {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.floating-note-top {
  top: 21%;
  left: 1%;
}

.floating-note-bottom {
  right: 1%;
  bottom: 17%;
}

.audience-strip {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.audience-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.audience-inner p {
  margin: 0;
  color: #88928f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.audience-inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  color: #43504d;
  font-size: 0.85rem;
  font-weight: 800;
  list-style: none;
}

.audience-inner li::before {
  margin-right: 9px;
  color: var(--brand);
  content: "•";
}

.section {
  padding: 110px 0;
}

.product-section {
  background: var(--surface-soft);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 46px;
}

.section-heading h2,
.workflow-copy h2,
.access-grid h2 {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.section-heading > p,
.access-grid > div > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 18px;
}

.bento-card {
  position: relative;
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bento-card:hover {
  box-shadow: 0 20px 50px rgba(34, 55, 51, 0.09);
  transform: translateY(-4px);
}

.bento-card-featured {
  grid-column: span 8;
  grid-row: span 2;
  min-height: 490px;
  padding: 34px;
  background: linear-gradient(135deg, #ffffff 0%, #f8faf8 100%);
}

.bento-card-featured .card-copy {
  position: relative;
  z-index: 2;
  max-width: 56%;
}

.bento-card-featured > img {
  position: absolute;
  right: -10%;
  bottom: 0;
  width: 62%;
  height: auto;
  opacity: 0.9;
}

.bento-card-warm {
  background: var(--brand-soft);
}

.bento-card-dark {
  border-color: var(--dark);
  background: var(--dark);
  color: var(--surface);
}

.bento-card-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 1.15fr);
  align-items: center;
  gap: 30px;
}

.card-icon {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-strong);
  font-size: 0.76rem;
  font-weight: 900;
}

.card-kicker {
  margin: 0 0 8px;
  color: #8c742f;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bento-card-dark .card-kicker {
  color: #f4d889;
}

.bento-card h3 {
  margin: 0;
  font-size: 1.44rem;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.bento-card p:not(.card-kicker) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.7;
}

.bento-card-dark p:not(.card-kicker) {
  color: #cbd7d4;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mini-tags li {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: #5e6c69;
  font-size: 0.68rem;
  font-weight: 800;
}

.metric-bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 9px;
  margin-top: 26px;
}

.metric-bars span {
  width: 18px;
  height: var(--bar);
  border-radius: 7px 7px 3px 3px;
  background: linear-gradient(180deg, var(--brand), #d08e00);
}

.score-ring {
  display: grid;
  width: 118px;
  height: 118px;
  margin-top: 24px;
  place-content: center;
  border-radius: 50%;
  background: radial-gradient(circle, var(--surface) 58%, transparent 59%), conic-gradient(var(--brand) 0 74%, #e7ece9 74% 100%);
  text-align: center;
}

.score-ring span {
  font-weight: 900;
}

.score-ring small {
  display: block;
  color: var(--ink-soft);
  font-size: 0.61rem;
}

.attendance-row {
  display: flex;
  margin-top: 30px;
}

.avatar {
  display: grid;
  width: 43px;
  height: 43px;
  margin-right: -8px;
  place-items: center;
  border: 3px solid var(--dark);
  border-radius: 50%;
  background: #edf2ef;
  color: var(--dark);
  font-size: 0.67rem;
  font-weight: 900;
}

.avatar-more {
  background: var(--brand);
}

.data-chart {
  display: flex;
  height: 130px;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding: 18px 18px 0;
  border-bottom: 1px solid #cfd7d2;
  background-image: linear-gradient(to bottom, rgba(223, 229, 225, 0.65) 1px, transparent 1px);
  background-size: 100% 32px;
}

.data-chart span {
  flex: 1;
  height: var(--height);
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #ffd15b, var(--brand));
}

.text-link {
  display: inline-flex;
  gap: 9px;
  margin-top: 25px;
  color: #775700;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration: none;
}

.workflow-section {
  background: var(--surface);
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 82px;
}

.workflow-visual {
  position: relative;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: -28px;
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.image-badge > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand);
  color: #3c2c00;
  font-weight: 900;
}

.image-badge strong,
.image-badge small {
  display: block;
}

.image-badge strong {
  font-size: 0.83rem;
}

.image-badge small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 0.66rem;
}

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

.workflow-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 47px 1fr;
  gap: 18px;
  padding: 21px 0;
  border-top: 1px solid var(--line);
}

.workflow-list li > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
  background: var(--brand-soft);
  color: #785800;
  font-size: 0.76rem;
  font-weight: 900;
}

.workflow-list h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 850;
}

.workflow-list p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.science-section {
  padding-top: 20px;
}

.science-card {
  position: relative;
  display: grid;
  min-height: 485px;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  overflow: hidden;
  padding: 72px;
  border-radius: var(--radius-lg);
  background: var(--dark);
  color: var(--surface);
}

.science-card::before {
  position: absolute;
  top: -40%;
  right: -13%;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 169, 0, 0.23), rgba(244, 169, 0, 0));
  content: "";
}

.science-copy {
  position: relative;
  z-index: 2;
}

.science-copy h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4.6vw, 4.25rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.science-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin: 24px 0 30px;
  color: #c8d5d2;
}

.science-visual {
  position: absolute;
  right: -3%;
  bottom: 0;
  width: 58%;
}

.science-visual img {
  width: 100%;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.about-section {
  background: var(--surface);
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.about-visual {
  min-height: 590px;
  overflow: hidden;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
}

.about-copy {
  align-self: center;
  padding: 58px;
}

.about-copy h2 {
  margin: 0;
  font-size: clamp(2.25rem, 3.8vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

.about-copy > p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.about-pillars {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.about-pillars article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.about-pillars article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: var(--brand-soft);
  color: #785800;
  font-size: 0.7rem;
  font-weight: 900;
}

.about-pillars h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 850;
}

.about-pillars p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.55;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-tags li {
  padding: 6px 10px;
  border: 1px solid #e2c46d;
  border-radius: 999px;
  background: var(--brand-soft);
  color: #684d00;
  font-size: 0.66rem;
  font-weight: 850;
}

.access-section {
  background: var(--surface-warm);
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 80px;
}

.access-grid > div > p {
  margin-top: 22px;
}

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

.access-card {
  position: relative;
  min-height: 285px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.access-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.access-card-primary {
  border-color: var(--brand);
  background: var(--brand);
  color: #332600;
}

.access-icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-left: auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 900;
}

.access-card small,
.access-card strong {
  display: block;
}

.access-card small {
  margin-top: 39px;
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0.72;
}

.access-card strong {
  margin-top: 5px;
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.access-card p {
  margin: 12px 0 0;
  font-size: 0.78rem;
  line-height: 1.6;
  opacity: 0.74;
}

.manuals-section {
  padding: 105px 0;
  background: var(--surface-soft);
}

.manuals-heading {
  margin-bottom: 42px;
}

.manuals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.manual-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px 20px;
  align-items: start;
  padding: 30px;
  border: 1px solid #eadfbf;
  border-radius: var(--radius-md);
  background: var(--surface-warm);
  box-shadow: 0 16px 42px rgba(34, 55, 51, 0.08);
}

.manual-card-secondary {
  border-color: var(--line);
  background: var(--surface);
}

.manual-card__code {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 16px;
  background: var(--brand);
  color: #3a2a00;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.05em;
}

.manual-card__eyebrow {
  margin: 2px 0 6px;
  color: var(--brand-strong);
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.manual-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.manual-card div > p:last-child {
  margin: 9px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.manual-card .button {
  grid-column: 1 / -1;
  width: 100%;
}

.final-cta {
  padding: 75px 0;
  background: var(--surface);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}

.final-cta h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.site-footer {
  padding: 70px 0 0;
  background: #203431;
  color: #dfe8e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.62fr 0.82fr 0.62fr 1.05fr;
  gap: 38px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 190px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-brand > p {
  max-width: 300px;
  margin: 22px 0 0;
  color: #adbfbb;
}

.footer-brand address {
  margin-top: 24px;
  color: #adbfbb;
  font-size: 0.76rem;
  font-style: normal;
  line-height: 1.8;
}

.footer-brand a {
  color: #dfe8e5;
}

.footer-links h2,
.footer-newsletter h2 {
  margin: 0 0 20px;
  color: var(--surface);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin-top: 11px;
  color: #adbfbb;
  font-size: 0.79rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-newsletter p {
  margin: 0 0 18px;
  color: #adbfbb;
  font-size: 0.79rem;
}

.newsletter-control {
  display: grid;
  grid-template-columns: 1fr 46px;
  overflow: hidden;
  border: 1px solid #49615d;
  border-radius: 13px;
  background: #29413e;
}

.newsletter-control input {
  min-width: 0;
  padding: 12px 14px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--surface);
  font-size: 0.78rem;
}

.newsletter-control input::placeholder {
  color: #8fa49f;
}

.newsletter-control input:focus {
  box-shadow: inset 0 0 0 2px var(--brand);
}

.newsletter-control button {
  border: 0;
  background: var(--brand);
  color: #332600;
  cursor: pointer;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid #3a514d;
  color: #8fa49f;
  font-size: 0.69rem;
}

.footer-bottom p {
  margin: 0;
}

.version-mark {
  display: inline-flex;
  margin-left: 8px;
  padding: 4px 8px;
  border: 1px solid #49615d;
  border-radius: 999px;
  color: #dfe8e5;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.modal-dialog.public-frame-modal {
  display: block;
  width: 80vw;
  max-width: 80vw;
  height: 80vh;
  min-height: 0;
  margin: 10vh auto;
}

.public-frame-modal .modal-content {
  display: grid;
  height: 100%;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 28px 80px rgba(24, 42, 38, 0.3);
}

.public-frame-modal .modal-header {
  min-height: 64px;
  align-items: center;
  padding: 12px 18px 12px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.public-frame-modal .modal-title {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
}

.public-frame-modal .close {
  color: var(--ink);
  opacity: 0.72;
}

.public-frame-modal__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.public-frame-modal__open {
  padding: 8px 11px;
  border-radius: 9px;
  background: var(--surface-soft);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 850;
  text-decoration: none;
}

.public-frame-modal__open:hover {
  background: var(--brand-soft);
  color: var(--ink);
  text-decoration: none;
}

.public-frame-modal__body {
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.public-frame-modal__frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: var(--surface-soft);
}

:focus-visible {
  outline: 3px solid rgba(244, 169, 0, 0.58);
  outline-offset: 3px;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 17px;
  }

  .site-nav > a {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .floating-note-top {
    left: -2%;
  }

  .workflow-grid,
  .access-grid,
  .about-card {
    gap: 50px;
  }
}

@media (max-width: 991px) {
  .site-shell {
    width: min(100% - 36px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 81px;
    right: 18px;
    left: 18px;
    display: none;
    max-height: calc(100vh - 100px);
    align-items: stretch;
    overflow-y: auto;
    padding: 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 0;
  }

  .site-nav > a {
    padding: 13px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-access {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 18px;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid,
  .workflow-grid,
  .access-grid,
  .about-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-points {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .hero-visual {
    min-height: 570px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .bento-card-featured {
    grid-column: span 12;
  }

  .bento-card {
    grid-column: span 6;
  }

  .bento-card-wide {
    grid-column: span 12;
  }

  .workflow-grid {
    gap: 65px;
  }

  .image-panel img {
    min-height: 480px;
  }

  .image-badge {
    right: 24px;
  }

  .science-card {
    grid-template-columns: 1fr;
    padding: 58px 48px;
  }

  .science-copy {
    max-width: 580px;
  }

  .science-visual {
    right: -14%;
    width: 70%;
    opacity: 0.38;
  }

  .about-card {
    gap: 0;
  }

  .about-visual {
    min-height: 440px;
  }

  .about-copy {
    padding: 48px;
  }

  .access-grid {
    gap: 38px;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-newsletter {
    grid-column: 1 / -1;
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .site-shell {
    width: min(100% - 28px, 600px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 43px;
    height: 43px;
  }

  .site-nav {
    top: 72px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 55px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 10px;
  }

  .visual-label {
    top: 0;
    right: 50%;
    transform: translateX(50%);
    white-space: nowrap;
  }

  .floating-note {
    min-width: 148px;
    padding: 11px 13px;
  }

  .floating-note-top {
    top: 20%;
    left: 0;
  }

  .floating-note-bottom {
    right: 0;
    bottom: 7%;
  }

  .audience-inner {
    display: block;
    text-align: center;
  }

  .audience-inner ul {
    gap: 8px 18px;
    margin-top: 10px;
  }

  .section {
    padding: 78px 0;
  }

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

  .section-heading h2,
  .workflow-copy h2,
  .access-grid h2 {
    font-size: 2.35rem;
  }

  .bento-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card-featured,
  .bento-card-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-card-featured {
    min-height: 480px;
  }

  .bento-card-featured .card-copy {
    max-width: 100%;
  }

  .bento-card-featured > img {
    right: -11%;
    width: 83%;
  }

  .bento-card-wide {
    display: block;
  }

  .data-chart {
    margin-top: 24px;
  }

  .image-panel img {
    min-height: 420px;
  }

  .image-badge {
    right: 12px;
    bottom: 16px;
    left: 12px;
    min-width: 0;
  }

  .science-section {
    padding-top: 0;
  }

  .science-card {
    width: min(100% - 28px, 600px);
    min-height: 560px;
    padding: 45px 28px;
  }

  .science-visual {
    right: -35%;
    bottom: 4%;
    width: 120%;
  }

  .about-visual {
    min-height: 340px;
  }

  .about-copy {
    padding: 36px 28px;
  }

  .about-copy h2 {
    font-size: 2.35rem;
  }

  .access-cards {
    grid-template-columns: 1fr;
  }

  .access-card {
    min-height: 250px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .final-cta .button {
    width: 100%;
  }

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

  .footer-brand,
  .footer-newsletter {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-bottom p + p {
    margin-top: 7px;
  }

  .modal-dialog.public-frame-modal {
    width: 90vw;
    max-width: 90vw;
    height: 90vh;
    margin: 5vh auto;
  }

  .public-frame-modal .modal-content {
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    font-size: 1rem;
  }

  .nav-access {
    grid-template-columns: 1fr;
  }

  .hero-points {
    display: grid;
    justify-content: start;
    margin-inline: auto;
    width: fit-content;
    text-align: left;
  }

  .floating-note {
    display: none;
  }

  .hero-visual {
    min-height: 355px;
  }

  .bento-card,
  .bento-card-featured {
    padding: 24px;
  }

  .manuals-section {
    padding: 78px 0;
  }

  .manual-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .manual-card .button {
    grid-column: auto;
  }

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

  .footer-brand,
  .footer-newsletter {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
