@font-face {
  font-family: Instrument;
  src: url("/landing/fonts/instrument-serif-latin-400-normal.woff2")
    format("woff2");
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("/landing/fonts/instrument-serif-latin-400-italic.woff2")
    format("woff2");
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Jakarta;
  src: url("/landing/fonts/jakarta.woff2") format("woff2");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --paper: #fefaf3;
  --ink: #2f2c25;
  --muted: #6c665a;
  --line: #dfd9ce;
  --cream: #f0eadf;
  --rust: #a34e38;
  --green: #284f42;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Jakarta, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #a34e38;
  outline-offset: 5px;
}
.wrap {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.skip {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 9;
  background: var(--ink);
  color: white;
  padding: 10px;
}
.skip:focus {
  top: 10px;
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  gap: 54px;
}
.brand {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -1.6px;
  display: inline-flex;
  align-items: start;
  gap: 2px;
}
.brand span {
  color: var(--rust);
  font-size: 17px;
}
.nav nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
}
.nav > .button {
  margin-left: auto;
}
.button {
  background: var(--ink);
  color: var(--paper);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 50px;
  padding: 13px 23px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  background: #494237;
  transform: translateY(-2px);
}
.button.secondary {
  background: var(--cream);
  color: var(--ink);
}
.button.small {
  min-height: 44px;
  padding: 10px 19px;
}
.hero {
  text-align: center;
  padding-top: 78px;
}
.eyebrow,
.number,
.badge {
  font-family: monospace;
  letter-spacing: 1.7px;
  font-size: 11px;
  font-weight: 500;
}
.eyebrow {
  margin: 0 0 25px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: Instrument, Georgia, serif;
  font-weight: 400;
  letter-spacing: -1.6px;
  line-height: 1.04;
}
h1 {
  font-size: clamp(58px, 6.3vw, 90px);
  margin-bottom: 30px;
}
h1 em,
h2 em {
  font-weight: 400;
}
h2 {
  font-size: clamp(46px, 4.4vw, 66px);
  margin-bottom: 24px;
}
.lead {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 29px;
  line-height: 1.65;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.micro {
  font-size: 12px;
  color: var(--muted);
  margin: 15px 0 0;
}
.stage {
  margin-top: 65px;
  padding: 28px;
  background: #e6e5d9;
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 22px;
  position: relative;
  border-radius: 15px;
  text-align: left;
  box-shadow: 0 30px 70px #534f3712;
}
.lesson {
  border-radius: 10px;
  overflow: hidden;
  background: var(--green);
  color: #fcf7e8;
}
.lesson-top {
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #ffffff24;
  font: 10px monospace;
  letter-spacing: 1px;
}
.lesson-top i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #eeaa79;
  margin-right: 8px;
}
.board {
  padding: 35px 36px 20px;
}
.board .eyebrow {
  color: #e3dcbd;
}
.board h2 {
  font-size: 51px;
}
.physics {
  display: flex;
  align-items: center;
  gap: 25px;
  font-family: Instrument, Georgia, serif;
  font-size: 31px;
  margin: 20px 0 30px;
}
.physics b {
  font-weight: 400;
  background: #e0ae7b;
  color: #282f24;
  padding: 10px 35px;
  border-radius: 3px;
  box-shadow: 8px 8px #ffffff20;
}
.playline {
  border-top: 1px solid #ffffff35;
  padding-top: 17px;
  display: flex;
  align-items: center;
  gap: 18px;
  font: 10px monospace;
}
.playline div {
  height: 3px;
  flex: 1;
  background: linear-gradient(to right, #e1b48b 21%, #ffffff32 21%);
}
.study-card {
  background: var(--paper);
  padding: 33px;
  border-radius: 10px;
  position: relative;
}
.study-card .eyebrow {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 30px;
}
.tutor-mark {
  position: absolute;
  right: 30px;
  top: 23px;
  font-size: 28px;
  color: var(--rust);
}
h3 {
  font-size: 19px;
  line-height: 1.4;
  letter-spacing: -0.5px;
}
.study-card h3 {
  font-family: Instrument, Georgia, serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.5px;
}
.study-card > p:not(.eyebrow) {
  font-size: 13px;
}
.bubble {
  background: #eee7da;
  padding: 16px;
  border-radius: 10px;
  margin: 22px 0;
}
.source {
  font-size: 10px;
  border: 1px solid var(--line);
  display: inline-block;
  border-radius: 20px;
  padding: 6px 11px;
  color: var(--green);
}
.study-foot {
  margin-top: 26px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font: 9px monospace;
  letter-spacing: 1px;
}
.study-foot span + span {
  background: var(--ink);
  color: white;
  padding: 5px 10px;
  border-radius: 50%;
  font-size: 16px;
}
.demo-label {
  position: absolute;
  bottom: -27px;
  right: 0;
  font: 10px monospace;
  color: var(--muted);
}
.platform-band {
  margin-top: 100px;
  text-align: center;
  padding: 35px 0 44px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.platform-band .eyebrow {
  color: var(--muted);
  margin-bottom: 23px;
}
.platforms {
  display: flex;
  justify-content: center;
  gap: 110px;
}
.platforms > span {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}
.platforms small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
}
.section {
  padding-block: 100px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 60px;
  margin-bottom: 45px;
}
.section-heading > p {
  max-width: 370px;
  color: var(--muted);
  margin-bottom: 27px;
}
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.features article p {
  font-size: 14px;
  color: var(--muted);
}
.features h3 {
  margin-bottom: 13px;
}
.number {
  color: var(--muted);
}
.art {
  height: 170px;
  margin: 20px 0 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  gap: 10px;
  background: #efe9dd;
}
.art-meet span {
  width: 65px;
  height: 86px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--paper);
  font: 35px Instrument;
  border-radius: 7px;
  transform: rotate(-7deg);
}
.art-meet span:nth-child(2) {
  background: #b67b5d;
  transform: rotate(6deg);
  margin-top: 20px;
}
.art-meet span:nth-child(3) {
  background: #d2c7a9;
  color: var(--ink);
  transform: rotate(12deg);
}
.art-replay {
  background: #e2e9e1;
  font-size: 12px;
}
.art-replay > span {
  font-size: 30px;
}
.art-replay div {
  width: 110px;
}
.art-replay i {
  height: 6px;
  display: block;
  background: #96ac93;
  margin: 9px;
  border-radius: 2px;
}
.art-replay i:last-child {
  width: 60%;
}
.art-learn {
  background: #ede3db;
}
.art-learn span {
  font-size: 11px;
  background: var(--paper);
  padding: 12px;
  border-radius: 20px;
}
.art-learn b {
  font-size: 35px;
  color: var(--rust);
}
.values {
  background: #f1ece2;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.values-grid > div > p:last-child {
  color: var(--muted);
}
.principles article {
  display: flex;
  gap: 25px;
  padding: 0 0 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #d8d1c4;
}
.principles article:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.principles article > span {
  font: 11px monospace;
  color: var(--rust);
  padding-top: 6px;
}
.principles h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.principles p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.base-plan {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 25px 70px;
  border: 1px solid #c9c1b2;
  background: #f7f1e6;
  border-radius: 12px;
  padding: 38px;
}
.badge {
  display: inline-block;
  padding: 7px 10px;
  border-radius: 4px;
  background: #dee7da;
  color: #31502b;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 17px;
}
.base-plan h3 {
  font-size: 27px;
  margin-bottom: 9px;
}
.base-plan p {
  font-size: 14px;
  max-width: 380px;
}
.price {
  display: flex;
  gap: 17px;
  align-items: center;
  justify-content: end;
}
.price > b {
  font-family: Instrument, Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
}
.price > span {
  font-size: 12px;
  color: var(--muted);
}
.base-plan ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 25px;
  font-size: 12px;
  padding: 20px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  grid-column: 1/-1;
}
.base-plan li:before {
  content: "✓";
  color: var(--green);
  margin-right: 7px;
}
.base-plan .button {
  justify-self: start;
}
.tutor-heading {
  margin-top: 50px;
}
.tutor-heading h3 {
  font-size: 25px;
  margin-bottom: 8px;
}
.tutor-heading p {
  font-size: 14px;
  color: var(--muted);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px;
  background: #fffcf7;
}
.plan h4 {
  font-size: 18px;
  margin: 0 0 20px;
}
.plan .amount {
  font-family: Instrument, Georgia, serif;
  font-size: 55px;
  line-height: 1;
}
.plan .period {
  font-size: 12px;
  color: var(--muted);
}
.plan ul {
  list-style: none;
  font-size: 13px;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  margin-top: 25px;
}
.plan li {
  margin: 9px 0;
}
.plan .micro {
  font-size: 11px;
}
.pricing-notes {
  font-size: 12px;
  color: var(--muted);
  margin-top: 26px;
  max-width: 1000px;
}
.pricing-notes p {
  margin-bottom: 14px;
}
.install {
  background: var(--ink);
  color: var(--paper);
}
.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.install-grid p {
  color: #ddd3c1;
}
.install-grid .micro {
  color: #c8bdaa;
}
.text-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  padding-block: 6px;
  font-size: 14px;
}
.install-steps {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}
.install-steps li {
  display: flex;
  gap: 25px;
  padding: 0 0 22px;
  margin-bottom: 25px;
  border-bottom: 1px solid #ffffff25;
}
.install-steps li > span {
  font: 11px monospace;
  color: #d7b492;
  padding-top: 6px;
}
.install-steps h3 {
  font-size: 19px;
  margin-bottom: 12px;
}
.install-steps p {
  font-size: 14px;
  margin: 0;
}
.faq {
  max-width: 900px;
}
.faq h2 {
  margin-bottom: 35px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 23px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 25px;
}
.faq summary:after {
  content: "+";
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 14px;
  color: var(--muted);
  padding-top: 18px;
  margin: 0;
  max-width: 760px;
}
.closing {
  text-align: center;
  padding: 50px 0 110px;
}
.closing h2 {
  font-size: clamp(55px, 5vw, 76px);
}
.footer {
  border-top: 1px solid var(--line);
  padding: 35px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.footer div {
  display: flex;
  gap: 25px;
  font-size: 12px;
}
.footer small {
  font-size: 10px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    gap: 30px;
  }
  .nav nav {
    gap: 18px;
  }
  .stage {
    padding: 18px;
    gap: 15px;
    grid-template-columns: 1.1fr 1fr;
  }
  .board {
    padding: 26px;
  }
  .board h2 {
    font-size: 41px;
  }
  .study-card {
    padding: 24px;
  }
  .study-card h3 {
    font-size: 29px;
  }
  .study-card .eyebrow {
    max-width: 150px;
  }
  .section-heading {
    gap: 35px;
  }
  .values-grid,
  .install-grid {
    gap: 45px;
  }
  .features {
    gap: 20px;
  }
  .base-plan {
    padding: 28px;
    gap: 20px;
  }
  .plans {
    gap: 13px;
  }
  .plan {
    padding: 22px;
  }
}
@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .nav {
    height: 80px;
    gap: 10px;
  }
  .brand {
    font-size: 24px;
  }
  .nav nav {
    display: none;
  }
  .hero {
    padding-top: 45px;
  }
  h1 {
    font-size: 59px;
  }
  .lead {
    font-size: 15px;
  }
  .actions {
    flex-direction: column;
    align-items: stretch;
    padding: 0 15px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .stage {
    grid-template-columns: 1fr;
    margin-top: 42px;
    padding: 13px;
  }
  .board h2 {
    font-size: 46px;
  }
  .board {
    padding: 28px 25px 20px;
  }
  .study-card {
    padding: 27px;
  }
  .study-card h3 {
    font-size: 33px;
  }
  .lesson-top {
    font-size: 8px;
    padding: 14px 18px;
  }
  .platform-band {
    margin-top: 75px;
  }
  .platforms {
    gap: 32px;
  }
  .platforms > span {
    font-size: 20px;
  }
  .platforms small {
    font-size: 8px;
  }
  .section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 14px;
  }
  .features,
  .values-grid,
  .install-grid,
  .plans {
    grid-template-columns: 1fr;
  }
  .features {
    gap: 30px;
  }
  .art {
    height: 165px;
  }
  .features h3 {
    font-size: 21px;
  }
  .values-grid,
  .install-grid {
    gap: 35px;
  }
  .base-plan {
    grid-template-columns: 1fr;
    padding: 25px;
  }
  .price {
    justify-content: start;
    margin-block: 5px 10px;
  }
  .price > b {
    font-size: 70px;
  }
  .base-plan ul {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .base-plan .button {
    width: 100%;
  }
  .plan {
    padding: 25px;
  }
  .plan h4 {
    display: inline-block;
    margin-right: 20px;
  }
  .plan .amount {
    font-size: 43px;
  }
  .plan ul {
    margin-top: 18px;
  }
  .faq summary {
    font-size: 15px;
  }
  .footer {
    display: block;
  }
  .footer div {
    margin: 22px 0;
  }
  .footer small {
    display: block;
  }
  .closing {
    padding-bottom: 65px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
} /* Commercial shell — Hawkings brand; product UI keeps its own design tokens. */
.suite-bar {
  background: #eee7da;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.suite-bar > .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}
.suite-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.nav {
  height: 84px;
  gap: 28px;
}
.brand {
  align-items: center;
  gap: 13px;
  letter-spacing: 0;
  flex-shrink: 0;
}
.brand img {
  display: block;
  width: 136px;
  height: auto;
}
.brand-divider {
  height: 25px;
  border-left: 1px solid #bfb5a4;
}
.brand .product-name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.5px;
}
.nav .desktop-nav {
  display: flex;
  gap: 23px;
  font-size: 12px;
  align-items: center;
}
.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 17px;
}
.nav-actions .button {
  white-space: nowrap;
}
.language {
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding: 10px 0;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown summary {
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}
.nav-dropdown summary:after {
  content: "⌄";
  padding-left: 5px;
}
.nav-dropdown > div {
  position: absolute;
  top: 30px;
  left: -16px;
  background: var(--paper);
  box-shadow: 0 8px 24px #2f2c2522;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  width: 290px;
}
.nav-dropdown a {
  display: block;
  padding: 12px;
  border-radius: 5px;
}
.nav-dropdown a:hover,
.mobile-nav a:hover {
  background: var(--cream);
}
.mobile-nav {
  display: none;
}
.hero {
  padding-top: 66px;
}
.hero > .eyebrow {
  max-width: 850px;
  line-height: 1.7;
  margin-inline: auto;
  letter-spacing: 1.3px;
}
.access-note {
  font-size: 11px;
  color: var(--muted);
  margin: 8px auto 0;
  max-width: 680px;
}
.features-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.features-four .art {
  height: 130px;
}
.features-four .art-meet span {
  width: 49px;
  height: 65px;
  font-size: 27px;
}
.features-four h3 {
  font-size: 18px;
}
.art-attendance {
  background: #e4e9e1;
  color: var(--green);
  gap: 16px;
}
.art-attendance span {
  border: 1px solid #a7b4a0;
  border-radius: 50%;
  padding: 3px 12px;
  font-size: 24px;
}
.art-attendance b {
  font: 32px Instrument;
}
.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.use-cases article {
  border-top: 1px solid #bcb2a1;
  padding-top: 24px;
}
.use-cases h3 {
  font-size: 20px;
}
.use-cases p {
  font-size: 14px;
  color: var(--muted);
}
.use-cases .number {
  display: block;
  margin-bottom: 20px;
}
.niche-link {
  margin-top: 42px;
  border: 1px solid #d0c1a9;
  background: #f4ecdc;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  border-radius: 8px;
}
.niche-link .eyebrow {
  margin-bottom: 9px;
  color: #775037;
}
.niche-link h3 {
  margin-bottom: 8px;
}
.niche-link p:last-child {
  font-size: 13px;
  margin: 0;
  max-width: 620px;
  color: var(--muted);
}
.niche-link .button {
  flex-shrink: 0;
}
.company {
  background: #f1ece2;
}
.company-lead {
  font-size: 18px;
}
.company p:not(.eyebrow) {
  color: var(--muted);
}
.suite-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  margin-top: 28px;
  font-size: 12px;
}
.suite-links a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.contact-note {
  max-width: 620px;
  font-size: 12px;
  color: var(--muted);
  margin: 22px auto 0;
}
.faq p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.breadcrumb {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 30px;
}
.niche-hero h1 {
  font-size: clamp(53px, 5.7vw, 82px);
}
.attendance-demo {
  margin-top: 55px;
  background: #fffdf9;
  border: 1px solid #d3c8b6;
  border-radius: 12px;
  padding: 28px 32px;
  text-align: left;
  box-shadow: 0 20px 45px #534f370d;
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.report-header .eyebrow {
  margin-bottom: 12px;
  font-size: 10px;
}
.report-header h2 {
  font-family: Jakarta, Arial, sans-serif;
  font-size: 21px;
  letter-spacing: -0.5px;
  font-weight: 500;
}
.report-header .badge {
  white-space: nowrap;
}
.table-scroll {
  overflow-x: auto;
}
.attendance-demo table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 590px;
}
.attendance-demo th {
  text-align: left;
  font-weight: 500;
}
.attendance-demo thead th {
  padding: 16px 12px;
  background: #f3ede3;
  color: var(--muted);
  font-size: 11px;
}
.attendance-demo tbody th,
.attendance-demo td {
  padding: 23px 12px;
  border-bottom: 1px solid var(--line);
}
.report-state {
  font-size: 11px;
  color: #31502b;
  background: #e8eee2;
  border-radius: 4px;
  padding: 6px 9px;
  display: inline-block;
}
.report-state.attention {
  color: #805031;
  background: #f4e8d5;
}
.report-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  font-size: 10px;
  color: var(--muted);
}
.scope-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.scope-grid article {
  padding: 30px;
  border: 1px solid var(--line);
  background: #fffdf8;
  border-radius: 9px;
}
.scope-grid ul {
  font-size: 14px;
  padding-left: 20px;
  color: var(--muted);
}
.scope-grid li {
  margin: 13px 0;
}
.badge.neutral {
  background: #ece6dc;
  color: #67533e;
}
.scope-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 990px;
  margin: 25px 0 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;
}
.install .button.secondary {
  margin-top: 8px;
}
.footer .brand img {
  width: 130px;
}
.footer a:not(.brand):hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 1100px) {
  .nav .desktop-nav {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav > summary {
    list-style: none;
    font-size: 24px;
    cursor: pointer;
    min-width: 40px;
    text-align: center;
  }
  .mobile-nav > nav {
    position: absolute;
    top: 83px;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 15px 20px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 20px #2f2c2510;
  }
  .mobile-nav:not([open]) > nav {
    display: none;
  }
  .mobile-nav a {
    padding: 12px;
    font-size: 14px;
  }
  .features-four {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-four .art {
    height: 155px;
  }
  .niche-link {
    align-items: start;
  }
}
@media (max-width: 640px) {
  .nav {
    gap: 12px;
    height: 74px;
  }
  .brand img {
    width: 103px;
  }
  .brand .product-name,
  .brand-divider {
    display: none;
  }
  .nav-actions {
    gap: 12px;
  }
  .nav-actions .button {
    font-size: 11px;
    padding: 10px 12px;
    gap: 8px;
  }
  .mobile-nav > nav {
    top: 73px;
  }
  .suite-bar {
    font-size: 9px;
  }
  .suite-bar > .wrap {
    gap: 10px;
  }
  .hero {
    padding-top: 42px;
  }
  .hero > .eyebrow {
    font-size: 9px;
    letter-spacing: 0.9px;
  }
  h1 {
    font-size: clamp(48px, 12vw, 59px);
  }
  .features-four,
  .use-cases,
  .scope-grid {
    grid-template-columns: 1fr;
  }
  .niche-link {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .niche-link .button {
    width: 100%;
  }
  .use-cases {
    gap: 20px;
  }
  .company-lead {
    font-size: 16px;
  }
  .footer div {
    flex-direction: column;
    gap: 15px;
  }
  .niche-hero h1 {
    font-size: 51px;
  }
  .attendance-demo {
    padding: 21px 17px;
    margin-top: 38px;
  }
  .report-header {
    align-items: start;
    flex-direction: column;
    gap: 0;
  }
  .report-header h2 {
    font-size: 18px;
    line-height: 1.5;
  }
  .report-header .badge {
    font-size: 9px;
  }
  .report-footer {
    flex-direction: column;
    gap: 6px;
  }
  .scope-grid article {
    padding: 25px;
  }
  .closing .actions {
    padding: 0;
  }
  .company .text-link {
    font-size: 12px;
  }
}
@media (max-width: 360px) {
  .nav { gap: 8px; }
  .brand img { width: 90px; }
  .nav-actions { gap: 8px; }
  .mobile-nav > summary { min-width: 32px; }
}
