:root {
  --paper: #f5f2ec;
  --ink: #171215;
  --muted: #6c6266;
  --red: #a72e3d;
  --red-dark: #721e2a;
  --rose: #f5dadd;
  --orange: #ff6b3c;
  --line: #ddd5d2;
  --dark: #160f12;
  --green: #2a9d70;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.shell {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(245, 242, 236, 0.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 18, 21, 0.08);
}
nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.brand b {
  color: var(--red);
}
.shield {
  display: grid;
  place-items: center;
  width: 34px;
  height: 38px;
  background: var(--red);
  color: white;
  font-size: 15px;
  font-weight: 800;
  clip-path: polygon(50% 0, 92% 15%, 92% 62%, 50% 100%, 8% 62%, 8% 15%);
}
.nav-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
  font-weight: 700;
}
.nav-links a:hover {
  color: var(--red);
}
.room-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}
.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 90px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
}
.eyebrow span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--orange);
}
h1,
h2,
h3 {
  font-family: Manrope, sans-serif;
  letter-spacing: -0.045em;
  margin: 0;
}
h1 {
  font-size: clamp(62px, 7vw, 98px);
  line-height: 0.92;
  margin: 25px 0 28px;
}
h1 em {
  color: var(--red);
  font-style: normal;
}
.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  padding: 15px 19px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
}
.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 30px rgba(167, 46, 61, 0.22);
}
.secondary {
  border: 1px solid var(--line);
  background: #fff;
}
.principle-card {
  position: relative;
  background: var(--dark);
  color: #fff;
  border-radius: 24px;
  padding: 46px;
  transform: rotate(1.5deg);
  box-shadow: 0 30px 65px rgba(22, 15, 18, 0.2);
}
.principle-card:after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  pointer-events: none;
}
.card-number {
  color: #e898a2;
  font: 800 12px Manrope;
}
.principle-card > p {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #b9a9af;
  font-size: 10px;
  margin: 35px 0 13px;
}
.principle-card h2 {
  font-size: 34px;
  line-height: 1.1;
}
.principle-card ul {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  color: #c9bcc1;
  font-size: 13px;
}
.principle-card li {
  margin: 10px 0;
}
.principle-card li:before {
  content: "✓";
  color: #ff8c65;
  font-weight: 800;
  margin-right: 9px;
}
.statement {
  background: var(--red);
  color: #fff;
  padding: 42px 0;
}
.statement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.statement p {
  margin: 0;
  font: 700 26px/1.25 Manrope;
  letter-spacing: -0.03em;
}
.statement p:last-child {
  font: 400 16px/1.6 "DM Sans";
  color: #f3cbd0;
}
.section {
  padding: 120px 0;
  scroll-margin-top: 75px;
}
.section-head {
  max-width: 760px;
  margin-bottom: 55px;
}
.section-head h2 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1;
  margin: 18px 0;
}
.section-head > p:last-child {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.cards {
  display: grid;
  gap: 16px;
}
.cards.three {
  grid-template-columns: repeat(3, 1fr);
}
.cards article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}
.icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 22px;
}
.icon.warm {
  background: #ffeadf;
  color: var(--orange);
}
.icon.cool {
  background: #e5eafb;
  color: #4c68bd;
}
.icon.red {
  background: var(--rose);
  color: var(--red);
}
.cards h3 {
  font-size: 22px;
  margin: 25px 0 10px;
}
.cards p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.live-help {
  background: #ebe6e1;
}
.task-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.task-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.task-grid article > span {
  color: var(--red);
  font: 800 11px Manrope;
}
.task-grid h3 {
  margin-bottom: 7px;
  font-size: 20px;
}
.task-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}
.dark {
  background: var(--dark);
  color: #fff;
}
.section-head.light > p:last-child {
  color: #b8aeb2;
}
.do-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.do-grid article {
  border: 1px solid #37292f;
  border-radius: 18px;
  padding: 34px;
  background: #1c1418;
}
.list-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  font-size: 11px;
}
.do .list-label {
  color: #65d2a6;
}
.dont .list-label {
  color: #f08390;
}
.do-grid ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.do-grid li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid #33272c;
  color: #c7bdc1;
}
.do-grid li:before {
  position: absolute;
  left: 0;
  font-weight: 800;
}
.do li:before {
  content: "✓";
  color: #65d2a6;
}
.dont li:before {
  content: "×";
  color: #f08390;
}
.ladder {
  border-top: 1px solid var(--line);
}
.ladder article {
  display: grid;
  grid-template-columns: 70px 1fr 190px;
  gap: 25px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.ladder article > span {
  font: 800 12px Manrope;
  color: var(--red);
}
.ladder h3 {
  font-size: 25px;
}
.ladder p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.ladder code {
  color: var(--red);
  font-weight: 800;
}
.ladder b {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: right;
  color: var(--red);
}
.policy-note {
  margin: 22px 0 0;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  line-height: 1.6;
}
.policy-note b {
  color: var(--ink);
}
.callout {
  display: flex;
  gap: 22px;
  margin-top: 16px;
  padding: 24px 28px;
  border-radius: 14px;
  background: var(--rose);
  color: #64202a;
}
.callout b {
  white-space: nowrap;
}
.callout p {
  margin: 0;
  line-height: 1.55;
}
.command-section {
  background: #ece6e3;
}
.command-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr;
  gap: 24px;
}
.command-table {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}
.command-table > div {
  display: grid;
  grid-template-columns: 48% 52%;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.command-table > div:last-child {
  border: 0;
}
.command-table code {
  color: var(--red);
  font-weight: 800;
  font-size: 13px;
}
.command-table span {
  color: var(--muted);
  font-size: 13px;
}
.reason-card {
  background: var(--red-dark);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
}
.reason-card > p {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-weight: 800;
  font-size: 11px;
  color: #f2b7bf;
}
.reason-card dl {
  margin: 25px 0;
}
.reason-card dl > div {
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.reason-card dt {
  font: 800 16px Manrope;
}
.reason-card dd {
  margin: 4px 0 0;
  color: #dec4c8;
  font-size: 13px;
  line-height: 1.4;
}
.reason-card small {
  display: block;
  color: #dcbec3;
  line-height: 1.55;
}
.reason-explainer {
  margin-top: 24px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.reason-explainer header {
  max-width: 760px;
}
.reason-explainer h3 {
  margin: 14px 0 10px;
  font-size: 30px;
}
.reason-explainer header > p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.reason-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.reason-options article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
}
.reason-options span {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 10px;
  font-weight: 800;
}
.reason-options h4 {
  margin: 11px 0 16px;
  font: 800 19px Manrope;
}
.reason-options code {
  display: block;
  overflow-wrap: anywhere;
  padding: 12px;
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
}
.reason-options p {
  margin: 15px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.reason-options b {
  color: var(--ink);
}
.reason-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.reason-steps article {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}
.reason-steps article:last-child {
  border: 0;
}
.reason-steps b {
  color: var(--red);
}
.reason-steps p {
  margin: 0;
  color: var(--muted);
}
.manual-reason {
  margin: 18px 0 0;
  padding: 18px 20px;
  border-radius: 10px;
  background: var(--rose);
  color: #64202a;
  line-height: 1.6;
}
.manual-reason code {
  overflow-wrap: anywhere;
  font-weight: 700;
}
.native-note {
  margin: 20px 0 0;
  padding: 20px 24px;
  background: #fff;
  border-left: 4px solid var(--orange);
  line-height: 1.6;
  color: var(--muted);
}
.native-note b {
  color: var(--ink);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.split article {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.split span {
  color: var(--red);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.split h3 {
  font-size: 25px;
  margin: 20px 0 10px;
}
.split p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}
.quick {
  background: var(--red);
  color: #fff;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  overflow: hidden;
}
.quick-grid article {
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}
.quick-grid article:last-child {
  border: 0;
}
.quick-grid b {
  font: 800 18px Manrope;
}
.quick-grid p {
  color: #f5ccd1;
  line-height: 1.45;
  margin: 8px 0 0;
}
.closing {
  margin: 34px 0 0;
  text-align: center;
  font: 700 19px Manrope;
}
.footer {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}
.footer > a:last-child {
  font-weight: 700;
  color: var(--red);
}
@media (max-width: 950px) {
  .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .principle-card {
    max-width: 600px;
  }
  .cards.three {
    grid-template-columns: 1fr 1fr;
  }
  .quick-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quick-grid article {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }
  .command-layout {
    grid-template-columns: 1fr;
  }
  .quick-grid article:nth-child(even) {
    border-right: 0;
  }
}
@media (max-width: 650px) {
  .shell {
    width: min(100% - 28px, 1160px);
  }
  .topbar nav {
    height: 66px;
  }
  .room-label {
    display: none;
  }
  .hero {
    padding-top: 55px;
    padding-bottom: 70px;
    gap: 45px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .principle-card {
    padding: 35px 30px;
  }
  .statement-grid,
  .cards.three,
  .do-grid,
  .split,
  .task-grid,
  .reason-options,
  .reason-steps {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 85px 0;
  }
  .section-head {
    margin-bottom: 35px;
  }
  .section-head h2 {
    font-size: 43px;
  }
  .ladder article {
    grid-template-columns: 42px 1fr;
  }
  .ladder b {
    grid-column: 2;
    text-align: left;
  }
  .callout {
    flex-direction: column;
  }
  .command-table > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .reason-explainer {
    padding: 24px 18px;
  }
  .reason-steps article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .quick-grid {
    grid-template-columns: 1fr;
  }
  .quick-grid article {
    border-right: 0;
  }
  .footer {
    flex-direction: column;
    justify-content: center;
    gap: 14px;
  }
  .footer .brand {
    display: none;
  }
}
