/* Work Style Quiz — PRD §2.3 + editorial asymmetry + a11y (ui-ux-pro-max). */

:root {
  --bg-page: #e9f1ef;
  --bg-card: #ffffff;
  --text: #1a2220;
  --text-soft: #3d4a45;
  --muted: #5c6b66;
  --ink-heading: #2a3d36;
  --green: #33a474;
  --green-hover: #2d9468;
  --green-muted: #e4f4ed;
  --teal: #2f8f9d;
  --amber: #c98a2e;
  --forest: #1d4a3e;
  --border: #c9d9d4;
  --focus-ring: #0f766e;
  --shadow: 0 12px 40px rgba(20, 35, 30, 0.12);
  --shadow-cta: 0 6px 22px rgba(51, 164, 116, 0.38);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-press: cubic-bezier(0.2, 0.85, 0.25, 1);
  --min-touch: 44px;
  --hero-copy-max: 760px;
  --content-max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

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

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

  .noise {
    opacity: 0.03 !important;
  }

  .option:active,
  .btn-cta:active {
    transform: none;
  }
}

body {
  margin: 0;
  font-family: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
  background: radial-gradient(
      ellipse 120% 80% at 10% 0%,
      #f4faf7 0%,
      transparent 55%
    ),
    radial-gradient(ellipse 90% 60% at 90% 20%, #dceee8 0%, transparent 50%),
    var(--bg-page);
  touch-action: manipulation;
  min-height: 100dvh;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 10000;
  padding: 12px 20px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  outline: none;
  box-shadow: 0 0 0 3px #fff, 0 0 0 6px var(--focus-ring);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.052;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.main {
  outline: none;
}

.load-error {
  max-width: 720px;
  margin: 16px auto;
  padding: 14px 18px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 12px;
  font-weight: 700;
}

.load-error code {
  font-size: 0.9em;
  font-weight: 600;
  padding: 0.1em 0.35em;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
}

.site-header {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0);
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 14px max(20px, env(safe-area-inset-right, 0)) 14px
    max(20px, env(safe-area-inset-left, 0));
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
  min-height: var(--min-touch);
  padding: 4px 0;
}

.logo:hover {
  color: var(--ink-heading);
}

.logo-mark {
  display: inline-grid;
  grid-template-columns: repeat(3, 7px);
  gap: 4px;
}

.logo-mark .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot--forest {
  background: var(--forest);
}
.dot--teal {
  background: var(--teal);
}
.dot--amber {
  background: var(--amber);
}
.dot--green {
  background: var(--green);
}

.header-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--teal);
  flex-shrink: 0;
}

.nav-muted {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

.container {
  width: min(var(--content-max), 94%);
  margin: 0 auto;
  padding: 20px 0 max(48px, env(safe-area-inset-bottom, 0));
}

.landing-hero {
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  background: linear-gradient(120deg, #1d4239 0%, #2c5a4d 48%, #356f5e 100%);
}

.landing-hero-inner {
  min-height: min(90vh, 820px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 0.85fr);
  align-items: center;
  gap: clamp(22px, 4vw, 48px);
  padding: clamp(24px, 4vw, 48px);
}

.landing-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #f4fbf8;
  max-width: 14ch;
}

.landing-lead {
  margin: 0 0 22px;
  color: rgba(230, 242, 236, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  max-width: min(40rem, 100%);
}

.landing-cta-row {
  margin-bottom: 14px;
}

.landing-meta {
  font-size: 0.9375rem;
  color: rgba(214, 232, 224, 0.88);
  font-weight: 700;
  margin: 0;
}

.landing-art {
  display: grid;
  place-items: end;
}

.art-scene {
  width: min(100%, 340px);
  aspect-ratio: 1 / 1.08;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(235, 247, 241, 0.95) 100%
  );
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.art-sun {
  position: absolute;
  width: 74px;
  height: 74px;
  right: 26px;
  top: 22px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffd689, #f0b24d);
}

.art-hill {
  position: absolute;
  left: -12%;
  right: -10%;
  bottom: -22%;
  height: 58%;
  border-radius: 42% 58% 0 0;
  background: linear-gradient(180deg, #7dc5a8 0%, #4d9c7f 100%);
}

.art-figure {
  position: absolute;
  bottom: 20%;
  width: 18px;
  border-radius: 999px;
  background: #255247;
}

.art-figure::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #255247;
}

.art-figure--1 {
  height: 42px;
  left: 28%;
}

.art-figure--2 {
  height: 36px;
  left: 45%;
}

.art-figure--3 {
  height: 30px;
  left: 60%;
}

.landing-details {
  margin-top: 16px;
}

.landing-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.preview-card {
  grid-column: span 2;
  border-radius: 16px;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fbfffd 0%, #f3faf7 100%);
  border-left-width: 5px;
}

.hidden {
  display: none !important;
}

.landing-stack {
  margin-bottom: 28px;
}

.landing-hero-block {
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-wsq {
  position: relative;
  overflow: hidden;
  min-height: min(90vh, 880px);
}

.hero-wsq__media {
  position: absolute;
  inset: 0;
}

.hero-wsq__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-wsq__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      115deg,
      rgba(12, 28, 24, 0.92) 0%,
      rgba(18, 42, 36, 0.78) 38%,
      rgba(22, 58, 48, 0.55) 62%,
      rgba(30, 72, 58, 0.35) 100%
    ),
    radial-gradient(
      ellipse 70% 55% at 70% 20%,
      rgba(66, 180, 140, 0.2),
      transparent 60%
    );
}

.hero-wsq__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-wsq__blob--a {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: #3db89a;
  top: -12%;
  right: -8%;
}

.hero-wsq__blob--b {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  background: #c98a2e;
  bottom: 8%;
  left: -6%;
  opacity: 0.22;
}

.hero-wsq__shell {
  position: relative;
  z-index: 1;
  padding: clamp(28px, 5vw, 52px) clamp(22px, 4vw, 44px);
  min-height: min(90vh, 880px);
  display: flex;
  align-items: center;
}

.hero-wsq__grid {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: end;
}

.hero-wsq__copy {
  max-width: var(--hero-copy-max);
  padding-bottom: 8px;
}

.hero-kicker {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232, 248, 240, 0.85);
}

.hero-h1 {
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.08;
  font-weight: 800;
  color: #f4fbf8;
  margin: 0 0 16px;
  letter-spacing: -0.035em;
  max-width: 16ch;
}

.hero-lead {
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  color: rgba(230, 242, 236, 0.92);
  margin: 0 0 26px;
  max-width: min(38rem, 100%);
  line-height: 1.55;
}

.hero-cta-row {
  margin-bottom: 14px;
}

.landing-meta {
  font-size: 0.9375rem;
  color: rgba(214, 232, 224, 0.88);
  font-weight: 700;
  margin: 0;
}

.hero-sublink {
  margin: 14px 0 0;
}

.text-link {
  color: #9fe8c9;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.text-link:hover {
  color: #c8f5e0;
}

.text-link:focus-visible {
  outline-color: #b8f0d4;
}

.hero-wsq__aside {
  justify-self: end;
  width: 100%;
  max-width: 360px;
}

.result-mock {
  position: relative;
  display: grid;
  grid-template-columns: 6px 1fr;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transform: rotate(-1.25deg);
}

.result-mock__bar {
  background: linear-gradient(180deg, var(--forest), var(--green));
}

.result-mock__inner {
  padding: 18px 18px 20px;
}

.result-mock__eyebrow {
  margin: 0 0 6px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.result-mock__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink-heading);
  line-height: 1.25;
}

.result-mock__line {
  margin: 0 0 14px;
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.result-mock__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.result-mock__chips span {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-muted);
  color: #1f6b4f;
  border: 1px solid #b8e0d0;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
}

.proof-item {
  padding: 18px 14px;
  text-align: left;
  border-right: 1px solid var(--border);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 10px;
  align-items: center;
}

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

.proof-icon {
  grid-row: 1 / span 2;
  width: 1.45rem;
  height: 1.45rem;
  color: var(--green);
  opacity: 0.92;
}

.proof-value {
  grid-column: 2;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.proof-label {
  grid-column: 2;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.landing-bento {
  margin-top: 8px;
}

.anchor-target {
  scroll-margin-top: 96px;
}

.section-title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  color: var(--ink-heading);
  margin: 0 0 8px;
  max-width: 20ch;
}

.section-sub {
  margin: 0 0 22px;
  color: var(--text-soft);
  max-width: 46ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 8px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(120px, auto);
  gap: 12px;
}

.bento-card {
  grid-column: span 2;
  border-radius: 16px;
  padding: 16px 16px 16px 18px;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #fbfffd 0%, #f3faf7 100%);
  border-left-width: 5px;
}

.bento-card--wide {
  grid-column: span 3;
}

.bento-card--narrow {
  grid-column: span 1;
}

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

.preview-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--ink-heading);
  margin: 0 0 8px;
}

.preview-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.preview-card--forest {
  border-left-color: var(--forest);
}
.preview-card--teal {
  border-left-color: var(--teal);
}
.preview-card--amber {
  border-left-color: var(--amber);
}
.preview-card--green {
  border-left-color: var(--green);
}

.result-deep {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: stretch;
}

.result-deep__visual {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 220px;
  background: #dfece8;
}

.result-deep__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.result-deep__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.result-deep__title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--ink-heading);
  margin: 0 0 10px;
  line-height: 1.25;
}

.result-deep__text {
  margin: 0 0 16px;
  color: var(--text-soft);
}

.result-sample {
  margin-top: 4px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0faf5 0%, #e8f6f0 100%);
  border: 1px solid #bfe3d4;
}

.result-sample__name {
  color: var(--ink-heading);
  font-weight: 800;
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.result-sample p {
  margin: 0;
  color: var(--text-soft);
}

.disclaimer {
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 22px;
}

.disclaimer-subtle {
  opacity: 0.92;
}

.card-quiz {
  margin-top: 8px;
}

.progress-wrap {
  margin-bottom: 20px;
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 8px;
}

.progress-track {
  height: 12px;
  border-radius: 999px;
  background: #dce9e9;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #3db8a8 0%,
    var(--teal) 45%,
    var(--green) 100%
  );
  transition: width 0.25s var(--ease-out);
}

.question-title {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  font-weight: 800;
  color: var(--ink-heading);
  margin: 0 0 16px;
  line-height: 1.35;
}

.options-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.options-wrap {
  margin-bottom: 20px;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  min-height: var(--min-touch);
  border-radius: 14px;
  border: 2px solid #c5d6d0;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    background 0.2s var(--ease-out), transform 0.15s var(--ease-press);
}

.option:hover {
  border-color: #8fb8a8;
}

.option:active {
  transform: scale(0.998);
}

.option:has(:focus-visible) {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.22);
}

.option:has(input:checked) {
  border-color: var(--green);
  background: var(--green-muted);
  box-shadow: 0 0 0 1px rgba(51, 164, 116, 0.35);
}

.option input {
  margin-top: 6px;
  accent-color: var(--green);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.option span {
  flex: 1;
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.options-fieldset .option + .option {
  margin-top: 10px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 800;
  font-size: 1rem;
  min-height: var(--min-touch);
  padding: 12px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s var(--ease-out), transform 0.18s var(--ease-press),
    box-shadow 0.2s var(--ease-out);
}

.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-cta {
  background: var(--green);
  color: #fff;
  min-width: 240px;
  min-height: 60px;
  padding: 16px 32px;
  border-radius: 999px;
  box-shadow: var(--shadow-cta);
}

.btn-cta:hover:not(:disabled):not(.is-disabled) {
  background: var(--green-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(51, 164, 116, 0.45);
}

.btn-cta:active:not(:disabled):not(.is-disabled) {
  transform: translateY(0);
}

a.btn-cta.is-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-cta-inline {
  min-width: 140px;
}

.btn-outline {
  background: #fff;
  color: var(--text);
  border: 2px solid #b8ccc4;
}

.btn-outline:hover:not(:disabled) {
  border-color: var(--green);
  color: #1f6b4f;
}

.card-result {
  margin-top: 8px;
}

.result-hero {
  text-align: center;
  padding-bottom: 8px;
}

.result-headline {
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  font-weight: 800;
  color: var(--ink-heading);
  margin: 0 0 10px;
  outline: none;
}

.result-tagline {
  margin: 0 auto;
  max-width: 36rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0;
}

.result-panel {
  border-radius: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(160deg, #fafcfb 0%, #f3f8f5 100%);
  text-align: left;
}

.result-panel h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin: 0 0 10px;
  font-weight: 800;
}

.result-panel ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-soft);
}

.result-panel li {
  margin-bottom: 6px;
}

.result-panel p {
  margin: 0;
  color: var(--text-soft);
}

.feedback {
  min-height: 1.2em;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 10px;
}

.site-footer {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 24px max(20px, env(safe-area-inset-right, 0))
    max(40px, env(safe-area-inset-bottom, 0)) max(20px, env(safe-area-inset-left, 0));
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 960px) {
  .landing-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .landing-copy h1 {
    max-width: none;
  }

  .landing-art {
    place-items: start;
  }

  .hero-wsq__grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-wsq__aside {
    justify-self: start;
    max-width: 420px;
  }

  .hero-h1 {
    max-width: none;
  }

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

  .bento-card--wide {
    grid-column: 1 / -1;
  }

  .bento-card:not(.bento-card--wide):not(.bento-card--tall) {
    grid-column: span 1;
  }

  .bento-card--tall {
    grid-column: span 2;
    grid-row: span 1;
  }

  .result-deep {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-card {
    grid-column: 1 / -1;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item {
    border-bottom: 1px solid var(--border);
  }

  .proof-item:nth-child(2n) {
    border-right: 0;
  }

  .proof-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

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

  .bento-card--wide,
  .bento-card:not(.bento-card--wide):not(.bento-card--tall),
  .bento-card--tall {
    grid-column: 1 / -1;
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 16px 14px 32px;
  }

  .card {
    padding: 20px 16px;
  }

  .landing-hero {
    border-radius: 16px;
  }

  .landing-hero-inner {
    padding: 22px 16px;
  }

  .btn-cta {
    min-width: 100%;
  }

  .hero-wsq {
    min-height: min(88vh, 760px);
  }

  .hero-wsq__shell {
    min-height: min(88vh, 760px);
    padding: 24px 18px;
  }

  .landing-hero-block {
    border-radius: 16px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .actions {
    flex-direction: column;
  }

  .btn-cta-inline {
    width: 100%;
  }

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