:root {
  --bg: #ffffff;
  --canvas: #f8f9fb;
  --ink: #111827;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #4f46e5;
  --accent-dark: #4338ca;
  --soft-shadow: 0 18px 60px rgba(17, 24, 39, 0.08);
  --lift-shadow: 0 24px 80px rgba(17, 24, 39, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: currentColor;
}

::selection {
  background: rgba(79, 70, 229, 0.14);
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 70;
  pointer-events: none;
  transition: transform 220ms ease;
}

.site-header.is-scrolled {
  transform: translateY(-2px);
}

.nav-wrap,
.container {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
}

.nav-wrap {
  display: flex;
  width: min(100% - 32px, 1120px);
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  pointer-events: auto;
  border: 1px solid rgba(229, 231, 235, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 10px 8px 18px;
  box-shadow: 0 18px 58px rgba(17, 24, 39, 0.1);
  backdrop-filter: blur(18px) saturate(1.2);
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-size: 17px;
}

.nav-center,
.nav-actions {
  display: flex;
  align-items: center;
}

.nav-center {
  border: 1px solid rgba(229, 231, 235, 0.76);
  border-radius: 999px;
  background: rgba(248, 249, 251, 0.72);
  padding: 0 14px;
  gap: 28px;
}

.nav-center a,
.nav-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-center a:hover,
.nav-login:hover {
  color: var(--ink);
}

.nav-actions {
  gap: 12px;
}

.menu-button {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-button span:first-child {
  transform: translateY(-4px);
}

.menu-button span:last-child {
  transform: translateY(4px);
}

.menu-button.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-button.is-open span:last-child {
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--soft-shadow);
}

.button-small {
  min-height: 44px;
  padding-inline: 16px;
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button-light {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--soft-shadow);
}

.button-accent {
  background: var(--accent);
  color: #fff;
}

.button-accent:hover {
  background: var(--accent-dark);
}

.button-invert {
  background: #fff;
  color: var(--ink);
}

.section {
  position: relative;
  padding: 112px 0;
}

.section-white {
  background: #fff;
}

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

.hero {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 96px 16px 72px;
}

.subpage-hero {
  min-height: 92dvh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 132px;
}

.subpage-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #fff);
}

.subpage-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 64px;
}

.subpage-hero h1 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 760;
  text-wrap: balance;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.subpage-hero .hero-actions {
  justify-content: flex-start;
}

.subpage-visual {
  position: relative;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--lift-shadow);
  overflow: hidden;
}

.subpage-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 20px;
  background:
    linear-gradient(rgba(229, 231, 235, 0.74) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.74) 1px, transparent 1px),
    var(--canvas);
  background-size: 42px 42px;
}

.subpage-visual span {
  position: absolute;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  box-shadow: var(--soft-shadow);
}

.subpage-visual span:nth-child(1) { left: 12%; top: 18%; }
.subpage-visual span:nth-child(2) { right: 10%; top: 34%; }
.subpage-visual span:nth-child(3) { left: 18%; bottom: 30%; }
.subpage-visual span:nth-child(4) { right: 18%; bottom: 15%; }

.blog-hero {
  min-height: 100dvh;
  overflow: hidden;
  padding: 140px 0 92px;
}

.blog-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #fff);
}

.blog-hero-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  align-items: center;
  gap: 64px;
  margin: 0 auto 56px;
}

.blog-hero-copy {
  max-width: 930px;
}

.blog-hero-kicker {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
}

.blog-hero-kicker span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  border-radius: 999px;
  padding: 0 13px;
}

.blog-hero-kicker span:first-child {
  background: #111827;
  color: #fff;
}

.blog-hero-copy h1 {
  margin: 16px 0 0;
  max-width: 760px;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 760;
  text-wrap: balance;
}

.blog-hero-copy > p {
  max-width: 680px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.blog-hero-copy .hero-actions {
  justify-content: flex-start;
  margin-top: 30px;
}

.blog-hero-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 24px;
  background: #111827;
  padding: 18px;
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(16px);
}

.blog-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
}

.blog-hero-panel > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.blog-hero-panel div {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  padding: 16px;
}

.blog-hero-panel strong,
.blog-hero-panel small {
  display: block;
}

.blog-hero-panel strong {
  color: #fff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.blog-hero-panel small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.featured-post {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.featured-post-visual {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    #111827;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.featured-post-visual > span,
.blog-card-media span {
  position: absolute;
  left: 24px;
  top: 24px;
  z-index: 2;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(229, 231, 235, 0.85);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 12px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.08);
}

.blog-mockup-sheet {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 265px;
  min-height: 330px;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 18px;
  background: #fff;
  padding: 34px;
  box-shadow:
    -54px 32px 0 -8px rgba(255, 255, 255, 0.86),
    -54px 32px 0 -7px rgba(229, 231, 235, 0.82),
    58px 44px 0 -12px rgba(255, 255, 255, 0.74),
    58px 44px 0 -11px rgba(229, 231, 235, 0.72),
    0 34px 80px rgba(17, 24, 39, 0.16);
  transform: translate(-50%, -48%) rotate(-2deg);
}

.blog-mockup-sheet strong {
  display: block;
  max-width: 160px;
  font-size: 30px;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-mockup-sheet i {
  display: block;
  height: 8px;
  margin-top: 18px;
  border-radius: 999px;
  background: #d1d5db;
}

.blog-mockup-sheet i:first-of-type {
  margin-top: 44px;
  width: 155px;
  background: var(--ink);
}

.blog-mockup-sheet i:nth-of-type(2) {
  width: 190px;
}

.blog-mockup-sheet i:nth-of-type(3) {
  width: 132px;
}

.featured-post-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 56px);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.post-meta span:first-child {
  color: var(--accent);
}

.featured-post-copy h2,
.blog-toolbar h2,
.blog-newsletter h2 {
  margin: 18px 0 0;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.featured-post-copy p,
.blog-newsletter p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.featured-post-copy .button {
  width: fit-content;
  margin-top: 28px;
}

.blog-section {
  padding: 112px 0;
}

.blog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}

.blog-toolbar h2 {
  max-width: 740px;
}

.blog-filter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.blog-filter-list a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  padding: 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.blog-filter-list a:hover {
  color: var(--ink);
  border-color: rgba(17, 24, 39, 0.18);
  transform: translateY(-1px);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.blog-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.09);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lift-shadow);
}

.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 1.65 / 1;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.08), transparent 48%),
    linear-gradient(rgba(229, 231, 235, 0.62) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.62) 1px, transparent 1px),
    var(--canvas);
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.blog-card-media::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: 112px;
  height: 144px;
  border: 1px solid rgba(229, 231, 235, 0.96);
  border-radius: 12px;
  background:
    linear-gradient(var(--ink), var(--ink)) 18px 76px / 54px 7px no-repeat,
    linear-gradient(#d1d5db, #d1d5db) 18px 96px / 76px 6px no-repeat,
    linear-gradient(#d1d5db, #d1d5db) 18px 112px / 62px 6px no-repeat,
    #fff;
  box-shadow:
    -20px 18px 0 -4px rgba(255, 255, 255, 0.82),
    -20px 18px 0 -3px rgba(229, 231, 235, 0.8),
    0 22px 45px rgba(17, 24, 39, 0.14);
  transform: translate(-50%, -50%) rotate(-2deg);
}

.blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.blog-card h3 {
  margin: 16px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-card p {
  margin: 14px 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.blog-card-body > a {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  margin-top: auto;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 999px;
  padding: 0 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.blog-card-body > a::after {
  content: "->";
  margin-left: 8px;
}

.blog-card-body > a:hover {
  border-color: rgba(17, 24, 39, 0.16);
  background: var(--canvas);
  transform: translateY(-1px);
}

.blog-newsletter {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 48px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(79, 70, 229, 0.18), transparent 34%),
    linear-gradient(135deg, #111827 0%, #0b1220 100%);
  padding: clamp(30px, 5vw, 52px);
  color: #fff;
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.22);
}

.blog-newsletter .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.blog-newsletter p {
  color: rgba(255, 255, 255, 0.66);
}

.newsletter-form {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.newsletter-form label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
}

.newsletter-form div {
  display: flex;
  gap: 10px;
}

.newsletter-form input,
.newsletter-form button {
  min-height: 48px;
  border-radius: var(--radius);
  font: inherit;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  padding: 0 14px;
  color: #fff;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.newsletter-form button {
  border: 0;
  background: #fff;
  padding: 0 16px;
  color: var(--ink);
  font-weight: 800;
}

.contact-hero {
  min-height: 100dvh;
  overflow: hidden;
  padding: 142px 0 96px;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 240px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #fff);
}

.contact-hero-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  gap: 56px;
}

.contact-copy h1 {
  max-width: 760px;
  margin: 16px 0 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 760;
  text-wrap: balance;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.7;
}

.contact-response-card {
  width: min(100%, 390px);
  margin-top: 34px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--soft-shadow);
}

.contact-response-card span,
.contact-info-panel .eyebrow {
  color: var(--muted);
}

.contact-response-card strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  line-height: 1.2;
}

.contact-shell {
  display: block;
  width: min(100%, 780px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.14);
}

.contact-form-section {
  padding: 96px 0 124px;
}

.contact-info-panel {
  position: relative;
  overflow: hidden;
  background: #111827;
  padding: clamp(28px, 4vw, 42px);
  color: #fff;
}

.contact-info-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), transparent 82%);
}

.contact-info-panel > * {
  position: relative;
  z-index: 1;
}

.contact-info-panel h2 {
  margin: 14px 0 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 42px;
}

.contact-detail-list a {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  padding: 14px;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-detail-list a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.contact-detail-list a > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.contact-detail-list svg {
  width: 20px;
  height: 20px;
}

.contact-detail-list strong,
.contact-detail-list small {
  display: block;
}

.contact-detail-list small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 4vw, 42px);
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(17, 24, 39, 0.12), rgba(229, 231, 235, 0.2)) border-box;
}

.contact-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  padding-bottom: 22px;
}

.contact-form-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-form-head h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: 0;
}

.contact-form-head small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  white-space: nowrap;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: var(--canvas);
  padding: 0 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

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

.field-group {
  position: relative;
  display: grid;
  gap: 8px;
}

.field-group label {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 39, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(17, 24, 39, 0.03), 0 10px 26px rgba(15, 23, 42, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.field-group input,
.field-group select {
  min-height: 54px;
  padding: 0 15px;
}

.field-group select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 20px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    #fff;
  padding-right: 42px;
}

.field-group textarea {
  min-height: 154px;
  resize: vertical;
  padding: 15px;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: rgba(17, 24, 39, 0.28);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.09), 0 18px 38px rgba(15, 23, 42, 0.08);
}

.contact-form .button {
  width: 100%;
  min-height: 56px;
  margin-top: 4px;
  border-radius: 14px;
  font-size: 15px;
}

.contact-form .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
}

.contact-form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

.story-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(229, 231, 235, 0.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.55) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000 0%, #000 48%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  z-index: -1;
  background: linear-gradient(to bottom, transparent, #fff);
}

.hero-inner {
  width: min(100%, 1040px);
  margin-inline: auto;
  text-align: center;
}

.prompt-card {
  width: min(100%, 672px);
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 12px;
  text-align: left;
  box-shadow: var(--lift-shadow);
}

.prompt-icon,
.icon-chip {
  display: grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--canvas);
  color: var(--accent);
  font-size: 20px;
}

.icon-chip {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.prompt-card p {
  min-width: 0;
  flex: 1;
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 650;
}

.hero-title,
.final-cta h2 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 760;
  text-wrap: balance;
}

.hero-copy,
.final-cta p {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.section-heading {
  width: min(100%, 760px);
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.copy-block h2 {
  margin: 16px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 740;
  text-wrap: balance;
}

.section-heading > p:last-child,
.copy-block > p:last-child {
  max-width: 680px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.blueprint-grid {
  width: min(100%, 980px);
  margin: 64px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.info-card,
.category-card,
.bento-card,
.process-card,
.stat-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.info-card {
  min-height: 190px;
  padding: 20px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.info-card:hover,
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-shadow);
}

.card-label {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card h3 {
  margin: 8px 0 0;
  font-size: 16px;
  line-height: 1.45;
}

.product-stage {
  width: min(100%, 1120px);
  min-height: 620px;
  margin: 80px auto 0;
  position: relative;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.stage-backdrop {
  position: absolute;
  inset: 64px 11% auto;
  height: 320px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--lift-shadow);
  transition: transform 120ms linear;
}

.product-stack {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.product-object {
  position: absolute;
  width: 208px;
  height: 288px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--lift-shadow);
  transform-style: preserve-3d;
}

.product-a,
.product-c,
.product-e {
  background: #eef2ff;
}

.product-a { --product-transform: translate(-320px, -28px) rotate(-5deg); transform: var(--product-transform); }
.product-b { --product-transform: translate(-160px, 96px) rotate(3deg); transform: var(--product-transform); }
.product-c { --product-transform: translate(0, -72px) rotate(0deg); transform: var(--product-transform); }
.product-d { --product-transform: translate(170px, 84px) rotate(-2deg); transform: var(--product-transform); }
.product-e { --product-transform: translate(330px, -12px) rotate(5deg); transform: var(--product-transform); }

.product-cover {
  height: 112px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(229, 231, 235, 0.85);
}

.product-object > span {
  display: block;
  height: 8px;
  margin-top: 12px;
  border-radius: 999px;
  background: #e5e7eb;
}

.product-object > span:first-of-type {
  width: 96px;
  margin-top: 24px;
  background: var(--ink);
}

.product-object > span:nth-of-type(2) {
  width: 128px;
}

.product-object > span:nth-of-type(3) {
  width: 112px;
}

.product-object footer {
  position: absolute;
  inset: auto 20px 20px;
  display: flex;
  flex-direction: column;
}

.product-object strong {
  font-size: 18px;
}

.product-object small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 14px;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
}

.subpage-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
}

.subpage-panel {
  position: sticky;
  top: 116px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 34px;
  box-shadow: var(--soft-shadow);
}

.subpage-panel h2,
.subpage-cta h2 {
  margin: 16px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.subpage-panel p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.tool-nav-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.tool-nav-card {
  position: relative;
  min-height: 388px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.tool-nav-card::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto;
  height: 178px;
  pointer-events: none;
  border: 1px solid rgba(229, 231, 235, 0.82);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.14), transparent 48%),
    linear-gradient(rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    var(--canvas);
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.tool-nav-card::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 58px;
  width: 112px;
  height: 146px;
  pointer-events: none;
  border: 1px solid rgba(229, 231, 235, 0.92);
  border-radius: 10px;
  background:
    linear-gradient(var(--ink), var(--ink)) 18px 82px / 54px 7px no-repeat,
    linear-gradient(#d1d5db, #d1d5db) 18px 102px / 76px 6px no-repeat,
    linear-gradient(#d1d5db, #d1d5db) 18px 118px / 62px 6px no-repeat,
    linear-gradient(135deg, #eef2ff 0%, #fff 70%);
  box-shadow:
    -24px 18px 0 -2px rgba(255, 255, 255, 0.92),
    -24px 18px 0 -1px rgba(229, 231, 235, 0.92),
    24px 28px 0 -4px rgba(255, 255, 255, 0.88),
    24px 28px 0 -3px rgba(229, 231, 235, 0.86),
    0 24px 46px rgba(17, 24, 39, 0.14);
  transform: translateX(-50%) rotate(-2deg);
}

.tool-nav-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 70, 229, 0.26);
  box-shadow: var(--lift-shadow);
}

.tool-nav-card span,
.tool-nav-card h3,
.tool-nav-card p,
.tool-nav-card strong {
  position: relative;
  z-index: 1;
}

.tool-nav-card span {
  position: absolute;
  left: 30px;
  top: 30px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #fff;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.1);
}

.tool-nav-card h3 {
  margin: 214px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.tool-nav-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.tool-nav-card strong {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  margin-top: 20px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: var(--ink);
  padding: 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.tool-nav-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.1), transparent 48%),
    linear-gradient(rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    #f9fafb;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.tool-nav-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(79, 70, 229, 0.11), transparent 42%),
    linear-gradient(rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.tool-nav-card:nth-child(4)::before {
  background:
    linear-gradient(135deg, rgba(107, 114, 128, 0.13), transparent 44%),
    linear-gradient(rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 231, 235, 0.64) 1px, transparent 1px),
    #f8f9fb;
  background-size: auto, 34px 34px, 34px 34px, auto;
}

.mini-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 24px;
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lift-shadow);
}

.mini-card h3 {
  margin: 0;
  font-size: 21px;
}

.mini-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.subpage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  padding: 34px;
  box-shadow: var(--soft-shadow);
}

.subpage-cta h2 {
  max-width: 760px;
}

.package-stage {
  position: relative;
  min-height: 520px;
}

.package-card {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  margin: 64px auto 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--ink);
  color: #fff;
  padding: 28px;
  box-shadow: var(--lift-shadow);
}

.package-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.package-card header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.package-card h3 {
  margin: 4px 0 0;
  font-size: 25px;
}

.package-icon,
.cta-icon {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background:
    linear-gradient(#fff, #fff) center 17px / 24px 2px no-repeat,
    linear-gradient(#fff, #fff) center 24px / 24px 2px no-repeat,
    linear-gradient(#fff, #fff) center 31px / 24px 2px no-repeat,
    rgba(255, 255, 255, 0.1);
}

.package-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.package-grid span {
  min-height: 72px;
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 650;
}

.soft-shadow {
  position: absolute;
  inset: auto 8% 56px;
  height: 112px;
  border-radius: 50%;
  background: rgba(203, 213, 225, 0.8);
  filter: blur(28px);
}

.category-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.category-card {
  min-height: 250px;
  padding: 24px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card h3 {
  margin: 40px 0 0;
  font-size: 18px;
  line-height: 1.35;
}

.category-card p,
.bento-card p,
.process-card span,
.price-card p,
.footer p,
.footer a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.bento-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.bento-card {
  min-height: 190px;
  padding: 24px;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

.check-dot,
.cta-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: var(--radius);
  background: rgba(79, 70, 229, 0.1);
}

.check-dot::before {
  content: "";
  width: 13px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.bento-card h3 {
  margin: 32px 0 0;
  font-size: 18px;
}

.process-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-card {
  min-height: 238px;
  padding: 32px;
}

.process-card p {
  margin: 0;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 20px 0 16px;
  font-size: 32px;
}

.stats-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 24px;
  text-align: center;
}

.stat-card strong {
  display: block;
  font-size: 32px;
  line-height: 1.15;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.pricing-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.price-card {
  padding: 28px;
}

.price-card-featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.price-card h3 {
  margin: 0;
  font-size: 21px;
}

.price-card strong {
  display: block;
  margin-top: 32px;
  font-size: 52px;
  line-height: 1;
}

.price-card strong span {
  font-size: 16px;
  font-weight: 650;
}

.price-card ul {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.price-card li::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.price-card-featured p,
.price-card-featured li {
  color: rgba(255, 255, 255, 0.72);
}

.price-card-featured li::before {
  border-color: #fff;
}

.price-card .button {
  width: 100%;
}

.final-cta {
  min-height: 100dvh;
  display: grid;
  align-items: center;
}

.cta-inner {
  text-align: center;
}

.cta-icon {
  margin: 0 auto 32px;
  width: 64px;
  height: 64px;
  background:
    linear-gradient(var(--accent), var(--accent)) center / 24px 2px no-repeat,
    #fff;
  box-shadow: var(--soft-shadow);
}

.footer {
  border-top: 0;
  background:
    linear-gradient(to bottom, var(--canvas), #ffffff 52%);
  padding: 28px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 48px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(79, 70, 229, 0.16), transparent 34%),
    linear-gradient(135deg, #111827 0%, #0b1220 100%);
  padding: 44px;
  color: #fff;
  box-shadow: 0 28px 90px rgba(17, 24, 39, 0.22);
}

.footer-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 72%);
}

.footer-grid > * {
  position: relative;
  z-index: 1;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.footer h3 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 14px;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  transition: color 180ms ease;
}

.footer a:not(.brand):hover {
  color: #fff;
}

.footer .brand {
  color: #fff;
}

.footer .brand-mark {
  background: #fff;
  color: var(--ink);
}

.footer p {
  color: rgba(255, 255, 255, 0.66);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

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

.product-object.reveal {
  transform: var(--product-transform);
}

.product-object.reveal.is-visible {
  transform: var(--product-transform);
}

@media (max-width: 1050px) {
  .nav-center,
  .nav-actions {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .site-header.menu-open .nav-center {
    position: absolute;
    inset: calc(100% + 10px) 16px auto;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    padding: 12px;
    box-shadow: var(--lift-shadow);
    backdrop-filter: blur(16px);
  }

  .site-header.menu-open .nav-center a {
    border-radius: 6px;
    padding: 12px;
  }

  .blueprint-grid,
  .category-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split,
  .subpage-layout,
  .subpage-hero-grid,
  .featured-post,
  .blog-newsletter,
  .blog-hero-top,
  .contact-hero-grid,
  .contact-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .subpage-panel {
    position: relative;
    top: auto;
  }

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

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

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

  .blog-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-hero-panel {
    max-width: 640px;
  }

  .blog-filter-list {
    justify-content: flex-start;
  }

  .contact-shell {
    max-width: 760px;
  }

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

  .product-object {
    position: relative;
    transform: none !important;
  }

  .product-stack {
    grid-template-columns: repeat(2, minmax(0, 208px));
    align-content: center;
    justify-content: center;
    gap: 16px;
  }

  .subpage-visual {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .nav-wrap,
  .container {
    width: min(100% - 24px, 1180px);
  }

  .nav-wrap {
    min-height: 60px;
    padding: 8px 8px 8px 14px;
  }

  .section {
    padding: 80px 0;
  }

  .prompt-card {
    align-items: flex-start;
  }

  .prompt-action {
    display: none;
  }

  .prompt-card p {
    font-size: 16px;
  }

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

  .subpage-hero {
    min-height: auto;
    padding-top: 120px;
  }

  .blog-hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .contact-hero {
    min-height: auto;
    padding: 120px 0 72px;
  }

  .contact-form-section {
    padding: 64px 0 88px;
  }

  .blog-hero-copy h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .blog-hero-copy .hero-actions {
    justify-content: stretch;
  }

  .blog-hero-panel {
    padding: 14px;
  }

  .featured-post-visual {
    min-height: 330px;
  }

  .blog-mockup-sheet {
    width: 220px;
    min-height: 282px;
  }

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

  .blog-card-media {
    aspect-ratio: 1.3 / 0.82;
  }

  .newsletter-form div {
    flex-direction: column;
  }

  .contact-copy h1 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .contact-form-head {
    flex-direction: column;
  }

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

  .contact-info-panel,
  .contact-form {
    padding: 24px;
  }

  .contact-shell {
    border-radius: 20px;
  }

  .subpage-hero .hero-actions {
    justify-content: stretch;
  }

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

  .tool-nav-grid {
    grid-template-columns: 1fr;
  }

  .tool-nav-card {
    min-height: 360px;
  }

  .tool-nav-card::before {
    height: 156px;
  }

  .tool-nav-card::after {
    top: 48px;
    width: 102px;
    height: 134px;
  }

  .tool-nav-card h3 {
    margin-top: 190px;
  }

  .subpage-panel,
  .subpage-cta {
    padding: 24px;
  }

  .subpage-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .subpage-visual {
    min-height: 320px;
    border-radius: 20px;
  }

  .subpage-visual span {
    min-height: 44px;
    font-size: 13px;
  }

  .blueprint-grid,
  .category-grid,
  .bento-grid,
  .stats-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 20px 0 28px;
  }

  .footer-grid {
    border-radius: 20px;
    padding: 28px;
  }

  .bento-large,
  .bento-wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .product-stage {
    min-height: auto;
    margin-top: 48px;
  }

  .stage-backdrop {
    display: none;
  }

  .product-stack {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .product-object {
    width: min(100%, 280px);
    margin-inline: auto;
  }

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

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

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