:root {
  --ink: #0d2a22;
  --ink-soft: #2e473f;
  --muted: #60746c;
  --line: #d9d1bf;
  --line-strong: #c6b99f;
  --paper: #fbf6e9;
  --paper-soft: #f6efdf;
  --paper-warm: #eadfc8;
  --white: #fffdf8;
  --green: #063329;
  --green-2: #0d5a46;
  --gold: #e9c96c;
  --amber: #b8792a;
  --blue: #244f72;
  --red: #9f3f32;
  --shadow: 0 20px 50px rgba(13, 42, 34, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(13, 42, 34, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 42, 34, 0.045) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.56;
}

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

[hidden] {
  display: none !important;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
}

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(13, 42, 34, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 36px rgba(13, 42, 34, 0.045);
  backdrop-filter: blur(18px);
}

.site-header > .brand,
.site-header > .site-nav,
.site-header > .header-cta {
  margin: 0 14px;
}

.nav-wrap,
.section-inner,
.footer-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
  gap: 14px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 8px 18px rgba(6, 51, 41, 0.14));
}

.brand strong {
  display: block;
  color: var(--green-2);
  font-size: 1.06rem;
  line-height: 1.15;
}

.brand span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.25;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a,
.nav-actions a {
  text-decoration: none;
}

.nav-links a:hover,
.nav-actions a:hover,
.footer-link:hover {
  color: var(--green-2);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover {
  color: var(--green-2);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.72);
}

.header-cta:hover {
  border-color: rgba(13, 90, 70, 0.38);
  color: var(--green-2);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 420px;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 850;
}

.nav-actions .button {
  min-height: 44px;
  padding: 11px 14px;
  white-space: nowrap;
}

.nav-learner-cta {
  box-shadow: none;
}

.link-muted {
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  max-width: 100%;
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    color 140ms ease;
}

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

.button-primary {
  background: var(--green);
  color: #fffaf0;
  box-shadow: 0 10px 22px rgba(6, 51, 41, 0.16);
}

.button-primary:hover {
  background: #092c24;
  color: #fff;
}

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

.button-secondary:hover {
  border-color: var(--green-2);
  background: #fffdf8;
}

.button-quiet {
  border-color: transparent;
  background: transparent;
  color: var(--green-2);
}

.hero {
  padding: 72px 0 62px;
}

.hero-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 54px;
}

.hero-grid > *,
.product-cluster > *,
.service-proof > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.feature-tree > *,
.plans > *,
.start-paths .section-inner > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: 4rem;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: 1.28rem;
  line-height: 1.48;
  overflow-wrap: break-word;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-learner-link {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.hero-learner-link a {
  color: var(--green-2);
  font-weight: 950;
  overflow-wrap: anywhere;
  text-underline-offset: 3px;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
  list-style: none;
}

.trust-line li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-line li::before {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.hero-media {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.hero-photo {
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgba(13, 42, 34, 0.14);
  border-radius: 8px;
  background: var(--paper-soft);
  box-shadow: var(--shadow);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.product-cluster {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 14px;
}

.phone-proof,
.manager-proof,
.proof-console,
.proof-device,
.device-note,
.photo-card,
.feature-branch,
.use-card,
.plan-card,
.safety-card,
.faq-item,
.form-panel,
.quote-panel {
  border: 1px solid rgba(13, 42, 34, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
}

.phone-proof {
  overflow: hidden;
  padding: 14px;
  background: #14231f;
  color: #fffaf0;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.phone-top strong {
  font-size: 0.88rem;
}

.phone-top span {
  color: #c8d7d0;
  font-size: 0.76rem;
}

.avatar-dot {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: #f5eedf;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 950;
}

.phone-card {
  margin-top: 10px;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
}

.phone-card.dark {
  background: #24342f;
  color: #fffaf0;
}

.phone-card small,
.manager-card small,
.console-topline span,
.shift-board-header span,
.console-footer small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.phone-card.dark small {
  color: #b7c7c0;
}

.phone-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.phone-card p {
  margin: 6px 0 0;
  color: inherit;
  font-size: 0.86rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.manager-proof {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: 18px;
}

.manager-card + .manager-card {
  margin-top: 14px;
}

.manager-card strong {
  display: block;
  font-size: 1rem;
}

.manager-card p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.meter {
  overflow: hidden;
  height: 9px;
  margin-top: 10px;
  border-radius: 999px;
  background: #e6dfd1;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green-2);
}

.meter .meter-fill-76 {
  width: 76%;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 14px;
}

.metric {
  padding: 10px;
  border-radius: 8px;
  background: var(--paper-soft);
}

.metric b {
  display: block;
  font-size: 1.1rem;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.proof-strip {
  border-top: 1px solid rgba(13, 42, 34, 0.12);
  border-bottom: 1px solid rgba(13, 42, 34, 0.12);
  background: rgba(6, 51, 41, 0.96);
  color: #fffaf0;
}

.proof-strip .section-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.proof-point {
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.05);
}

.proof-point strong {
  display: block;
  font-size: 0.98rem;
}

.proof-point span {
  display: block;
  margin-top: 4px;
  color: #cad8d1;
  font-size: 0.9rem;
}

.start-paths {
  padding: 34px 0;
  border-bottom: 1px solid rgba(13, 42, 34, 0.1);
  background: rgba(255, 253, 248, 0.52);
}

.start-paths .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(240px, 0.72fr) minmax(240px, 0.72fr);
  align-items: stretch;
  gap: 14px;
}

.start-paths-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 26px;
}

.start-paths-copy h2 {
  max-width: 640px;
  margin: 0;
  font-size: 2rem;
  line-height: 1.08;
}

.start-paths-copy p:last-child {
  max-width: 620px;
  margin: 14px 0 0;
  color: var(--muted);
}

.start-path-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(13, 42, 34, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 28px rgba(13, 42, 34, 0.05);
}

.start-path-card.primary {
  border-color: rgba(13, 90, 70, 0.32);
  background: #f4ead0;
}

.start-path-card > span {
  color: var(--green-2);
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
}

.start-path-card h3 {
  margin: 8px 0 0;
  font-size: 1.28rem;
}

.start-path-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.start-path-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 18px;
  padding: 0;
  list-style: none;
}

.start-path-card li {
  display: flex;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.start-path-card li::before {
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.start-path-card .button {
  width: 100%;
  margin-top: auto;
}

.section {
  padding: 86px 0;
}

.section.alt {
  border-top: 1px solid rgba(13, 42, 34, 0.06);
  border-bottom: 1px solid rgba(13, 42, 34, 0.06);
  background: rgba(237, 224, 197, 0.52);
}

.section.dark {
  background: var(--green);
  color: #fffaf0;
}

.section.dark .section-lead,
.section.dark .muted,
.section.dark .section-kicker {
  color: #c7d7d0;
}

.section.dark .safety-card {
  background: #fffaf0;
  color: var(--ink);
}

.section.dark .safety-card .safety-list li {
  color: var(--muted);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  align-items: start;
  gap: 40px;
  margin-bottom: 34px;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--green-2);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section h2 {
  max-width: 800px;
  margin: 0;
  font-size: 2.65rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.section-lead {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.6;
}

.muted {
  color: var(--muted);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pain-item,
.workflow-item {
  padding: 20px;
  border: 1px solid rgba(13, 42, 34, 0.11);
  border-top: 3px solid var(--green-2);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.74);
}

.pain-item strong,
.workflow-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.02rem;
}

.pain-item p,
.workflow-item p {
  margin: 0;
  color: var(--muted);
}

.workflow-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 9px;
  border-radius: 999px;
  background: #e8d08a;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 950;
}

.feature-tree {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-branch {
  display: flex;
  flex-direction: column;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(13, 42, 34, 0.05);
}

.feature-branch h3 {
  margin: 0 0 18px;
  font-size: 1.45rem;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
}

.feature-list span {
  display: block;
  color: var(--muted);
}

.coming-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.coming-item {
  padding: 16px;
  border: 1px dashed rgba(13, 42, 34, 0.22);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.58);
}

.coming-item b {
  display: block;
  font-size: 0.95rem;
}

.coming-item span {
  display: inline-flex;
  margin-top: 10px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(13, 90, 70, 0.09);
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 900;
}

.proof-section {
  overflow: hidden;
}

.service-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: stretch;
  gap: 20px;
}

.proof-console {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  padding: 22px;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.94), rgba(245, 238, 223, 0.9)),
    var(--white);
  box-shadow: 0 22px 52px rgba(13, 42, 34, 0.1);
}

.console-topline,
.shift-board-header,
.console-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.console-topline {
  padding-bottom: 18px;
}

.console-topline strong {
  font-size: 0.98rem;
}

.shift-board {
  flex: 1;
  padding: 22px;
  border-radius: 10px;
  background: #10231f;
  color: #fffaf0;
  box-shadow: inset 0 0 0 1px rgba(255, 250, 240, 0.08);
}

.shift-board-header {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 250, 240, 0.14);
}

.shift-board-header span {
  color: #bccdc6;
}

.shift-board-header strong {
  display: block;
  max-width: 520px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.shift-board-header em {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(233, 201, 108, 0.16);
  color: #f4dda0;
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 950;
}

.shift-rows {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.shift-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
}

.shift-row.is-active {
  border-color: rgba(233, 201, 108, 0.52);
  background: rgba(233, 201, 108, 0.1);
}

.shift-row.is-complete {
  border-color: rgba(119, 191, 139, 0.4);
}

.shift-row div {
  flex: 1;
  min-width: 0;
}

.shift-row strong {
  display: block;
  font-size: 1rem;
  line-height: 1.3;
}

.shift-row p {
  margin: 5px 0 0;
  color: #c7d7d0;
  font-size: 0.9rem;
}

.shift-row b {
  flex: 0 0 auto;
  color: #f1d980;
  font-size: 0.88rem;
  white-space: nowrap;
}

.shift-tag {
  flex: 0 0 86px;
  color: #93aba2;
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.console-footer {
  margin-top: 16px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(13, 90, 70, 0.08);
}

.console-footer strong {
  display: block;
  font-size: 1.05rem;
}

.proof-device {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 18px;
  background: #122720;
  color: #fffaf0;
  box-shadow: 0 22px 52px rgba(13, 42, 34, 0.12);
}

.device-frame {
  overflow: hidden;
  border: 10px solid #f6efdf;
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.device-ui {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--ink);
}

.device-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.device-task {
  min-height: 178px;
  padding: 18px;
  border-radius: 12px;
  background: var(--paper-soft);
}

.device-task small {
  display: block;
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.device-task strong {
  display: block;
  margin-top: 14px;
  font-size: 1.3rem;
  line-height: 1.08;
}

.device-task p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.device-progress {
  overflow: hidden;
  height: 9px;
  border-radius: 999px;
  background: #e5ddca;
}

.device-progress span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: var(--green-2);
}

.device-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.device-split span,
.device-action {
  padding: 12px;
  border-radius: 10px;
  background: #f3ead7;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.device-action {
  background: var(--green);
  color: #fffaf0;
  text-align: center;
}

.device-note {
  padding: 18px;
  background: rgba(255, 250, 240, 0.08);
  color: #fffaf0;
}

.device-note strong {
  display: block;
  font-size: 1.1rem;
}

.device-note p {
  margin: 8px 0 0;
  color: #c7d7d0;
}

.proof-mini-list {
  display: grid;
  gap: 8px;
}

.proof-mini-list span {
  padding: 11px 12px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.06);
  color: #e8f0ec;
  font-size: 0.9rem;
  font-weight: 850;
}

.plan-list,
.safety-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.plan-list li,
.safety-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
}

.plan-list li::before,
.safety-list li::before {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.use-card {
  padding: 20px;
}

.use-card h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.use-card p {
  margin: 0;
  color: var(--muted);
}

.photo-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  margin-top: 26px;
}

.photo-card {
  overflow: hidden;
  min-height: 260px;
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  background: var(--green);
  color: #fffaf0;
}

.quote-panel p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.28;
}

.quote-panel span {
  display: block;
  margin-top: 18px;
  color: #c7d7d0;
}

.pricing-teaser {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(13, 42, 34, 0.18);
  border-radius: 8px;
  background: var(--green);
  color: #fffaf0;
}

.pricing-teaser p {
  margin: 6px 0 0;
  color: #c7d7d0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
}

.plan-card.current {
  border-color: var(--green-2);
  background: #f4ead0;
}

.plan-label {
  color: var(--green-2);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 8px 0 0;
  font-size: 1.25rem;
}

.plan-price {
  margin: 12px 0 0;
  font-size: 1.55rem;
  font-weight: 950;
  line-height: 1.15;
}

.plan-note {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan-card .button {
  width: 100%;
  margin-top: auto;
}

.limits-table {
  overflow-x: auto;
  margin-top: 18px;
  border: 1px solid rgba(13, 42, 34, 0.14);
  border-radius: 8px;
  background: var(--white);
}

.limits-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.limits-table th,
.limits-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.limits-table th {
  background: #f1e6d2;
  font-size: 0.86rem;
}

.limits-table tr:last-child td {
  border-bottom: 0;
}

.safety-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.safety-card {
  padding: 24px;
}

.safety-card h3 {
  margin: 0;
  font-size: 1.35rem;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 900;
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
}

.final-cta {
  padding: 58px 0;
  background: #10231f;
  color: #fffaf0;
}

.final-cta .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.final-cta h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
}

.final-cta p {
  max-width: 720px;
  margin: 12px 0 0;
  color: #c7d7d0;
}

.beta-form-section {
  padding: 82px 0;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: 34px;
  align-items: start;
}

.form-panel {
  padding: 28px;
}

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

.field {
  display: grid;
  gap: 6px;
}

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

.field label,
.consent {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 850;
}

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #fffaf0;
  color: var(--ink);
}

.field input {
  height: 48px;
  padding: 0 12px;
}

.field textarea {
  min-height: 118px;
  padding: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.consent input:focus {
  outline: 3px solid rgba(13, 90, 70, 0.18);
  outline-offset: 2px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  grid-column: 1 / -1;
  line-height: 1.45;
}

.consent input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  grid-column: 1 / -1;
  margin-top: 4px;
}

.form-status {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.form-status.is-error {
  color: var(--red);
}

.success-panel {
  padding: 20px;
  border: 1px solid rgba(13, 90, 70, 0.28);
  border-radius: 8px;
  background: #eef6ef;
}

.success-panel:focus {
  outline: 3px solid rgba(13, 90, 70, 0.18);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.site-footer {
  padding: 44px 0 82px;
  background: #081f19;
  color: #fffaf0;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, auto);
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand img {
  width: 44px;
  height: 44px;
}

.footer-brand strong {
  display: block;
}

.footer-brand p {
  max-width: 560px;
  margin: 8px 0 0;
  color: #c7d7d0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-link {
  color: #dce8e2;
  font-weight: 750;
  text-decoration: none;
}

.legal-main {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 78px;
}

.legal-main h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(2.2rem, 6vw, 3.05rem);
  line-height: 1.05;
  overflow-wrap: anywhere;
}

.legal-main h2 {
  margin: 42px 0 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  line-height: 1.15;
}

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

.legal-main ul {
  padding-left: 22px;
}

.legal-updated,
.legal-card {
  padding: 18px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.legal-updated {
  margin: 0 0 24px;
  font-size: 0.94rem;
  line-height: 1.45;
}

.legal-card {
  padding: 22px;
  margin: 22px 0;
}

.mobile-signup-bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 18;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(13, 42, 34, 0.16);
  background: rgba(255, 250, 240, 0.96);
  backdrop-filter: blur(14px);
}

.mobile-signup-bar .button {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  font-size: 0.9rem;
}

.mobile-signup-bar ~ #ask-malte-widget-host {
  bottom: calc(76px + env(safe-area-inset-bottom)) !important;
}

@media (max-width: 1240px) {
  .nav-links,
  .site-nav {
    display: none;
  }

  .brand,
  .nav-actions {
    min-width: 0;
  }

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

  .hero h1 {
    font-size: 3.4rem;
  }

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

  .coming-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 880px) {
  body {
    padding-bottom: 72px;
  }

  .nav-wrap,
  .section-inner,
  .footer-inner {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .nav-actions .button,
  .nav-actions .link-muted {
    display: none;
  }

  .mobile-signup-bar {
    display: grid;
  }

  .nav-wrap {
    min-height: 70px;
  }

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

  .hero {
    padding: 34px 0 28px;
  }

  .hero h1 {
    font-size: clamp(2.24rem, 10.4vw, 2.7rem);
    line-height: 1.03;
    text-wrap: normal;
    overflow-wrap: break-word;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 1.04rem;
    line-height: 1.45;
    max-width: 100%;
  }

  .hero-actions,
  .section-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-media,
  .product-cluster,
  .phone-proof,
  .manager-proof,
  .hero-photo {
    width: 100%;
    max-width: 100%;
  }

  .hero-learner-link,
  .hero-lead,
  .hero h1,
  .phone-card,
  .manager-card,
  .start-path-card {
    overflow-wrap: anywhere;
  }

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

  .trust-line li {
    flex: 1 1 100%;
  }

  .product-cluster {
    gap: 10px;
  }

  .phone-proof {
    padding: 12px;
  }

  .phone-card {
    padding: 12px;
  }

  .manager-proof {
    min-height: auto;
    padding: 16px;
  }

  .hero-photo,
  .photo-row,
  .beta-form-section .photo-card,
  .limits-table {
    display: none;
  }

  .product-cluster,
  .proof-strip .section-inner,
  .section-header,
  .grid-2,
  .grid-3,
  .grid-4,
  .feature-tree,
  .start-paths .section-inner,
  .service-proof,
  .safety-grid,
  .faq-grid,
  .final-cta .section-inner,
  .form-layout,
  .footer-inner,
  .photo-row,
  .pricing-teaser {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 46px 0;
  }

  .section h2,
  .final-cta h2 {
    font-size: 1.86rem;
  }

  .section-header {
    align-items: start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .section-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .proof-point {
    padding: 12px 0;
    background: transparent;
  }

  .proof-point span {
    margin-top: 2px;
    font-size: 0.86rem;
  }

  .start-paths {
    padding: 24px 0;
  }

  .start-paths-copy {
    padding-right: 0;
  }

  .start-paths-copy h2 {
    font-size: 1.65rem;
  }

  .start-path-card,
  .pain-item,
  .workflow-item,
  .use-card,
  .plan-card,
  .safety-card {
    padding: 16px;
  }

  .start-path-card ul {
    gap: 5px;
    margin: 10px 0 14px;
  }

  .feature-branch {
    padding: 18px;
  }

  .feature-branch h3 {
    margin-bottom: 14px;
  }

  .feature-list {
    gap: 14px;
  }

  .proof-console {
    min-height: auto;
    padding: 16px;
  }

  .shift-board {
    padding: 16px;
  }

  .shift-board-header,
  .console-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .shift-board-header strong {
    font-size: 1.22rem;
  }

  .shift-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .shift-tag {
    flex-basis: auto;
  }

  .console-footer .button {
    width: 100%;
  }

  .device-task {
    min-height: 150px;
  }

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

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

  .limits-table {
    overflow: hidden;
  }

  .limits-table table,
  .limits-table thead,
  .limits-table tbody,
  .limits-table tr,
  .limits-table th,
  .limits-table td {
    display: block;
    min-width: 0;
  }

  .limits-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .limits-table tr {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .limits-table tr:last-child {
    border-bottom: 0;
  }

  .limits-table td {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    padding: 9px 14px;
    border-bottom: 0;
    font-size: 0.92rem;
  }

  .limits-table td::before {
    color: var(--ink);
    content: attr(data-label);
    font-weight: 950;
  }

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

  .form-panel {
    padding: 20px;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(1.92rem, 9.4vw, 2.22rem);
  }

  .hero-photo {
    min-height: 210px;
  }

  .hero-photo img {
    min-height: 230px;
  }

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

  .metric-row {
    grid-template-columns: 1fr;
  }

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

/* DeskDude root site */
.root-site {
  --root-bg: #0d0f0e;
  --root-bg-soft: #141816;
  --root-panel: #181d1a;
  --root-panel-2: #101311;
  --root-text: #f2efe7;
  --root-muted: #a5aaa2;
  --root-faint: #747b72;
  --root-line: rgba(242, 239, 231, 0.13);
  --root-line-strong: rgba(242, 239, 231, 0.22);
  --root-accent: #d7c49a;
  --root-accent-2: #91a693;
  margin: 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(145, 166, 147, 0.13), transparent 31rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 16px),
    var(--root-bg);
  color: var(--root-text);
}

.root-site::before {
  background:
    linear-gradient(rgba(242, 239, 231, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 239, 231, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0.32;
}

.root-site .skip-link {
  background: var(--root-text);
  color: var(--root-bg);
}

.root-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100vh;
}

.root-rail {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 28px;
  border-right: 1px solid var(--root-line);
  background: rgba(13, 15, 14, 0.78);
  backdrop-filter: blur(20px);
}

.root-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--root-text);
  text-decoration: none;
}

.root-brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(242, 239, 231, 0.34);
  border-radius: 8px;
  background: rgba(242, 239, 231, 0.08);
  color: var(--root-text);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.root-brand strong,
.root-brand small {
  display: block;
}

.root-brand strong {
  font-size: 1.04rem;
  line-height: 1.1;
}

.root-brand small {
  margin-top: 3px;
  color: var(--root-muted);
  font-size: 0.76rem;
}

.root-nav {
  display: grid;
  gap: 4px;
  margin-top: 72px;
}

.root-nav a,
.root-rail-meta a {
  color: var(--root-muted);
  text-decoration: none;
  transition:
    color 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    transform 150ms ease;
}

.root-nav a {
  padding: 11px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 760;
}

.root-nav a:hover,
.root-nav a:focus-visible,
.root-nav a.is-active {
  border-color: var(--root-line);
  background: rgba(242, 239, 231, 0.045);
  color: var(--root-text);
  outline: 0;
}

.root-rail-meta {
  display: grid;
  gap: 10px;
  margin-top: auto;
  color: var(--root-faint);
  font-size: 0.82rem;
}

.root-rail-meta span {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--root-line);
  color: var(--root-faint);
}

.root-rail-meta a:hover {
  color: var(--root-text);
}

.root-main {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: 34px 0 80px;
}

.root-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.54fr);
  align-items: end;
  min-height: calc(100vh - 68px);
  gap: 72px;
  padding: 66px 0 104px;
}

.root-hero-compact {
  min-height: auto;
  padding-top: 104px;
}

.root-kicker {
  margin: 0 0 16px;
  color: var(--root-accent);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.root-hero h1,
.root-section h2,
.root-contact-card h2 {
  margin: 0;
  color: var(--root-text);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 520;
  letter-spacing: 0;
}

.root-hero h1 {
  max-width: 820px;
  font-size: clamp(3.2rem, 5.15vw, 5.55rem);
  line-height: 0.95;
}

.root-hero-copy > p:not(.root-kicker),
.root-section-header > p:not(.root-kicker),
.root-about-copy p,
.root-contact-card > p {
  color: var(--root-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.root-hero-copy > p:not(.root-kicker) {
  max-width: 620px;
  margin: 30px 0 0;
  font-size: 1.04rem;
}

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

.root-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border: 1px solid var(--root-line-strong);
  border-radius: 8px;
  color: var(--root-text);
  font-size: 0.84rem;
  font-weight: 820;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 150ms ease,
    background 150ms ease,
    border-color 150ms ease,
    color 150ms ease;
}

.root-button:hover,
.root-button:focus-visible {
  transform: translateY(-1px);
  outline: 0;
}

.root-button-primary {
  border-color: var(--root-accent);
  background: var(--root-accent);
  color: #14110c;
}

.root-button-primary:hover,
.root-button-primary:focus-visible {
  background: #ead8ad;
}

.root-button-secondary {
  background: rgba(242, 239, 231, 0.035);
}

.root-button-secondary:hover,
.root-button-secondary:focus-visible {
  border-color: rgba(242, 239, 231, 0.36);
  background: rgba(242, 239, 231, 0.07);
}

.root-portrait {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  margin: 0;
  border: 1px solid var(--root-line);
  border-radius: 8px;
  background: var(--root-panel);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.root-portrait::after {
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(transparent, rgba(8, 10, 9, 0.92));
  content: "";
}

.root-portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 22%;
}

.root-portrait figcaption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: grid;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid rgba(242, 239, 231, 0.18);
}

.root-portrait figcaption strong {
  font-size: 1rem;
}

.root-portrait figcaption span {
  color: #c5c9c0;
  font-size: 0.88rem;
}

.root-section {
  padding: 112px 0;
  border-top: 1px solid var(--root-line);
}

.root-section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.5fr);
  gap: 72px;
  margin-bottom: 48px;
}

.root-section-header .root-kicker {
  grid-column: 1 / -1;
  margin-bottom: -32px;
}

.root-section h2,
.root-contact-card h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.35vw, 3.45rem);
  line-height: 1.04;
}

.root-section-header > p:not(.root-kicker) {
  margin: 0;
}

.root-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.root-service-card,
.root-product-card,
.root-service-row,
.root-about-panel,
.root-contact-card {
  border: 1px solid var(--root-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--root-panel-2);
}

.root-service-card {
  min-height: 270px;
  padding: 26px;
}

.root-service-card span {
  display: block;
  color: var(--root-faint);
  font-size: 0.78rem;
  font-weight: 850;
}

.root-service-card h3,
.root-product-card h3,
.root-service-card h2 {
  margin: 62px 0 0;
  color: var(--root-text);
  font-size: 1.28rem;
  line-height: 1.12;
}

.root-service-card p,
.root-product-card p,
.root-service-row span {
  color: var(--root-muted);
}

.root-service-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 820;
}

.root-service-card p {
  margin: 14px 0 0;
  line-height: 1.65;
}

.root-product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 44px;
  min-height: 330px;
  padding: 40px;
  background:
    radial-gradient(circle at 82% 18%, rgba(215, 196, 154, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    #101311;
}

.root-product-label {
  display: inline-flex;
  color: var(--root-accent);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.root-product-card h3 {
  margin-top: 96px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.8vw, 3.9rem);
  font-weight: 520;
}

.root-product-card p {
  max-width: 620px;
  margin: 18px 0 0;
  font-size: 0.98rem;
  line-height: 1.68;
}

.root-service-list {
  display: grid;
  border-top: 1px solid var(--root-line);
}

.root-service-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 42px;
  padding: 30px 0;
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
  color: var(--root-text);
  text-decoration: none;
}

.root-service-row strong {
  font-size: 0.98rem;
}

.root-service-row span {
  line-height: 1.62;
}

.root-service-row:hover,
.root-service-row:focus-visible {
  color: var(--root-accent);
  outline: 0;
}

.root-about-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.56fr);
  gap: 72px;
  padding: 48px;
}

.root-about-copy p {
  margin: 0;
}

.root-about-copy p + p {
  margin-top: 18px;
}

.root-contact {
  padding-bottom: 28px;
}

.root-contact-card {
  padding: 58px;
}

.root-contact-card > p {
  max-width: 680px;
  margin: 22px 0 0;
}

.root-page-main {
  display: grid;
  align-content: start;
  gap: 74px;
  min-height: 100vh;
  padding-top: 112px;
}

.root-page-hero {
  max-width: 910px;
}

.root-page-hero h1,
.root-contact-card h1 {
  max-width: 860px;
  margin: 0;
  color: var(--root-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 4.6vw, 5rem);
  font-weight: 520;
  line-height: 1;
  letter-spacing: 0;
}

.root-page-hero p:not(.root-kicker),
.root-contact-card p:not(.root-kicker) {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--root-muted);
  font-size: 1rem;
  line-height: 1.72;
}

.root-overview-grid,
.root-detail-grid {
  display: grid;
  gap: 22px;
}

.root-overview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 42px;
  border-top: 1px solid var(--root-line);
}

.root-mini-card,
.root-detail-grid article {
  border: 1px solid var(--root-line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--root-panel-2);
}

.root-mini-card {
  display: grid;
  min-height: 210px;
  padding: 24px;
  color: var(--root-text);
  text-decoration: none;
}

.root-mini-card span {
  color: var(--root-faint);
  font-size: 0.75rem;
  font-weight: 850;
}

.root-mini-card strong {
  align-self: end;
  font-size: 1.12rem;
}

.root-mini-card p,
.root-detail-grid p {
  margin: 10px 0 0;
  color: var(--root-muted);
  line-height: 1.62;
}

.root-detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.root-detail-grid article {
  padding: 28px;
}

.root-detail-grid h2 {
  margin: 0;
  color: var(--root-text);
  font-size: 1.05rem;
}

.root-linked-card {
  color: var(--root-text);
  text-decoration: none;
}

.root-mini-card:hover,
.root-mini-card:focus-visible,
.root-linked-card:hover,
.root-linked-card:focus-visible {
  border-color: var(--root-line-strong);
  outline: 0;
}

.root-product-card-page h2 {
  margin: 96px 0 0;
  color: var(--root-text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.9rem, 3.8vw, 3.9rem);
  font-weight: 520;
  line-height: 1;
}

.root-page-cta {
  margin-top: 10px;
}

.root-about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(330px, 0.46fr);
  align-items: start;
  gap: 72px;
}

.root-page-portrait,
.root-page-portrait img {
  min-height: 520px;
}

.root-contact-page {
  max-width: 980px;
}

.root-menu-button {
  position: fixed;
  top: 14px;
  right: 14px;
  z-index: 35;
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--root-line-strong);
  border-radius: 8px;
  background: rgba(13, 15, 14, 0.84);
  color: var(--root-text);
  font-size: 0.86rem;
  font-weight: 820;
  backdrop-filter: blur(16px);
}

.root-menu-toggle {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.root-menu-button span:last-child {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 -6px 0 currentColor,
    0 6px 0 currentColor;
}

@media (max-width: 1120px) {
  .root-shell {
    grid-template-columns: 238px minmax(0, 1fr);
  }

  .root-rail {
    padding: 22px;
  }

  .root-main {
    width: min(100% - 48px, 940px);
  }

  .root-hero,
  .root-section-header,
  .root-about-panel {
    grid-template-columns: 1fr;
  }

  .root-hero {
    align-items: start;
    min-height: auto;
  }

  .root-portrait {
    min-height: 500px;
  }

  .root-portrait img {
    min-height: 500px;
  }

  .root-section-header .root-kicker {
    margin-bottom: -20px;
  }
}

@media (max-width: 820px) {
  .root-site {
    padding-bottom: 0;
  }

  .root-menu-button {
    display: inline-flex;
  }

  .root-shell {
    display: block;
  }

  .root-rail {
    position: fixed;
    inset: 0 0 auto auto;
    z-index: 30;
    width: min(360px, calc(100% - 32px));
    height: 100vh;
    transform: translateX(105%);
    border-left: 1px solid var(--root-line);
    border-right: 0;
    transition: transform 180ms ease;
  }

  .root-menu-toggle:checked ~ .root-shell .root-rail {
    transform: translateX(0);
  }

  .root-main {
    width: calc(100% - 28px);
    padding-top: 70px;
  }

  .root-hero {
    gap: 46px;
    padding: 40px 0 70px;
  }

  .root-hero-compact {
    padding-top: 40px;
  }

  .root-hero h1 {
    font-size: clamp(2.34rem, 11.4vw, 3.55rem);
    line-height: 1;
  }

  .root-hero-copy > p:not(.root-kicker),
  .root-section-header > p:not(.root-kicker),
  .root-about-copy p,
  .root-contact-card > p {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .root-portrait,
  .root-portrait img {
    min-height: 430px;
  }

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

  .root-section-header {
    gap: 28px;
  }

  .root-section-header .root-kicker {
    margin-bottom: -4px;
  }

  .root-card-grid,
  .root-product-card,
  .root-service-row {
    grid-template-columns: 1fr;
  }

  .root-service-card {
    min-height: 220px;
  }

  .root-service-card h3 {
    margin-top: 44px;
  }

  .root-product-card {
    min-height: 0;
    padding: 28px;
  }

  .root-product-card h3 {
    margin-top: 58px;
  }

  .root-about-panel,
  .root-contact-card {
    padding: 28px;
  }

  .root-page-main {
    gap: 46px;
    min-height: auto;
    padding-top: 86px;
  }

  .root-page-hero h1,
  .root-contact-card h1 {
    font-size: clamp(2.2rem, 10.6vw, 3.4rem);
    line-height: 1.02;
  }

  .root-overview-grid,
  .root-detail-grid,
  .root-about-layout,
  .root-page-grid {
    grid-template-columns: 1fr;
  }

  .root-overview-grid {
    padding-top: 32px;
  }

  .root-mini-card {
    min-height: 180px;
  }

  .root-page-portrait,
  .root-page-portrait img {
    min-height: 420px;
  }
}

@media (max-width: 520px) {
  .root-actions .root-button {
    width: 100%;
  }

  .root-portrait,
  .root-portrait img {
    min-height: 360px;
  }

  .root-portrait figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }
}
