@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  color-scheme: dark;
  --bg: #06080d;
  --bg-soft: #0b1018;
  --surface: #0b0f16;
  --surface-soft: rgba(255, 255, 255, 0.02);
  --text: #f4f7fb;
  --muted: #9ba3b0;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --accent: #f59e0b;
  --accent-soft: rgba(245, 158, 11, 0.16);
  --max-width: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(180deg, #04070c 0%, #05080d 100%);
}

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

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 920px;
}

.center {
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 6, 10, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 78px;
}

.brand-word {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-word span {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  flex-direction: column;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

.site-nav .nav-cta {
  padding: 0.95rem 1.5rem;
    background: var(--accent);
  color: #081018;
  font-weight: 800;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 78px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 158, 11, 0.14), transparent 18%),
    radial-gradient(circle at center, rgba(101, 49, 7, 0.18), transparent 50%),
    linear-gradient(180deg, #02050b 0%, #04070d 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 77% 70%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 17% 76%, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px);
  background-size: 240px 240px, 260px 260px, 320px 320px, 280px 280px;
  opacity: 0.5;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  top: 7rem;
  left: 50%;
  width: min(72vw, 980px);
  aspect-ratio: 1;
  transform: translateX(-6%);
  border-radius: 50%;
  background:
    radial-gradient(circle at 46% 44%, rgba(255, 211, 132, 0.18), transparent 44%),
    radial-gradient(circle at 40% 34%, rgba(255, 255, 255, 0.16), transparent 58%),
    radial-gradient(circle at 55% 48%, rgba(66, 35, 10, 0.92), rgba(4, 10, 19, 0.98) 74%);
  box-shadow:
    inset -120px -100px 180px rgba(5, 9, 18, 0.78),
    0 0 120px rgba(245, 158, 11, 0.12);
  opacity: 0.88;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 11, 0.84) 0%, rgba(3, 6, 11, 0.22) 28%, rgba(3, 6, 11, 0.16) 72%, rgba(3, 6, 11, 0.84) 100%),
    linear-gradient(180deg, rgba(3, 6, 11, 0.26), rgba(3, 6, 11, 0.55));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 78px);
  padding: 6rem 0 5rem;
}

.hero-copy {
  width: min(900px, 100%);
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.3rem;
  border: 1px solid var(--line);
  background: rgba(10, 15, 24, 0.7);
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 500;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.6);
}

.hero h1 {
  margin: 2rem 0 0;
  font-size: clamp(4.3rem, 8vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: var(--accent);
}

.hero-text {
  max-width: 900px;
  margin: 2rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.12rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 2.25rem;
  border: 1px solid var(--line-strong);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

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

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

.button-secondary {
  background: rgba(0, 0, 0, 0.08);
  color: #ffffff;
}

.button-block {
  width: 100%;
}

.section {
  padding: 7.5rem 0;
  border-bottom: 1px solid var(--line);
  background: #05080d;
}

.section-kicker {
  margin: 0 0 1.4rem;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

.section h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.section-copy {
  max-width: 940px;
  margin: 1.8rem auto 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 4rem;
  border-top: 1px solid var(--line);
  border-left: 1px solid transparent;
}

.feature-item {
  min-height: 210px;
  padding: 2.3rem 2.3rem 2.5rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-item:nth-child(3n) {
  border-right: 0;
}

.feature-item h3,
.audience-card h3,
.security-item h3,
.pricing-card h3,
.faq-item summary {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.feature-item p,
.audience-card p,
.process-item p,
.security-item p,
.quote-copy,
.section-copy.about-copy,
.pricing-description,
.pricing-list,
.faq-item p,
.contact-copy p,
.site-footer p {
  color: var(--muted);
}

.feature-item p,
.audience-card p,
.process-item p,
.security-item p {
  margin: 1.35rem 0 0;
  font-size: 1rem;
  line-height: 1.85;
}

.tool-block {
  text-align: center;
}

.tool-copy {
  margin: 0 0 2rem;
  color: var(--muted);
  font-size: 1rem;
}

.tool-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.1rem;
}

.tool-tags span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 500;
}

.audience-grid,
.security-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.audience-card {
  min-height: 240px;
  padding: 2.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2.5rem;
  margin-top: 4.4rem;
  text-align: center;
}

.process-number {
  display: inline-block;
  margin-bottom: 1.6rem;
  color: var(--accent);
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.process-item h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.process-item p {
  margin-top: 1.3rem;
  font-size: 0.98rem;
  line-height: 1.85;
}

.security-grid {
  margin-top: 4rem;
  border-top: 1px solid transparent;
}

.security-item {
  padding: 2rem 1.2rem;
  text-align: center;
  border-right: 1px solid var(--line);
}

.security-item:last-child {
  border-right: 0;
}

.quote-block {
  text-align: center;
}

.quote-block blockquote {
  margin: 0;
}

.quote-block blockquote p {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.3rem);
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.quote-copy {
  max-width: 1050px;
  margin: 2rem auto 0;
  font-size: 1.18rem;
  line-height: 1.85;
}

.quote-source {
  margin: 2.2rem 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.inline-link,
.footer-email {
  color: #ffffff;
  font-weight: 700;
}

.inline-link {
  display: inline-block;
  margin-top: 1.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 2.1rem 2rem 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.pricing-card-featured {
  position: relative;
  border-color: var(--accent);
}

.pricing-badge {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1.5rem;
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: #081018;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-description {
  margin: 1rem 0 0;
  font-size: 0.98rem;
  line-height: 1.65;
}

.pricing-value {
  margin: 2rem 0 0;
  color: #ffffff;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.pricing-value span {
  color: var(--muted);
  font-size: 0.45em;
  font-weight: 600;
}

.pricing-value-alt {
  color: var(--accent);
  font-size: 2.3rem;
}

.pricing-list {
  flex: 1;
  margin: 2rem 0 2.2rem;
  padding-left: 1.25rem;
  font-size: 0.98rem;
  line-height: 1.85;
}

.pricing-list li + li {
  margin-top: 0.6rem;
}

.pricing-list li::marker {
  color: var(--accent);
}

.faq-shell {
  max-width: 860px;
}

.faq-item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 1.25rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 1rem 0 0;
  max-width: 820px;
  font-size: 1rem;
  line-height: 1.85;
}

.section-contact {
  padding-bottom: 6rem;
}

.contact-shell {
  display: grid;
  gap: 2rem;
  justify-items: center;
}

.contact-copy {
  max-width: 760px;
  text-align: center;
}

.contact-copy h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.3rem);
  line-height: 1.06;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.contact-copy p {
  margin: 1.7rem 0 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  width: min(100%, 700px);
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: 0.78;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
  color: #ffffff;
  padding: 1.3rem 1.25rem;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.34);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.6rem;
  margin: -0.2rem 0 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.form-status[data-state="success"] {
  color: #f6d591;
}

.form-status[data-state="error"] {
  color: #ff9d8c;
}

.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-footer {
  padding: 4rem 0 2rem;
  background: #05080d;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 1.1rem;
}

.site-footer p {
  margin: 0.55rem 0 0;
  font-size: 1rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.98rem;
}

@media (max-width: 1220px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 3rem;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero::after {
    top: 10rem;
    width: min(92vw, 760px);
    transform: translateX(-50%);
  }

  .hero-inner {
    min-height: auto;
    padding: 6rem 0 6rem;
  }

  .feature-grid,
  .audience-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .feature-item,
  .security-item {
    border-right: 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

.guides-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top center, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(180deg, #04070c 0%, #05080d 100%);
}

.guides-hero-inner {
  padding: 5.5rem 0 3rem;
}

.guides-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #f7d9a2;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guides-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.55);
}

.guides-hero h1 {
  margin: 1.15rem 0 1rem;
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.guides-dek {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.75;
}

.guides-shell {
  padding: 3.2rem 0 5rem;
}

.guides-section + .guides-section {
  margin-top: 2rem;
}

.guides-heading {
  margin: 0 0 1.1rem;
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.guides-copy {
  max-width: 760px;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
}

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

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.guide-card:hover,
.guide-card:focus-visible {
  border-color: rgba(245, 158, 11, 0.35);
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

.guide-card.is-static {
  cursor: default;
}

.guide-card.is-static:hover,
.guide-card.is-static:focus-visible {
  transform: none;
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border: 1px solid var(--line);
  color: #f7d9a2;
  background: rgba(245, 158, 11, 0.08);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guide-card h2,
.guide-card h3 {
  margin: 0;
  font-size: 1.34rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.guide-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.75;
}

.guide-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.article-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top center, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(180deg, #04070c 0%, #05080d 100%);
}

.article-hero-inner {
  padding: 5.5rem 0 3rem;
}

.article-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-breadcrumbs a:hover,
.article-breadcrumbs a:focus-visible {
  color: #fff;
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.55rem 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: #f7d9a2;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.article-kicker::before {
  content: "";
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(245, 158, 11, 0.55);
}

.article-page h1 {
  margin: 1.15rem 0 1rem;
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.article-dek {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.16rem;
  line-height: 1.75;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.25rem;
  margin-top: 1.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 2.5rem;
  padding: 3.2rem 0 5rem;
}

.article-main {
  min-width: 0;
}

.article-card {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.article-card + .article-card {
  margin-top: 1.2rem;
}

.article-main p,
.article-main li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
  line-height: 1.9;
}

.article-main h2 {
  margin: 2.4rem 0 1rem;
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.article-main h3 {
  margin: 1.55rem 0 0.65rem;
  font-size: 1.18rem;
  line-height: 1.35;
}

.article-main ul,
.article-main ol {
  padding-left: 1.35rem;
}

.article-main strong {
  color: #fff;
}

.article-aside {
  position: sticky;
  top: 96px;
  align-self: start;
}

.article-toc-title,
.article-cta-title {
  margin: 0 0 0.95rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.article-toc {
  display: grid;
  gap: 0.75rem;
}

.article-toc a {
  color: var(--muted);
  line-height: 1.45;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: #fff;
}

.article-cta p {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.article-cta .button {
  margin-bottom: 0.8rem;
}

.article-cta .inline-link {
  color: #f7d9a2;
}

@media (max-width: 760px) {
  .guides-hero-inner {
    padding: 4.4rem 0 2.2rem;
  }

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

  .article-hero-inner {
    padding: 4.4rem 0 2.2rem;
  }

  .article-shell {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    padding: 2rem 0 3.2rem;
  }

  .article-card {
    padding: 1.25rem;
  }

  .article-aside {
    position: static;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(calc(100% - 1.2rem), var(--max-width));
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding: 0.9rem 0;
    gap: 0.9rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    padding: 1rem 0 0.1rem;
    border-top: 1px solid var(--line);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 0.15rem 0;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.2rem;
    padding: 0.95rem 1.25rem;
    text-align: center;
  }

  .hero-inner {
    padding: 5rem 0 4rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.8rem);
  }

  .hero-text,
  .section-copy,
  .quote-copy,
  .contact-copy p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .site-nav .nav-cta {
    width: 100%;
  }

  .tool-tags {
    gap: 0.8rem;
  }

  .tool-tags span {
    width: calc(50% - 0.4rem);
  }

  .pricing-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .quote-block blockquote p,
  .contact-copy h2,
  .section h2 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }
}
