:root {
  --ink: #192a2a;
  --ink-soft: #45615d;
  --paper: #f4f0e7;
  --paper-deep: #e8e1d5;
  --white: #fbfaf6;
  --mint: #c9e8d7;
  --mint-deep: #9bcdb8;
  --lime: #d7f26a;
  --coral: #ed8465;
  --line: rgba(25, 42, 42, 0.15);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --max-width: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--lime);
  color: var(--ink);
}

*[hidden] {
  display: none !important;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.site-shell {
  width: min(100% - 48px, var(--max-width));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
  transition: transform 160ms 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: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.brand-copy small {
  color: var(--ink-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 33px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-nav > a {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.nav-cta):hover::after,
.site-nav > a[aria-current="page"]:not(.nav-cta)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px !important;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.nav-cta svg {
  width: 15px;
  height: 15px;
}

.nav-cta:hover {
  border-color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-line {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.91fr) minmax(460px, 1.09fr);
  gap: clamp(48px, 8vw, 126px);
  align-items: center;
  min-height: min(760px, calc(100vh - 96px));
  padding: 42px 0 84px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 25px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px rgba(237, 132, 101, 0.15);
}

.hero h1,
.utility-hero h1 {
  max-width: 750px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(60px, 7.2vw, 112px);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

.hero h1 em,
.utility-hero h1 em {
  color: var(--coral);
  font-style: normal;
}

.hero-description {
  max-width: 425px;
  margin: 33px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 49px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button svg {
  width: 17px;
  height: 17px;
}

.button-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(25, 42, 42, 0.13);
}

.button-primary:hover {
  background: #2c4745;
  transform: translateY(-3px);
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.9;
  transition: border-color 180ms ease, color 180ms ease, gap 180ms ease;
}

.inline-link:hover {
  gap: 13px;
  border-color: var(--ink);
  color: var(--ink);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 22px;
  margin-top: 58px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fact-mark {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint-deep);
}

.hero-visual {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 36px;
  background: var(--mint);
  isolation: isolate;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(25, 42, 42, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 42, 42, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 73%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 73%);
}

.visual-sun {
  position: absolute;
  top: 9%;
  right: 6%;
  width: 178px;
  height: 178px;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.9;
  filter: blur(0.2px);
}

.visual-orbit {
  position: absolute;
  border: 1px solid rgba(25, 42, 42, 0.22);
  border-radius: 50%;
  transform: rotate(-22deg);
}

.visual-orbit-one {
  top: -7%;
  right: -14%;
  width: 76%;
  height: 39%;
}

.visual-orbit-two {
  bottom: 3%;
  left: -25%;
  width: 81%;
  height: 35%;
  transform: rotate(26deg);
}

.visual-label {
  position: absolute;
  z-index: 2;
  color: rgba(25, 42, 42, 0.65);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-label-top {
  top: 34px;
  left: 36px;
}

.visual-label-bottom {
  right: 37px;
  bottom: 31px;
}

.app-window {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(78%, 530px);
  overflow: hidden;
  border: 1px solid rgba(25, 42, 42, 0.2);
  border-radius: 16px;
  background: rgba(250, 249, 243, 0.96);
  box-shadow: 23px 33px 55px rgba(25, 42, 42, 0.2), 0 2px 0 rgba(255, 255, 255, 0.6) inset;
  transform: translate(-50%, -48%) rotate(-3.5deg);
}

.window-toolbar,
.window-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 37px;
  padding: 0 15px;
  border-bottom: 1px solid rgba(25, 42, 42, 0.1);
  color: rgba(25, 42, 42, 0.63);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.window-footer {
  height: 32px;
  border-top: 1px solid rgba(25, 42, 42, 0.1);
  border-bottom: 0;
  color: rgba(25, 42, 42, 0.42);
  font-size: 7px;
}

.window-controls {
  display: flex;
  gap: 5px;
}

.window-controls i {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e89176;
}

.window-controls i:nth-child(2) {
  background: #e8cc67;
}

.window-controls i:nth-child(3) {
  background: #90c5a6;
}

.window-title {
  margin-left: 39px;
}

.window-title-separator {
  margin: 0 6px;
  opacity: 0.5;
}

.window-menu {
  letter-spacing: 0.18em;
}

.window-body {
  padding: 24px 30px 30px;
  text-align: center;
}

.window-topline {
  display: flex;
  justify-content: space-between;
  color: rgba(25, 42, 42, 0.46);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.window-state {
  color: #6d9f7d;
}

.timer-wrap {
  display: grid;
  place-items: center;
  margin: 33px 0 22px;
}

.timer-ring {
  position: relative;
  display: grid;
  width: 184px;
  height: 184px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 0 72%, rgba(25, 42, 42, 0.08) 72% 100%);
  transform: rotate(-33deg);
}

.timer-ring::before {
  position: absolute;
  width: 162px;
  height: 162px;
  border-radius: 50%;
  background: var(--white);
  content: "";
}

.timer-center {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3px;
  transform: rotate(33deg);
}

.timer-time {
  font-family: var(--display);
  font-size: 38px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.timer-caption {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.window-prompt {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: -0.035em;
}

.window-start {
  display: inline-flex;
  gap: 9px;
  margin-top: 20px;
  padding: 10px 17px;
  border: 0;
  border-radius: 99px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
}

.statement-band {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 3fr) 1fr;
  gap: 30px;
  align-items: center;
  min-height: 170px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.statement-index,
.statement-band p {
  margin: 0;
}

.statement-index {
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.statement-band p {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 47px);
  letter-spacing: -0.06em;
  line-height: 1;
}

.statement-rule {
  justify-self: end;
  width: 100%;
  max-width: 92px;
  height: 1px;
  background: var(--ink);
}

.content-section {
  padding: 146px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(130px, 0.55fr) minmax(0, 1.45fr);
  gap: 44px;
}

.section-kicker {
  align-self: start;
  margin-top: 13px;
}

.section-heading h2,
.support-banner h2,
.contact-card h2,
.support-intro h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(44px, 5.3vw, 78px);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.section-lede {
  max-width: 480px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
  gap: clamp(48px, 10vw, 155px);
  align-items: start;
  margin-top: 90px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.product-copy {
  padding-top: 15px;
}

.app-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.app-icon {
  position: relative;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 19px;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 7px 18px rgba(25, 42, 42, 0.17);
}

.app-icon::before,
.app-icon::after,
.app-icon i {
  position: absolute;
  border: 1px solid rgba(215, 242, 106, 0.44);
  border-radius: 50%;
  content: "";
}

.app-icon::before {
  top: -16px;
  right: -21px;
  width: 55px;
  height: 35px;
}

.app-icon::after {
  bottom: -17px;
  left: -18px;
  width: 54px;
  height: 30px;
}

.app-icon i {
  top: 9px;
  right: 10px;
  width: 6px;
  height: 6px;
  border: 0;
  background: var(--coral);
}

.app-status {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-heading h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.product-tagline {
  margin: 47px 0 0;
  font-family: var(--display);
  font-size: clamp(27px, 3.2vw, 42px);
  letter-spacing: -0.065em;
  line-height: 0.99;
}

.product-description {
  max-width: 400px;
  margin: 22px 0 29px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.inline-link-dark {
  color: var(--ink);
}

.feature-panel {
  padding: 12px 0 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 17px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.feature-row:first-child {
  border-top: 1px solid var(--line);
}

.feature-number {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-row h4 {
  margin: 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.feature-row p {
  max-width: 340px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.feature-panel-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 27px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.note-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-deep);
}

.principles-section {
  margin-right: calc((100vw - min(100vw - 48px, var(--max-width))) / -2);
  margin-left: calc((100vw - min(100vw - 48px, var(--max-width))) / -2);
  padding-right: max(24px, calc((100vw - var(--max-width)) / 2));
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2));
  background: var(--ink);
  color: var(--white);
}

.section-heading-light .section-kicker,
.section-heading-light .section-lede {
  color: rgba(251, 250, 246, 0.55);
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 90px;
  background: rgba(251, 250, 246, 0.18);
}

.principle-card {
  position: relative;
  min-height: 290px;
  padding: 28px 28px 33px;
  background: var(--ink);
}

.principle-card-accent {
  background: #213837;
}

.principle-index {
  display: block;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.principle-card h3 {
  margin: 73px 0 0;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.principle-card p {
  max-width: 240px;
  margin: 14px 0 0;
  color: rgba(251, 250, 246, 0.62);
  font-size: 13px;
  line-height: 1.6;
}

.principle-line {
  position: absolute;
  right: 28px;
  bottom: 33px;
  left: 28px;
  height: 1px;
  background: rgba(251, 250, 246, 0.18);
}

.support-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 60px;
  align-items: end;
  min-height: 390px;
  padding: 90px 0 110px;
}

.support-banner .section-kicker {
  margin-bottom: 25px;
}

.support-banner h2 {
  max-width: 550px;
}

.support-banner-side {
  max-width: 310px;
}

.support-banner-side p {
  margin: 0 0 26px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.button-light {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-light:hover {
  border-color: var(--ink);
  background: var(--lime);
  transform: translateY(-3px);
}

.site-footer {
  padding: 30px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  font-size: 18px;
}

.brand-footer .brand-copy strong {
  font-size: 18px;
}

.brand-footer .brand-copy small {
  font-size: 8px;
}

.footer-note {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.04em;
}

.footer-bottom {
  margin-top: 58px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  transition: color 160ms ease;
}

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

/* Utility pages */
.utility-main {
  padding: 84px 0 145px;
}

.utility-hero {
  max-width: 800px;
  padding: 50px 0 118px;
}

.utility-hero h1 {
  font-size: clamp(64px, 9vw, 126px);
}

.utility-lede {
  max-width: 520px;
  margin: 34px 0 32px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
}

.support-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 9vw, 130px);
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.support-intro h2 {
  max-width: 380px;
  font-size: clamp(37px, 4vw, 55px);
}

.support-intro > p:last-child {
  max-width: 330px;
  margin: 23px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.support-checks {
  border-top: 1px solid var(--line);
}

.check-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.check-number {
  color: var(--coral);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.check-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.check-card p {
  max-width: 410px;
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.6;
}

.contact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.65fr);
  gap: 50px;
  min-height: 300px;
  margin-top: 140px;
  padding: 55px 55px 50px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--mint);
}

.contact-orb {
  position: absolute;
  right: -60px;
  bottom: -105px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(25, 42, 42, 0.22);
  border-radius: 50%;
}

.contact-orb::before,
.contact-orb::after {
  position: absolute;
  border: 1px solid rgba(25, 42, 42, 0.22);
  border-radius: 50%;
  content: "";
}

.contact-orb::before {
  inset: 31px;
}

.contact-orb::after {
  inset: 64px;
}

.contact-copy,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-card .section-kicker {
  color: var(--ink-soft);
}

.contact-card h2 {
  max-width: 500px;
  font-size: clamp(40px, 4.4vw, 63px);
}

.contact-copy > p:last-child {
  max-width: 380px;
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.contact-details {
  align-self: end;
  display: grid;
  gap: 9px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.contact-email {
  width: fit-content;
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(19px, 2.4vw, 31px);
  font-weight: 400;
  letter-spacing: -0.05em;
}

.legal-hero {
  padding-bottom: 93px;
}

.last-updated {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-document {
  display: grid;
  grid-template-columns: minmax(190px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(48px, 10vw, 145px);
  padding-top: 31px;
  border-top: 1px solid var(--line);
}

.legal-summary {
  align-self: start;
  padding: 22px;
  border-radius: 17px;
  background: var(--mint);
}

.summary-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--lime);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.legal-summary p {
  margin: 35px 0 10px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary strong {
  display: block;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.legal-copy {
  max-width: 700px;
}

.legal-copy section {
  padding: 0 0 39px;
}

.legal-copy section + section {
  padding-top: 39px;
  border-top: 1px solid var(--line);
}

.legal-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 1;
}

.legal-copy p {
  margin: 15px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
}

.legal-copy a {
  border-bottom: 1px solid var(--ink-soft);
  color: var(--ink);
}

.legal-contact {
  padding-bottom: 0 !important;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 730px;
  }

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

  .product-layout,
  .support-content,
  .legal-document {
    grid-template-columns: 1fr;
  }

  .product-layout {
    gap: 70px;
  }

  .support-intro > p:last-child {
    max-width: 470px;
  }

  .legal-summary {
    max-width: 390px;
  }
}

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

  .site-header {
    min-height: 78px;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 250, 246, 0.97);
    box-shadow: 0 20px 38px rgba(25, 42, 42, 0.12);
  }

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

  .site-nav > a {
    padding: 12px 7px;
  }

  .nav-cta {
    justify-content: space-between;
    margin-top: 4px;
  }

  .hero {
    gap: 55px;
    padding: 62px 0 67px;
  }

  .hero h1,
  .utility-hero h1 {
    font-size: clamp(54px, 16vw, 84px);
  }

  .hero-description {
    margin-top: 27px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 29px;
  }

  .hero-facts {
    gap: 11px 15px;
    margin-top: 42px;
    line-height: 1.35;
  }

  .hero-visual {
    min-height: 470px;
    border-radius: 24px;
  }

  .visual-sun {
    width: 118px;
    height: 118px;
  }

  .visual-label-top {
    top: 22px;
    left: 22px;
  }

  .visual-label-bottom {
    right: 22px;
    bottom: 22px;
  }

  .app-window {
    width: 88%;
  }

  .window-body {
    padding: 20px 18px 25px;
  }

  .timer-ring {
    width: 146px;
    height: 146px;
  }

  .timer-ring::before {
    width: 128px;
    height: 128px;
  }

  .timer-time {
    font-size: 31px;
  }

  .statement-band {
    grid-template-columns: 1fr auto;
    gap: 17px;
    min-height: 139px;
  }

  .statement-band p {
    grid-column: 1 / -1;
    grid-row: 1;
    padding-top: 28px;
  }

  .statement-index {
    grid-row: 2;
    padding-bottom: 28px;
  }

  .statement-rule {
    grid-row: 2;
    margin-bottom: 28px;
  }

  .content-section {
    padding: 91px 0;
  }

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

  .section-kicker {
    margin: 0;
  }

  .section-heading h2 {
    font-size: clamp(44px, 13vw, 68px);
  }

  .product-layout {
    gap: 58px;
    margin-top: 64px;
    padding-top: 26px;
  }

  .product-tagline {
    margin-top: 38px;
  }

  .feature-row {
    grid-template-columns: 37px 1fr;
    gap: 12px;
  }

  .principles-section {
    margin-right: calc((100vw - min(100vw - 36px, var(--max-width))) / -2);
    margin-left: calc((100vw - min(100vw - 36px, var(--max-width))) / -2);
    padding-right: 18px;
    padding-left: 18px;
  }

  .principles-grid {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .principle-card {
    min-height: 225px;
  }

  .principle-card h3 {
    margin-top: 48px;
  }

  .support-banner {
    grid-template-columns: 1fr;
    gap: 44px;
    min-height: 0;
    padding: 85px 0 94px;
  }

  .support-banner h2 {
    font-size: clamp(47px, 13vw, 68px);
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom {
    gap: 23px;
    margin-top: 38px;
  }

  .footer-links {
    gap: 12px 18px;
  }

  .utility-main {
    padding: 50px 0 90px;
  }

  .utility-hero {
    padding: 33px 0 84px;
  }

  .utility-lede {
    margin-top: 27px;
    font-size: 15px;
  }

  .support-content {
    gap: 54px;
  }

  .support-intro h2 {
    font-size: clamp(40px, 11vw, 58px);
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 86px;
    padding: 35px 26px 31px;
    border-radius: 22px;
  }

  .contact-card h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .contact-details {
    align-self: start;
  }

  .contact-orb {
    right: -105px;
    bottom: -116px;
    width: 260px;
    height: 260px;
  }

  .legal-hero {
    padding-bottom: 76px;
  }

  .legal-document {
    gap: 49px;
  }

  .legal-summary {
    max-width: none;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
