:root {
  --navy: #0b1f3a;
  --navy-2: #12345a;
  --white: #ffffff;
  --grey: #f4f6f8;
  --grey-2: #e5eaf0;
  --charcoal: #1f2933;
  --muted: #64748b;
  --gold: #f59e0b;
  --orange: #ff7a00;
  --orange-ink: #b84d00;
  --success: #0f766e;
  --error: #b42318;
  --shadow: 0 28px 64px rgba(11, 31, 58, 0.16), 0 4px 14px rgba(11, 31, 58, 0.08);
  --shadow-soft: 0 16px 36px rgba(15, 23, 42, 0.07);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

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

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

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

:focus-visible {
  outline: 3px solid var(--orange-ink);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-150%);
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
}

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

.container {
  width: calc(100% - 36px);
  max-width: var(--max);
  margin: 0 auto;
}

.section {
  padding: 62px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(229, 234, 240, 0.8);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 2px;
  color: var(--navy);
}

.brand-mark {
  width: 35.5px;
  height: 40px;
  flex: none;
}

.brand-wordmark {
  --studio-text: #334155;

  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--studio-text);
  font-size: 1.34rem;
  font-weight: 650;
  line-height: 1;
  transform: translateY(4px);
  white-space: nowrap;
}

.brand-wordmark strong {
  color: var(--navy);
  font-weight: 850;
}

.brand-accent-i {
  position: relative;
  display: inline-block;
}

.brand-accent-i::after {
  position: absolute;
  top: 0.1em;
  left: 0.052em;
  width: 0.184em;
  height: 0.16em;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  color: #334155;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.14);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 38px;
  background:
    linear-gradient(135deg, rgba(244, 246, 248, 0.92), rgba(255, 255, 255, 0.88)),
    url("f0fca953-d9d4-414a-b3c3-515ef2e8b156.png") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  inset: auto -12vw -22vw auto;
  width: 42vw;
  min-width: 360px;
  aspect-ratio: 1;
  border: 1px solid rgba(245, 158, 11, 0.2);
  content: "";
  transform: rotate(18deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 38px;
  align-items: center;
}

.hero-grid > *,
.two-column > *,
.split-band > *,
.contact-grid > *,
.faq-layout > * {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange-ink);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.05;
}

h1 {
  max-width: 700px;
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5vw, 3.75rem);
  font-weight: 850;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.23rem;
}

.hero-subhead,
.section-copy p,
.section-heading p,
.large-copy {
  color: #475569;
  font-size: clamp(1.03rem, 2vw, 1.22rem);
}

.hero-subhead {
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-title-finish {
  display: inline-block;
}

.hero-title-finish::after {
  display: block;
  width: 62px;
  height: 5px;
  margin-top: 14px;
  border-radius: 3px;
  background: var(--gold);
  content: "";
}

.hero-actions,
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  margin-top: 20px;
  color: #475569;
  font-weight: 800;
}

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

.hero-proof span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 13px 21px;
  font-weight: 900;
  line-height: 1.1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: #ff8a00;
  color: var(--navy);
  box-shadow: 0 14px 30px rgba(255, 122, 0, 0.2);
}

.button-primary:hover {
  background: var(--gold);
}

.button-secondary {
  border-color: rgba(11, 31, 58, 0.18);
  background: var(--white);
  color: var(--navy);
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.full-button {
  width: 100%;
}

.hero-visual {
  position: relative;
}

.mockup-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: #0a1220;
  box-shadow: var(--shadow);
}

.mockup-frame img {
  width: 100%;
}

.preview-badge {
  position: absolute;
  right: 12px;
  bottom: -22px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 7px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 16px;
  box-shadow: 0 18px 42px rgba(11, 31, 58, 0.28);
}

.preview-badge span {
  color: #cbd5e1;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.preview-badge strong {
  font-size: 1.08rem;
}

.trust-strip {
  box-shadow: inset 0 2px 0 rgba(245, 158, 11, 0.85);
  background: var(--navy);
  color: var(--white);
}

.trust-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.trust-grid div {
  min-height: 58px;
  display: grid;
  place-items: center;
  background: var(--navy);
  padding: 18px;
  color: #e2e8f0;
  font-weight: 900;
  text-align: center;
}

.two-column,
.split-band,
.contact-grid,
.faq-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.pricing-card,
.process-step,
.site-card,
.comparison-card,
.contact-form,
details {
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.pricing-card {
  overflow: hidden;
  border-color: rgba(11, 31, 58, 0.16);
  box-shadow: 0 24px 58px rgba(11, 31, 58, 0.12);
}

.pricing-top {
  background: var(--navy);
  color: var(--white);
  padding: 26px;
}

.pricing-top span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-top strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(3rem, 12vw, 5.2rem);
  line-height: 0.92;
}

.pricing-top strong span {
  color: #dbe4ee;
  font-size: 1rem;
  text-transform: none;
}

.pricing-top p {
  margin: 12px 0 0;
  color: #cbd5e1;
}

.included-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
  margin: 0;
  padding: 24px 26px;
  list-style: none;
}

.included-list li,
.comparison-card li {
  position: relative;
  padding-left: 28px;
}

.included-list li::before,
.comparison-card li::before {
  position: absolute;
  left: 0;
  top: 0.08em;
  color: var(--orange-ink);
  content: "✓";
  font-weight: 900;
}

.fine-print {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-card .button {
  border-radius: 0;
}

.why-section {
  background: var(--grey);
}

.split-band {
  border-left: 5px solid var(--gold);
  padding-left: 24px;
}

.large-copy {
  margin: 0;
}

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

.process-grid,
.portfolio-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
}

.process-step,
.site-card,
.comparison-card {
  padding: 22px;
}

.process-step {
  border-width: 2px 0 0;
  border-radius: 0;
  border-color: rgba(11, 31, 58, 0.16);
  box-shadow: none;
  padding: 24px 0 8px;
}

.process-step span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--orange-ink);
  font-size: 0.88rem;
  font-weight: 950;
}

.process-step p,
.site-card p,
.comparison-card li {
  color: #526172;
}

.trades-section {
  background:
    linear-gradient(rgba(11, 31, 58, 0.92), rgba(11, 31, 58, 0.92)),
    url("603e7630-0adf-46bc-bb57-f46d07d6937c.png") center / cover no-repeat;
  color: var(--white);
}

.trades-section h2 {
  color: var(--white);
}

.trades-section .section-heading p:not(.eyebrow) {
  color: #cbd5e1;
}

.trades-section .eyebrow,
.referral-panel .eyebrow,
.final-cta .eyebrow,
.terms-final-cta .eyebrow {
  color: #ff9f1a;
}

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

.trade-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
  font-weight: 900;
  text-align: center;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.trade-grid span:hover {
  border-color: rgba(245, 158, 11, 0.68);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.portfolio-section {
  background: var(--grey);
}

.site-card {
  overflow: hidden;
  padding: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-card:hover {
  border-color: #d4dbe4;
  box-shadow: 0 22px 46px rgba(15, 23, 42, 0.11);
  transform: translateY(-3px);
}

.portfolio-shot {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border-bottom: 1px solid var(--grey-2);
  background: #eef1f4;
}

.portfolio-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.site-card:hover .portfolio-shot img {
  transform: scale(1.012);
}

.site-card-copy {
  padding: 20px 22px 24px;
}

.site-card .project-label {
  margin: 0 0 6px;
  color: var(--orange-ink);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.site-card-copy h3 {
  margin-bottom: 8px;
  font-size: 1.22rem;
  line-height: 1.25;
}

.site-card-copy > p:last-child {
  margin: 0;
}

.comparison-grid {
  align-items: stretch;
}

.comparison-card h3 {
  margin-bottom: 22px;
}

.comparison-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card.faircrest {
  border-color: rgba(245, 158, 11, 0.5);
  background: #fffbeb;
}

.comparison-card.typical li::before {
  color: #94a3b8;
  content: "–";
}

.referral-section {
  padding-top: 0;
}

.referral-panel {
  display: grid;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(18, 52, 90, 0.92)),
    url("dec0f6e4-0cbb-417f-8fc0-696ca8196ed9.png") center / cover no-repeat;
  color: var(--white);
  padding: clamp(26px, 5vw, 46px);
}

.referral-panel h2,
.final-cta h2 {
  color: var(--white);
}

.referral-panel p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #dbe4ee;
}

.faq-layout {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  padding: 0;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  padding: 17px 20px;
  color: var(--navy);
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: none;
  color: var(--orange-ink);
  content: "+";
  font-size: 1.3rem;
  line-height: 1;
}

details[open] summary::after {
  content: "\2212";
}

details p {
  margin: 0;
  padding: 0 20px 17px;
  color: #526172;
}

.final-cta-section {
  background: var(--navy);
}

.final-cta {
  max-width: 850px;
  text-align: center;
}

.final-cta .button {
  margin-top: 8px;
}

.contact-section {
  background: var(--grey);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 28px);
}

.form-status {
  display: none;
  border-radius: 6px;
  padding: 13px 15px;
  font-weight: 800;
}

.form-status.success {
  display: block;
  background: #ecfdf5;
  color: var(--success);
}

.form-status.error {
  display: block;
  background: #fef3f2;
  color: var(--error);
}

.form-row {
  display: grid;
  gap: 7px;
}

.form-row.split {
  gap: 18px;
}

label,
legend {
  color: var(--navy);
  font-size: 0.94rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #7c8797;
  border-radius: 7px;
  background: var(--white);
  color: var(--charcoal);
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"],
.radio-group.invalid {
  border-color: var(--error);
}

.field-error {
  min-height: 1.25em;
  margin: 0;
  color: var(--error);
  font-size: 0.88rem;
  font-weight: 700;
}

.radio-group {
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0;
}

.radio-group label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin-right: 18px;
  color: #334155;
  font-weight: 800;
}

.radio-group input {
  width: auto;
}

.site-footer {
  padding: 30px 0 82px;
  background: #07172b;
  color: #cbd5e1;
}

.footer-inner {
  display: grid;
  align-items: center;
  gap: 16px;
}

.footer-inner p {
  margin: 0;
}

.footer-brand {
  width: fit-content;
}

.footer-brand .brand-mark {
  width: 37.2px;
  height: 42px;
  border-radius: 7px;
  background: var(--white);
  padding: 3px;
}

.footer-brand .brand-wordmark {
  --studio-text: #cbd5e1;
}

.footer-brand .brand-wordmark strong {
  color: var(--white);
}

.footer-link {
  width: fit-content;
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.sticky-mobile-cta {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 15;
  display: grid;
  min-height: 52px;
  place-items: center;
  border-radius: 8px;
  background: #ff8a00;
  color: var(--navy);
  box-shadow: 0 16px 36px rgba(11, 31, 58, 0.28);
  font-weight: 950;
}

.terms-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 38px;
  background:
    linear-gradient(135deg, rgba(244, 246, 248, 0.95), rgba(255, 255, 255, 0.9)),
    url("f0fca953-d9d4-414a-b3c3-515ef2e8b156.png") center / cover no-repeat;
}

.terms-hero-grid {
  display: grid;
  gap: 24px;
  align-items: end;
}

.terms-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.terms-notice,
.policy-card,
.plan-card,
.terms-final-cta,
.policy-sidebar {
  overflow: hidden;
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.terms-notice {
  padding: 22px;
}

.terms-notice strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.05rem;
}

.terms-notice p {
  margin: 0;
  color: #526172;
}

.terms-section {
  background: var(--grey);
}

.policy-layout {
  display: grid;
  gap: 22px;
  align-items: start;
}

.policy-sidebar {
  display: none;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-card,
.plan-card {
  padding: clamp(22px, 4vw, 34px);
}

.policy-card h2,
.plan-card h2,
.terms-final-cta h2 {
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
}

.policy-card p:last-child,
.plan-card p:last-child {
  margin-bottom: 0;
}

.plan-card {
  overflow: hidden;
  padding: 0;
}

.plan-card-top {
  background: var(--navy);
  color: var(--white);
  padding: clamp(24px, 4vw, 34px);
}

.plan-card-top h2 {
  color: var(--white);
}

.plan-card-top p {
  margin-bottom: 0;
  color: #dbe4ee;
}

.plan-grid {
  display: grid;
  gap: 10px;
  padding: clamp(22px, 4vw, 30px);
}

.plan-grid span,
.policy-facts span {
  position: relative;
  border-radius: 7px;
  background: var(--grey);
  color: #334155;
  padding: 12px 14px 12px 36px;
  font-weight: 800;
}

.plan-grid span::before,
.policy-facts span::before {
  position: absolute;
  left: 14px;
  color: var(--orange-ink);
  content: "+";
  font-weight: 950;
}

.policy-note,
.rate-note {
  border-left: 4px solid var(--gold);
  background: #fffbeb;
  color: #4b5563;
  padding: 14px 16px;
}

.rate-note {
  color: var(--navy);
  font-weight: 900;
}

.policy-facts {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--grey-2);
  border-radius: var(--radius);
}

.edit-table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  background: var(--white);
}

.edit-table caption {
  padding: 14px 16px;
  color: #526172;
  font-weight: 800;
  text-align: left;
}

.edit-table th,
.edit-table td {
  border-top: 1px solid var(--grey-2);
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
}

.edit-table th {
  position: sticky;
  top: 0;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9rem;
}

.edit-table td:last-child {
  width: 220px;
  color: var(--navy);
  font-weight: 900;
}

.edit-table tbody tr:nth-child(even) {
  background: #f8fafc;
}

.legal-accordion {
  display: grid;
  gap: 10px;
}

.legal-accordion details {
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.06);
}

.legal-accordion summary {
  list-style-position: outside;
}

.plain-list {
  columns: 1;
  margin: 0;
  padding: 0 20px 18px 42px;
  color: #526172;
}

.plain-list li {
  break-inside: avoid;
  margin-bottom: 8px;
}

.terms-final-cta {
  display: grid;
  gap: 20px;
  align-items: center;
  padding: clamp(24px, 5vw, 42px);
  background: var(--navy);
  color: var(--white);
}

.terms-final-cta h2 {
  color: var(--white);
}

.terms-final-cta p:not(.eyebrow) {
  margin-bottom: 0;
  color: #dbe4ee;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-proof {
    display: flex;
  }

  .trust-grid,
  .process-grid,
  .portfolio-grid,
  .comparison-grid,
  .form-row.split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-grid .site-card:last-child:nth-child(odd) {
    width: calc((100% - 16px) / 2);
    grid-column: 1 / -1;
    justify-self: center;
  }

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

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

  .terms-hero-grid,
  .plan-grid,
  .policy-facts,
  .terms-final-cta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plain-list {
    columns: 2;
  }
}

@media (min-width: 900px) {
  .section {
    padding: 76px 0;
  }

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

  .brand {
    gap: 2px;
  }

  .brand-mark {
    width: 39px;
    height: 44px;
  }

  .brand-wordmark {
    gap: 7px;
    font-size: 1.62rem;
  }

  .nav-links {
    display: flex;
  }

  .two-column,
  .split-band,
  .contact-grid,
  .faq-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: 40px;
  }

  .hero-title-line {
    display: block;
  }

  .hero-visual {
    width: 108%;
    justify-self: start;
    transform: translate(-8%, -6px);
  }

  .hero {
    display: grid;
    align-items: center;
    padding-top: 42px;
    padding-bottom: 54px;
  }

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

  .portfolio-grid .site-card:last-child:nth-child(odd) {
    width: auto;
    grid-column: auto;
    justify-self: stretch;
  }

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

  .footer-inner p {
    max-width: 520px;
  }

  .two-column,
  .split-band,
  .contact-grid,
  .faq-layout {
    align-items: start;
  }

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

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

  .referral-panel {
    grid-template-columns: 1fr auto;
  }

  .sticky-mobile-cta {
    display: none;
  }

  .site-footer {
    padding-bottom: 34px;
  }

  .terms-hero {
    padding: 58px 0 52px;
  }

  .terms-hero-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .policy-layout {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .policy-sidebar {
    position: sticky;
    top: 88px;
    display: grid;
    gap: 4px;
    padding: 14px;
  }

  .policy-sidebar a {
    border-radius: 6px;
    color: #334155;
    padding: 10px 12px;
    font-weight: 850;
  }

  .policy-sidebar a:hover {
    background: var(--grey);
    color: var(--navy);
  }

  .terms-final-cta {
    grid-template-columns: 1fr auto;
  }
}

@media (max-width: 420px) {
  .container {
    width: calc(100% - 28px);
  }

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

  .brand {
    gap: 7px;
  }

  .brand-mark {
    width: 33.6px;
    height: 38px;
  }

  .brand-wordmark {
    gap: 5px;
    font-size: 1.2rem;
  }

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

  h1 {
    font-size: 2.18rem;
  }

  .hero-subhead {
    font-size: 1rem;
  }

  .terms-hero h1 {
    font-size: 2rem;
  }

  .policy-card h2,
  .plan-card h2,
  .terms-final-cta h2 {
    font-size: 1.55rem;
  }

  .terms-notice {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
