:root {
  color-scheme: light;
  --canvas: #f4f0e7;
  --surface: #fffdf8;
  --surface-soft: #ebe7dd;
  --ink: #152a26;
  --ink-soft: #596b66;
  --green: #123c35;
  --green-light: #dfece6;
  --green-mid: #2e6b5e;
  --gold: #d9a94f;
  --gold-light: #f4e5bd;
  --line: #d8d8cf;
  --error: #a33c35;
  --error-soft: #fff0ec;
  --success: #216c56;
  --success-soft: #e6f3ed;
  --shadow: 0 22px 70px rgba(21, 42, 38, 0.1);
  --shadow-small: 0 10px 30px rgba(21, 42, 38, 0.07);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 13px;
  --content: 1180px;
  --font-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

button {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0.65em;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 900px;
  font-size: clamp(2.9rem, 6.4vw, 6rem);
}

h2 {
  font-size: clamp(2.15rem, 4.6vw, 4.15rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  letter-spacing: -0.02em;
}

p {
  margin-bottom: 1em;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  background: var(--surface);
  color: var(--green);
  font-weight: 750;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(244, 240, 231, 0.93);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(21, 42, 38, 0.1);
  box-shadow: 0 8px 30px rgba(21, 42, 38, 0.06);
}

.header-inner {
  display: flex;
  width: min(var(--content), calc(100% - 3rem));
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  text-decoration: none;
  gap: 0.7rem;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.65rem;
}

.site-nav > a:not(.button) {
  position: relative;
  color: #36504a;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--green);
  content: "";
  transition: transform 160ms ease, opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span {
  opacity: 0;
}

.menu-button[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.76rem 1.3rem;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-weight: 760;
  line-height: 1.2;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: #1d554a;
  background: #1d554a;
  transform: translateY(-1px);
}

.button:focus-visible,
.text-link:focus-visible,
.menu-button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.captcha-refresh:focus-visible {
  outline: 3px solid rgba(217, 169, 79, 0.55);
  outline-offset: 3px;
}

.button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.button-small {
  min-height: 40px;
  padding: 0.58rem 1rem;
  font-size: 0.84rem;
}

.button-light {
  border-color: var(--gold);
  background: var(--gold);
  color: #1e332e;
}

.button-light:hover {
  border-color: #e6ba67;
  background: #e6ba67;
}

.text-link {
  display: inline-flex;
  align-items: center;
  color: var(--green);
  font-weight: 760;
  text-decoration: none;
  gap: 0.45rem;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(3px);
}

.eyebrow {
  margin-bottom: 1rem;
  color: #89631d;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: clip;
}

.hero::after {
  position: absolute;
  z-index: -1;
  top: -140px;
  right: -160px;
  width: 650px;
  height: 650px;
  background: url("../svg/flow-lines.svg") center / contain no-repeat;
  content: "";
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  width: min(var(--content), calc(100% - 3rem));
  min-height: 735px;
  align-items: center;
  margin: 0 auto;
  padding: 5.5rem 0 7rem;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.74fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy h1 {
  margin-bottom: 1.5rem;
}

.hero-copy h1 em {
  color: var(--green-mid);
  font-family: var(--font-serif);
  font-weight: 500;
}

.hero-lead {
  max-width: 750px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.07rem, 1.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 2.2rem;
  gap: 1.4rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  margin: 2.2rem 0 0;
  padding: 0;
  color: #536560;
  font-size: 0.78rem;
  font-weight: 700;
  list-style: none;
  gap: 0.55rem 1.2rem;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-facts li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.plan-card {
  position: relative;
  padding: 1.1rem;
  border: 1px solid rgba(18, 60, 53, 0.14);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow);
}

.plan-card::before {
  position: absolute;
  z-index: -1;
  right: -24px;
  bottom: -24px;
  width: 86%;
  height: 88%;
  border-radius: inherit;
  background: var(--green);
  content: "";
}

.plan-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.45rem 1rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.plan-head > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a997a;
  box-shadow: 0 0 0 5px #dff1e9;
}

.status-label {
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.68rem;
}

.checkin-card {
  display: grid;
  align-items: center;
  padding: 1.05rem;
  border-radius: 17px;
  background: var(--green);
  color: #fff;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
}

.checkin-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gold);
  font-size: 1.15rem;
  font-weight: 800;
}

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

.checkin-card small {
  margin-top: 0.15rem;
  color: #b9d0ca;
}

.plan-timeline {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
}

.plan-timeline li {
  display: grid;
  position: relative;
  min-height: 69px;
  align-items: center;
  padding: 0.7rem 0.6rem;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 30px 1fr auto;
  gap: 0.72rem;
}

.plan-timeline li:last-child {
  border-bottom: 0;
}

.timeline-number {
  display: grid;
  position: relative;
  z-index: 1;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 850;
}

.plan-timeline li:not(:last-child) .timeline-number::after {
  position: absolute;
  z-index: -1;
  top: 28px;
  left: 13px;
  width: 1px;
  height: 41px;
  background: var(--line);
  content: "";
}

.plan-timeline strong,
.plan-timeline small {
  display: block;
}

.plan-timeline strong {
  font-size: 0.84rem;
}

.plan-timeline small,
.plan-timeline time {
  color: var(--ink-soft);
  font-size: 0.69rem;
}

.trust-strip {
  background: var(--green);
  color: #d5e4de;
}

.trust-strip ul {
  display: grid;
  width: min(var(--content), calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.15rem 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip li {
  padding: 0 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.03em;
  text-align: center;
}

.trust-strip li:last-child {
  border-right: 0;
}

.section {
  width: min(var(--content), calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading p:last-child {
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.process-card {
  min-height: 330px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.66);
}

.process-index {
  color: #9b7127;
  font-family: var(--font-serif);
  font-size: 1.2rem;
}

.process-card h3 {
  margin-top: 5rem;
}

.process-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.plain-note {
  display: flex;
  max-width: 930px;
  align-items: flex-start;
  margin: 1.2rem 0 0;
  padding: 1rem 1.15rem;
  border-left: 3px solid var(--gold);
  background: var(--gold-light);
  color: #664d20;
  font-size: 0.82rem;
  gap: 0.75rem;
}

.plain-note strong {
  white-space: nowrap;
}

.editor-section {
  width: auto;
  padding-right: max(1.5rem, calc((100vw - var(--content)) / 2));
  padding-left: max(1.5rem, calc((100vw - var(--content)) / 2));
  background: #e7ede8;
}

.editor-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(3rem, 7vw, 7rem);
}

.editor-copy {
  position: sticky;
  top: 120px;
}

.editor-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
}

.editor-copy ul {
  display: grid;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.65rem;
}

.editor-copy li {
  display: flex;
  align-items: flex-start;
  font-size: 0.87rem;
  font-weight: 700;
  gap: 0.65rem;
}

.editor-copy li::before {
  margin-top: 0.34rem;
  color: var(--success);
  content: "✓";
}

.editor-demo {
  overflow: hidden;
  border: 1px solid rgba(18, 60, 53, 0.15);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-small);
}

.editor-demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid var(--line);
}

.editor-demo-head strong {
  font-size: 0.9rem;
}

.editor-demo-head span {
  color: var(--success);
  font-size: 0.71rem;
  font-weight: 800;
}

.editor-rows {
  padding: 0.5rem 1.35rem 1.25rem;
}

.editor-row {
  display: grid;
  align-items: center;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 35px minmax(0, 1fr) auto;
  gap: 0.85rem;
}

.editor-row:last-child {
  border-bottom: 0;
}

.editor-row > span:first-child {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 850;
}

.editor-row strong,
.editor-row small {
  display: block;
}

.editor-row strong {
  font-size: 0.87rem;
}

.editor-row small {
  margin-top: 0.12rem;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.editor-value {
  padding: 0.42rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f5ee;
  font-size: 0.72rem;
  font-weight: 750;
}

.action-list {
  display: grid;
  padding: 0 1.35rem 1.35rem;
  gap: 0.55rem;
}

.action-card {
  display: grid;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  grid-template-columns: auto 1fr auto;
  gap: 0.7rem;
}

.action-type {
  padding: 0.26rem 0.45rem;
  border-radius: 6px;
  background: var(--gold-light);
  color: #6c4d15;
  font-size: 0.61rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.action-card strong {
  font-size: 0.78rem;
}

.action-card small,
.action-card time {
  color: var(--ink-soft);
  font-size: 0.67rem;
}

.editor-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.35rem;
  border-top: 1px solid var(--line);
  background: #f7f5ef;
}

.editor-footer span {
  color: var(--ink-soft);
  font-size: 0.68rem;
}

.editor-footer b {
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-size: 0.68rem;
}

.release-grid,
.hosting-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.release-card {
  min-height: 350px;
  padding: clamp(1.7rem, 4vw, 2.6rem);
  border-radius: var(--radius-lg);
}

.release-card:first-child {
  background: var(--green);
  color: #fff;
}

.release-card:first-child p,
.release-card:first-child li {
  color: #c5d8d2;
}

.release-card:last-child {
  border: 1px solid var(--line);
  background: var(--surface);
}

.release-card p,
.release-card li {
  color: var(--ink-soft);
}

.release-card ul,
.hosting-card ul,
.boundary-list {
  display: grid;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.7rem;
}

.release-card li,
.hosting-card li,
.boundary-list li {
  display: flex;
  align-items: flex-start;
  font-size: 0.87rem;
  gap: 0.65rem;
}

.release-card li::before,
.hosting-card li::before,
.boundary-list li::before {
  color: var(--gold);
  content: "—";
  font-weight: 900;
}

.release-card:first-child .badge {
  background: rgba(255, 255, 255, 0.1);
  color: #f5d899;
}

.badge {
  display: inline-flex;
  padding: 0.3rem 0.62rem;
  border-radius: 999px;
  background: var(--gold-light);
  color: #6f5017;
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.security-split {
  display: grid;
  align-items: start;
  margin-top: 1rem;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ece8dd;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2.5rem, 7vw, 7rem);
}

.security-split h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.boundary-list {
  margin-top: 0;
}

.boundary-list li {
  padding-bottom: 0.72rem;
  border-bottom: 1px solid rgba(21, 42, 38, 0.12);
}

.boundary-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hosting-card {
  position: relative;
  padding: clamp(1.8rem, 4vw, 2.7rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.hosting-card.featured {
  border-color: #c9a250;
  box-shadow: var(--shadow-small);
}

.hosting-card h3 {
  margin-top: 2.2rem;
}

.hosting-card p,
.hosting-card li {
  color: var(--ink-soft);
}

.hosting-foot {
  margin: 1.25rem 0 0;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  background: var(--gold-light);
  color: #60491f;
  font-size: 0.8rem;
}

.contact-wrap {
  width: min(var(--content), calc(100% - 3rem));
  margin: 2rem auto 6rem;
  padding: clamp(2rem, 6vw, 5rem);
  border-radius: var(--radius-xl);
  background: var(--green);
  color: #fff;
}

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 0.76fr 1.24fr;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  font-size: clamp(2.3rem, 4.6vw, 4.1rem);
}

.contact-copy > p:last-of-type {
  color: #bfd2cc;
}

.contact-promise {
  display: grid;
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  gap: 0.55rem;
}

.contact-promise li {
  color: #d7e5e0;
  font-size: 0.82rem;
}

.contact-promise li::before {
  margin-right: 0.55rem;
  color: var(--gold);
  content: "✓";
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.form-field {
  display: grid;
  gap: 0.42rem;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field label,
.captcha-label {
  color: #f4f7f5;
  font-size: 0.79rem;
  font-weight: 760;
}

.optional {
  color: #a9c1ba;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  min-height: 50px;
  padding: 0.75rem 0.86rem;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 126px;
  resize: vertical;
}

input[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: #e48d83;
  box-shadow: 0 0 0 2px rgba(228, 141, 131, 0.24);
}

.field-error {
  min-height: 1em;
  margin: 0;
  color: #ffbcb3;
  font-size: 0.72rem;
}

.captcha-row {
  display: grid;
  align-items: end;
  grid-template-columns: 178px minmax(120px, 1fr);
  gap: 0.8rem;
}

.captcha-box {
  overflow: hidden;
  position: relative;
  height: 62px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  background: #f7f2e8;
}

.captcha-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.captcha-refresh {
  position: absolute;
  right: 4px;
  bottom: 4px;
  padding: 0.28rem 0.48rem;
  border: 0;
  border-radius: 6px;
  background: rgba(18, 60, 53, 0.92);
  color: #fff;
  cursor: pointer;
  font-size: 0.67rem;
  font-weight: 750;
}

.privacy-check {
  display: grid;
  align-items: start;
  color: #c4d6d0;
  cursor: pointer;
  font-size: 0.73rem;
  grid-template-columns: 18px 1fr;
  gap: 0.7rem;
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  margin: 0.12rem 0 0;
  accent-color: var(--gold);
}

.privacy-check a {
  text-underline-offset: 2px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-actions {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
  gap: 1rem;
}

.form-actions small {
  max-width: 300px;
  color: #a9c1ba;
  font-size: 0.67rem;
}

.form-status {
  display: none;
  margin: 0;
  padding: 0.82rem 1rem;
  border-radius: 9px;
  font-size: 0.8rem;
}

.form-status:not(:empty) {
  display: block;
}

.form-status.success {
  background: rgba(101, 195, 157, 0.13);
  color: #b6efd8;
}

.form-status.error {
  background: rgba(231, 126, 114, 0.13);
  color: #ffc2ba;
}

.site-footer {
  width: min(var(--content), calc(100% - 3rem));
  margin: 0 auto;
  padding: 2.7rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 2rem;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1.2rem;
}

.footer-main nav a {
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-main nav a:hover {
  color: var(--green);
}

.footer-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 1.8rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  gap: 2rem;
}

.legal-page {
  width: min(800px, calc(100% - 3rem));
  min-height: calc(100vh - 220px);
  margin: 0 auto;
  padding: 6rem 0;
}

.legal-page h1 {
  font-size: clamp(2.5rem, 6vw, 4.4rem);
}

.legal-page h2 {
  margin-top: 2.2rem;
  font-size: 1.4rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
}

.legal-warning {
  padding: 1rem 1.2rem;
  border-left: 3px solid var(--error);
  background: var(--error-soft);
  color: #75332e !important;
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: fixed;
    z-index: 99;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    align-content: start;
    padding: 2rem 1.5rem;
    background: var(--canvas);
  }

  .site-nav.is-open {
    display: grid;
    grid-auto-rows: min-content;
    gap: 0.4rem;
  }

  .site-nav > a:not(.button) {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .site-nav .button {
    margin-top: 1.2rem;
  }

  .menu-button {
    display: block;
  }

  .hero-inner {
    min-height: auto;
    padding: 5rem 0 7rem;
    grid-template-columns: 1fr;
  }

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

  .plan-card {
    max-width: 620px;
  }

  .trust-strip ul {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip li:nth-child(2) {
    border-right: 0;
  }

  .trust-strip li {
    padding: 0.7rem 1rem;
  }

  .editor-layout {
    grid-template-columns: 1fr;
  }

  .editor-copy,
  .contact-copy {
    position: static;
  }

  .editor-copy {
    max-width: 740px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner,
  .hero-inner,
  .section,
  .trust-strip ul,
  .contact-wrap,
  .site-footer {
    width: min(var(--content), calc(100% - 2rem));
  }

  .hero-inner {
    padding-top: 3.8rem;
  }

  .hero::after {
    right: -320px;
    opacity: 0.35;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-grid,
  .release-grid,
  .hosting-grid,
  .security-split {
    grid-template-columns: 1fr;
  }

  .process-card {
    min-height: auto;
  }

  .process-card h3 {
    margin-top: 2.8rem;
  }

  .security-split {
    padding: 1.6rem;
  }

  .editor-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contact-wrap {
    margin-bottom: 2rem;
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }

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

  .captcha-box {
    width: 178px;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .footer-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2.7rem;
  }

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

  .site-nav {
    top: 70px;
  }

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

  .plan-card {
    padding: 0.8rem;
  }

  .plan-card::before {
    right: -9px;
    bottom: -12px;
  }

  .plan-timeline li {
    grid-template-columns: 30px 1fr;
  }

  .plan-timeline time {
    display: none;
  }

  .trust-strip ul {
    grid-template-columns: 1fr;
  }

  .trust-strip li {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .trust-strip li:last-child {
    border-bottom: 0;
  }

  .editor-row {
    grid-template-columns: 35px 1fr;
  }

  .editor-value {
    grid-column: 2;
    justify-self: start;
  }

  .action-card {
    grid-template-columns: auto 1fr;
  }

  .action-card time {
    display: none;
  }

  .editor-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

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

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

@media print {
  .site-header,
  .hero-actions,
  .contact-wrap,
  .site-footer,
  .menu-button {
    display: none !important;
  }

  body {
    background: #fff;
  }

  .hero-inner,
  .section {
    width: 100%;
    min-height: 0;
    padding: 2rem 0;
  }

  .plan-card,
  .process-card,
  .release-card,
  .hosting-card,
  .editor-demo,
  .security-split {
    break-inside: avoid;
    box-shadow: none;
  }
}
