:root {
  --bg: #fdf8f0;
  --surface: #ffffff;
  --surface-soft: #faf5eb;
  --text: #241f1a;
  --muted: #7a7168;
  --line: #e8e1d5;
  --primary: #241f1a;
  --primary-strong: #171310;
  --primary-soft: #f7ede0;
  --accent: #b45309;
  --accent-soft: #fef3e2;
  --shadow: 0 10px 28px rgba(36, 31, 26, 0.08);
  --radius: 18px;
  --panel-top: #3f3120;
  --panel-mid: #2e2419;
  --panel-bottom: #171310;
  --panel-border: rgba(36, 31, 26, 0.28);
  --panel-glow-1: rgba(245, 158, 11, 0.22);
  --panel-glow-2: rgba(180, 83, 9, 0.14);
  --panel-strip: linear-gradient(90deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.05));
  --panel-shadow:
    0 28px 60px rgba(23, 19, 16, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --panel-card-bg: linear-gradient(180deg, #ffffff 0%, #fdf9f2 100%);
  --panel-card-border: #ece4d6;
  --panel-card-shadow: 0 18px 36px rgba(36, 31, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nunito Sans", sans-serif;
  color: var(--text);
  background: var(--bg);
}

body.guided-page {
  background: linear-gradient(180deg, #f1f4f9 0%, #ffffff 42%, #eef3f8 100%);
}

.site-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 40px;
}

.guided-page-shell {
  width: min(1180px, calc(100% - 32px));
  padding-top: 16px;
}

.hero {
  padding: 0 0 28px;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid rgba(181, 196, 214, 0.78);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 14px 32px rgba(30, 24, 18, 0.08);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: transparent;
  font-size: 0;
  position: relative;
  overflow: hidden;
}

.brand-mark::before {
  content: "";
  width: 22px;
  height: 22px;
  background: center / contain no-repeat url("./assets/mjengo-hammer-mark.svg");
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong,
.hero-copy h1,
.hero-card h2,
.section-heading h2,
.intro-grid h3,
.brief-card h3,
.tool-link-card h3,
.calculator-copy h3,
.pricing-card h3,
.service-card h3,
.store-card h3,
.newsletter-card h3,
.contact-card h2,
.testimonial-meta strong,
.tool-action-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.nav-links .install-app-trigger-nav {
  min-height: 40px;
  padding: 10px 16px;
  border-color: rgba(39, 68, 103, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.92rem;
}

.nav-links .refresh-page-button {
  min-height: 40px;
  padding: 10px 16px;
  border-color: rgba(39, 68, 103, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
}

.hero-content {
  display: block;
  padding: 64px 0 8px;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.card-label,
.panel-tag,
.result-label,
.testimonial-rating {
  margin: 0;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-copy h1,
.hero-card h2,
.section-heading h2,
.contact-card h2 {
  margin: 0;
  line-height: 1.04;
}

.hero-copy h1 {
  max-width: none;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.hero-text,
.section-lead,
.brief-card p,
.calculator-copy p,
.result-panel small,
.tool-catalog p,
.pricing-card p,
.service-card p,
.store-card p,
.newsletter-card p,
.contact-card p,
.booking-list p,
.footer p,
.hero-card p,
.intro-grid p,
.testimonial-card blockquote,
.testimonial-meta span {
  color: var(--muted);
  line-height: 1.75;
}

.hero-text {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.03rem;
  margin-inline: auto;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

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

.primary {
  background: var(--primary);
  color: #ffffff;
}

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

.secondary,
.tertiary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--primary);
}

.secondary:hover,
.tertiary:hover {
  border-color: #b8c8da;
  background: var(--surface-soft);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
  max-width: 760px;
  margin-inline: auto;
}

.hero-stats article,
.hero-card,
.intro-grid article,
.brief-card,
.calculator-card,
.tool-link-card,
.tool-catalog article,
.pricing-card,
.service-card,
.store-card,
.testimonial-card,
.newsletter-card,
.video-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-stats article,
.intro-grid article,
.brief-card,
.calculator-card,
.tool-link-card,
.tool-catalog article,
.pricing-card,
.service-card,
.store-card,
.testimonial-card,
.newsletter-card,
.video-card,
.contact-card {
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.intro-grid article:hover,
.brief-card:hover,
.calculator-card:hover,
.tool-link-card:hover,
.tool-catalog article:hover,
.pricing-card:hover,
.service-card:hover,
.store-card:hover,
.testimonial-card:hover,
.newsletter-card:hover,
.video-card:hover,
.contact-card:hover {
  transform: translateY(-2px);
  border-color: #c1d2e4;
}

.hero-stats article {
  padding: 20px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
}

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

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

.card-grid div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
}

.card-grid span,
.store-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 56px 0;
  scroll-margin-top: 100px;
}

.brief-page-hero {
  padding-bottom: 8px;
}

.brief-hero-content {
  padding-top: 40px;
}

.brief-page-copy {
  max-width: 780px;
}

.brief-highlight-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.brief-highlight-card,
.brief-toolbar,
.brief-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.brief-highlight-card {
  padding: 18px 20px;
}

.brief-highlight-card strong {
  display: block;
  margin: 6px 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.02rem;
  color: var(--primary);
}

.brief-highlight-card span {
  color: var(--muted);
  line-height: 1.7;
}

.brief-toolbar-section {
  padding-top: 12px;
}

.brief-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 20px;
  padding: 20px 24px;
}

.brief-toolbar-copy h2 {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brief-toolbar-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.brief-nav-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
  justify-content: flex-end;
}

.brief-nav-pills a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
}

.brief-nav-pills a:hover {
  background: var(--primary-soft);
  border-color: #b8c8da;
}

.brief-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
  gap: 24px;
  align-items: start;
}

.brief-main {
  display: grid;
  gap: 22px;
}

.brief-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 18px;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 26px;
}

.center-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.split-heading {
  grid-template-columns: 1fr minmax(240px, 420px);
  align-items: end;
  gap: 24px;
}

.section-heading h2 {
  max-width: 12ch;
  font-size: clamp(1.85rem, 3.1vw, 2.85rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.contact-card h2 {
  max-width: 12ch;
  font-size: clamp(1.95rem, 3.4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-lead {
  margin: 0;
}

.center-heading .section-lead {
  margin-inline: auto;
}

.intro-grid,
.brief-grid,
.pricing-grid,
.service-grid,
.store-grid,
.testimonial-grid,
.tool-catalog,
.media-layout {
  display: grid;
  gap: 18px;
}

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

.intro-grid article,
.brief-card,
.pricing-card,
.service-card,
.store-card,
.tool-catalog article,
.testimonial-card {
  padding: 24px;
}

.intro-grid article {
  text-align: center;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

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

.brief-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.brief-card span {
  display: inline-flex;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  margin-top: auto;
  padding: 11px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--primary);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.card-link:hover {
  transform: translateY(-1px);
  border-color: #b8c8da;
  background: var(--primary-soft);
}

.calculator-layout {
  display: grid;
  gap: 18px;
}

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

.tool-link-card {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.tool-link-card p:last-of-type {
  margin: 0;
}

.brief-card h3,
.tool-link-card h3 {
  margin: 0;
}

.brief-card p,
.tool-link-card p {
  margin: 0;
}

.calculator-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr) minmax(180px, 0.7fr);
  gap: 18px;
  padding: 24px;
}

.calculator-card.active {
  border-color: #9eb7d2;
  background: #fbfdff;
}

.calculator-form,
.newsletter-form,
.contact-form,
.brief-form {
  display: grid;
  gap: 12px;
}

.calculator-form label,
.newsletter-form label,
.contact-form label,
.brief-form label {
  display: grid;
  gap: 7px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

.calculator-form input,
.calculator-form select,
.newsletter-form input,
.contact-form input,
.contact-form select,
.contact-form textarea,
.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fcfdff;
  box-shadow: inset 0 1px 2px rgba(36, 58, 89, 0.03);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.calculator-form input:focus,
.calculator-form select:focus,
.newsletter-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  outline: none;
  border-color: #8ca8c6;
  background: #ffffff;
  box-shadow:
    inset 0 1px 2px rgba(36, 58, 89, 0.03),
    0 0 0 3px rgba(45, 74, 109, 0.08);
}

.calculator-form .checkbox-inline {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  padding-top: 6px;
}

.calculator-form .checkbox-inline input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

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

.brief-helper-card,
.brief-section,
.summary-card,
.wants-needs-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.brief-helper-card,
.brief-section,
.wants-needs-card {
  padding: 28px;
}

.brief-section {
  display: grid;
  gap: 20px;
  background: #ffffff;
}

.brief-form {
  gap: 20px;
}

.brief-section-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.brief-section-header {
  display: grid;
  gap: 8px;
}

.brief-section-header h3,
.brief-helper-card h3,
.wants-needs-card h4,
.brief-side-card strong {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brief-section-header h3 {
  font-size: 1.28rem;
}

.brief-section-header p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.section-badge {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #c6d4e4;
  border-radius: 14px;
  background: #f4f8fd;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brief-grid {
  display: grid;
  gap: 16px;
}

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

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

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

.option-group {
  display: grid;
  gap: 12px;
}

.option-group-head {
  display: grid;
  gap: 4px;
}

.option-group-head p:last-child,
.choice-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

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

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

.check-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  font-weight: 500;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.check-card:hover {
  border-color: #b8c8da;
  background: #fbfdff;
}

.check-card input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--primary);
  box-shadow: none;
}

.check-card:has(input:checked) {
  border-color: #8ea8c5;
  background: #eef5ff;
  box-shadow: inset 0 0 0 1px rgba(45, 74, 109, 0.05);
}

.check-card span {
  line-height: 1.45;
}

.wants-needs-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.wants-needs-card {
  display: grid;
  gap: 16px;
  background: #fcfdff;
}

.wants-needs-card h4 {
  font-size: 1.05rem;
}

.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
}

.summary-card {
  padding: 22px;
}

.status-card {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 600;
}

.brief-side-card {
  padding: 20px;
}

.brief-checklist {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
}

.progress-side-card {
  gap: 12px;
}

.progress-meta {
  display: grid;
  gap: 4px;
}

.progress-meta strong {
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.9rem;
}

.progress-meta span {
  color: var(--muted);
  line-height: 1.6;
}

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

.progress-meter span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.24s ease;
}

.status-card[data-state="success"] {
  background: #eaf8ef;
  color: #1e6a39;
}

.status-card[data-state="error"] {
  background: #fff1f1;
  color: #a13b3b;
}

.status-card[data-state="info"] {
  background: #eef5ff;
  color: #29558a;
}

.summary-output {
  margin: 16px 0 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fcfdff;
  color: var(--text);
  font-family: "Nunito Sans", sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  min-height: 320px;
  white-space: pre-wrap;
}

.result-panel {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--primary-soft);
}

.result-panel strong {
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}

.result-panel-breakdown {
  gap: 14px;
}

.result-breakdown {
  display: grid;
  gap: 8px;
}

.result-breakdown-row {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(158, 183, 210, 0.5);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.86);
}

.result-breakdown-row span {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.55;
}

.result-breakdown-row strong {
  font-size: 1rem;
  line-height: 1.4;
}

.result-guidance {
  margin: 0;
  color: var(--text);
  line-height: 1.7;
}

.tool-catalog {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-action-grid {
  display: grid;
  gap: 14px;
}

.tool-action-card {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
  color: inherit;
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.tool-action-card:hover {
  transform: translateY(-1px);
  border-color: #b8c8da;
  background: #ffffff;
}

.tool-action-card strong {
  color: var(--text);
  font-size: 1rem;
}

.tool-action-card span {
  color: var(--muted);
  line-height: 1.65;
}

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

.pricing-card strong {
  display: block;
  margin: 14px 0 10px;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2rem;
}

.featured {
  border-color: #a8bed8;
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.service-grid,
.store-grid,
.media-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

.testimonial-card {
  display: grid;
  gap: 18px;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.98rem;
}

.testimonial-meta {
  display: grid;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.newsletter-card,
.video-card {
  padding: 26px;
}

.video-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.video-list a {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.video-list a:hover {
  transform: translateY(-1px);
  border-color: #b8c8da;
  background: var(--primary-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding: 30px;
}

.about-card {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(240px, 0.85fr);
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.about-points {
  display: grid;
  gap: 10px;
}

.about-points p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--primary);
  font-weight: 600;
}

.booking-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.booking-list p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.contact-form textarea {
  resize: vertical;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 2px 8px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--primary);
}

.home-shell {
  width: min(1240px, calc(100% - 28px));
  padding-top: 12px;
}

.home-main {
  display: grid;
  gap: 22px;
  margin-top: 18px;
}

.home-main .section {
  padding-top: 0;
  padding-bottom: 0;
}

#quick-start,
#briefs,
#calculators,
#media,
#testimonials,
#contact {
  scroll-margin-top: 110px;
}

.home-hero {
  padding-bottom: 16px;
}

.home-nav {
  top: 12px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #ffffff !important;
}

.nav-cta:hover {
  background: var(--primary-strong);
  color: #ffffff;
}

.home-hero-panel {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid var(--panel-border);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, var(--panel-glow-1), transparent 34%),
    radial-gradient(circle at bottom right, var(--panel-glow-2), transparent 36%),
    linear-gradient(180deg, var(--panel-top) 0%, var(--panel-mid) 46%, var(--panel-bottom) 100%);
  box-shadow: var(--panel-shadow);
}

.home-hero-panel::before,
.spotlight-section::before,
.footer-cta::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 18px;
  background: var(--panel-strip);
  opacity: 0.3;
}

.home-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 34px;
  padding: 48px 42px 42px;
  align-items: center;
}

.home-hero .hero-copy {
  max-width: none;
  margin: 0;
  text-align: left;
}

.home-hero .eyebrow {
  color: #d7e7fb;
}

.home-hero .hero-copy h1 {
  max-width: 12ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.97;
  letter-spacing: -0.04em;
}

.home-hero .hero-text {
  max-width: 58ch;
  margin-inline: 0;
  color: rgba(232, 241, 252, 0.88);
  font-size: 1rem;
}

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

.home-hero .secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.home-hero .secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.home-hero .hero-stats {
  max-width: none;
  margin-inline: 0;
}

.home-hero .hero-stats article {
  border-color: rgba(185, 210, 242, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.home-hero .hero-stats strong {
  color: #ffffff;
}

.home-hero .hero-stats span {
  color: rgba(226, 237, 251, 0.82);
}

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

.hero-tool-card,
.proof-card,
.journey-step,
.showcase-card,
.directory-panel,
.help-card,
.footer-cta-action {
  border: 1px solid var(--panel-card-border);
  border-radius: 22px;
  background: var(--panel-card-bg);
  box-shadow: var(--panel-card-shadow);
}

.hero-tool-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.hero-tool-card:hover,
.proof-card:hover,
.journey-step:hover,
.showcase-card:hover,
.directory-panel:hover,
.help-card:hover,
.footer-cta-action:hover {
  transform: translateY(-2px);
  border-color: #bfd0e5;
  box-shadow: 0 18px 36px rgba(14, 37, 70, 0.1);
}

[data-card-url]:focus-visible {
  outline: 3px solid rgba(45, 74, 109, 0.18);
  outline-offset: 3px;
}

.hero-tool-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #eef2f7;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-tool-card strong,
.proof-card strong,
.directory-head h3,
.help-card strong,
.footer-cta-action strong,
.journey-step h3,
.showcase-card h3 {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero-tool-card strong {
  font-size: 1rem;
}

.home-card-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(45, 74, 109, 0.1);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-card small {
  display: none;
}

.coming-soon-card::after {
  content: "Admin preview only for now · Public launch soon.";
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.92rem;
}

.hero-tool-card small,
.proof-card p,
.journey-step p,
.showcase-card p,
.directory-links a span,
.help-card span,
.footer-cta-action span,
.advisor-copy p,
.advisor-prompt {
  color: var(--muted);
  line-height: 1.7;
}

.advisor-section {
  position: relative;
  margin-top: -32px;
  padding-top: 0;
  z-index: 1;
}

#briefs .directory-links a:nth-child(n + 2) span {
  display: none;
}

#briefs .directory-links a:nth-child(n + 2)::after {
  content: "Coming Soon · Admin preview only for now";
  display: block;
  color: var(--muted);
  line-height: 1.7;
}

.advisor-band,
.home-panel-section,
.help-split,
.footer-cta {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
}

.advisor-band {
  display: grid;
  gap: 18px;
  padding: 40px 34px;
  border: 1px solid var(--panel-border);
  background:
    radial-gradient(circle at top left, var(--panel-glow-1), transparent 34%),
    radial-gradient(circle at bottom right, var(--panel-glow-2), transparent 36%),
    linear-gradient(180deg, var(--panel-top) 0%, var(--panel-mid) 46%, var(--panel-bottom) 100%);
  box-shadow: var(--panel-shadow);
}

.home-panel-section {
  padding: 40px 34px;
  border: 1px solid var(--panel-border);
  background:
    radial-gradient(circle at top left, var(--panel-glow-1), transparent 34%),
    radial-gradient(circle at bottom right, var(--panel-glow-2), transparent 36%),
    linear-gradient(180deg, var(--panel-top) 0%, var(--panel-mid) 46%, var(--panel-bottom) 100%);
  box-shadow: var(--panel-shadow);
}

.advisor-copy {
  text-align: center;
}

.advisor-copy .eyebrow,
.home-panel-section .section-heading .eyebrow,
.home-panel-section .help-copy .eyebrow,
.light-heading .eyebrow,
.footer-cta .eyebrow {
  color: #b9d5f6;
}

.advisor-copy h2,
.home-panel-section .section-heading h2,
.footer-cta-copy h2,
.light-heading h2,
.help-copy h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.advisor-copy h2 {
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.advisor-copy p {
  max-width: 66ch;
  margin: 10px auto 0;
  color: rgba(233, 241, 252, 0.84);
}

.home-panel-section .section-lead,
.home-panel-section .split-heading > p,
.home-panel-section .center-heading > p {
  color: rgba(233, 241, 252, 0.84);
}

.advisor-action-panel {
  display: grid;
  gap: 18px;
  width: min(820px, 100%);
  margin: 0 auto;
  padding: 18px 18px 20px;
  border: 1px solid rgba(185, 210, 242, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
}

.advisor-prompt {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(158, 183, 210, 0.34);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 600;
}

.advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.proof-grid,
.showcase-grid,
.directory-grid,
.help-cards,
.footer-cta-actions {
  display: grid;
  gap: 18px;
}

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

.proof-card {
  padding: 24px;
}

.proof-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.06rem;
}

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

.proof-strip div {
  padding: 18px 20px;
  border: 1px solid var(--panel-card-border);
  background: var(--panel-card-bg);
  border-radius: 22px;
  box-shadow: var(--panel-card-shadow);
}

.proof-strip strong {
  display: block;
  margin-bottom: 6px;
  color: var(--primary);
  font-family: "Plus Jakarta Sans", sans-serif;
}

.proof-strip span {
  color: var(--muted);
  line-height: 1.7;
}

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

.journey-step {
  display: grid;
  gap: 16px;
  padding: 22px 20px;
}

.journey-count {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--panel-top), var(--panel-mid));
  color: #ffffff;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
}

.journey-step h3 {
  margin: 0 0 8px;
  font-size: 1.04rem;
}

.journey-step p {
  margin: 0;
  font-size: 0.92rem;
}

.spotlight-section {
  padding-inline: 34px;
}

.light-heading h2,
.light-heading .section-lead {
  color: #ffffff;
}

.light-heading .section-lead {
  color: rgba(235, 242, 252, 0.86);
}

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

.showcase-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  align-content: start;
}

.showcase-card p {
  margin: 0;
}

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

.directory-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
}

.directory-head {
  display: grid;
  gap: 8px;
}

.directory-head h3 {
  margin: 0;
  font-size: 1.12rem;
}

.directory-links {
  display: grid;
  gap: 10px;
}

.directory-links a {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid var(--panel-card-border);
  border-radius: 16px;
  background: #f8fbff;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.directory-links a:hover {
  transform: translateY(-1px);
  border-color: #bfd0e5;
  background: #ffffff;
}

.directory-links a span {
  font-size: 0.88rem;
  font-weight: 500;
}

.help-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 24px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.help-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.help-copy p {
  color: rgba(233, 241, 252, 0.84);
  line-height: 1.75;
}

.help-actions {
  justify-content: flex-start;
}

.help-actions .secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.help-actions .secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
}

.help-actions .primary {
  background: #ffffff;
  color: var(--primary);
}

.help-actions .primary:hover {
  background: #edf4ff;
}

.help-cards {
  grid-template-columns: 1fr;
  align-content: start;
}

.help-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.help-card strong {
  font-size: 1rem;
}

.media-section .section-heading h2,
.proof-section .section-heading h2,
.path-section .section-heading h2,
.directory-section .section-heading h2,
.testimonials .section-heading h2 {
  max-width: 13ch;
}

.video-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
}

.video-link-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.video-link-card:hover {
  transform: translateY(-2px);
  border-color: #bfd0e5;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(14, 37, 70, 0.1);
}

.video-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #d9e4f0;
}

.video-link-body {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.video-link-tag {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-link-body strong {
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
}

.video-link-body small {
  color: var(--muted);
  font-size: 0.88rem;
}

.final-cta-section {
  padding-bottom: 28px;
}

.footer-cta {
  display: grid;
  gap: 22px;
  padding: 40px 34px;
  border: 1px solid var(--panel-border);
  background:
    radial-gradient(circle at top left, var(--panel-glow-1), transparent 34%),
    radial-gradient(circle at bottom right, var(--panel-glow-2), transparent 36%),
    linear-gradient(180deg, var(--panel-top) 0%, var(--panel-mid) 46%, var(--panel-bottom) 100%);
  box-shadow: var(--panel-shadow);
}

.footer-cta-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.15rem);
}

.footer-cta-copy p {
  max-width: 64ch;
  color: rgba(233, 241, 252, 0.84);
  line-height: 1.75;
}

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

.footer-cta-action {
  display: grid;
  gap: 8px;
  padding: 22px;
  text-decoration: none;
}

.footer-cta-action strong {
  font-size: 1rem;
}

.home-footer {
  padding-top: 12px;
}

.motion-element {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
  transition-delay: var(--delay, 0ms);
}

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

.pwa-install-card {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: grid;
  gap: 18px;
  width: min(420px, calc(100vw - 24px));
  padding: 20px;
  border: 1px solid rgba(132, 163, 198, 0.34);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(7, 15, 25, 0.96), rgba(12, 24, 38, 0.98));
  box-shadow:
    0 20px 48px rgba(3, 9, 16, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #f4f8ff;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.pwa-install-card.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.pwa-install-copy {
  display: grid;
  gap: 8px;
}

.pwa-install-eyebrow {
  margin: 0;
  color: #8fb5e0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pwa-install-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.3rem;
  line-height: 1.2;
  color: #ffffff;
}

.pwa-install-body,
.pwa-install-helper {
  margin: 0;
  color: rgba(235, 242, 252, 0.88);
  line-height: 1.65;
}

.pwa-install-helper {
  color: rgba(194, 212, 236, 0.78);
  font-size: 0.92rem;
}

.pwa-install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pwa-install-guide {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.pwa-install-guide.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.pwa-install-guide__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 9, 16, 0.6);
  backdrop-filter: blur(6px);
}

.pwa-install-guide__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(640px, 100%);
  padding: 28px;
  border: 1px solid rgba(132, 163, 198, 0.28);
  border-radius: 26px;
  background:
    linear-gradient(160deg, rgba(7, 15, 25, 0.98), rgba(12, 24, 38, 0.99));
  box-shadow:
    0 24px 64px rgba(3, 9, 16, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #eef5ff;
}

.pwa-install-guide__title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.18;
}

.pwa-install-guide__body,
.pwa-install-guide__helper {
  margin: 0;
  color: rgba(225, 236, 249, 0.88);
  line-height: 1.7;
}

.pwa-install-guide__helper {
  color: rgba(179, 201, 228, 0.82);
  font-size: 0.94rem;
}

.pwa-install-guide__steps {
  display: grid;
  gap: 12px;
  margin: 4px 0;
  padding-left: 22px;
  color: #ffffff;
}

.pwa-install-guide__steps li {
  padding-left: 4px;
  line-height: 1.7;
}

.pwa-install-guide__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-home-shortcut {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 88;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid rgba(39, 68, 103, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 32px rgba(30, 24, 18, 0.14);
  color: var(--primary);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.site-home-shortcut:hover {
  transform: translateY(-1px);
  border-color: #b8c8da;
  background: #ffffff;
}

@media (max-width: 1080px) {
  .hero-content,
  .calculator-card,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .home-hero-content,
  .help-split,
  .footer-cta-actions {
    grid-template-columns: 1fr;
  }

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

  .showcase-grid,
  .directory-grid,
  .proof-grid,
  .video-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .resource-grid,
  .about-card {
    grid-template-columns: 1fr;
  }

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

  .brief-layout,
  .brief-toolbar {
    grid-template-columns: 1fr;
  }

  .brief-sidebar {
    position: static;
  }
}

@media (max-width: 900px) {
  .split-heading,
  .intro-grid,
  .pricing-grid,
  .service-grid,
  .store-grid,
  .resource-grid,
  .media-layout,
  .tool-link-grid,
  .tool-catalog,
  .brief-helper-grid,
  .brief-grid-2,
  .brief-grid-3,
  .wants-needs-layout,
  .brief-highlight-row,
  .checkbox-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .hero-shortcuts,
  .showcase-grid,
  .directory-grid,
  .proof-grid,
  .proof-strip,
  .video-list,
  .footer-cta-actions {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary);
    font: inherit;
    font-weight: 700;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 10px;
  }

  .nav-links .install-app-trigger-nav {
    width: 100%;
    justify-content: center;
  }

  .nav-links.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1120px);
  }

  .home-shell {
    width: min(100% - 16px, 1240px);
  }

  .hero-content {
    padding-top: 36px;
  }

  .home-hero-content {
    padding: 30px 18px 22px;
  }

  .home-hero-panel,
  .advisor-band,
  .home-panel-section,
  .spotlight-section,
  .help-split,
  .footer-cta {
    border-radius: 24px;
  }

  .home-panel-section,
  .advisor-band,
  .footer-cta {
    padding: 30px 18px 22px;
  }

  .spotlight-section {
    padding-inline: 18px;
  }

  .hero-copy h1,
  .section-heading h2,
  .contact-card h2 {
    max-width: none;
  }

  .hero-card,
  .intro-grid article,
  .brief-card,
  .calculator-card,
  .tool-link-card,
  .hero-tool-card,
  .proof-card,
  .journey-step,
  .showcase-card,
  .directory-panel,
  .help-card,
  .footer-cta-action,
  .tool-catalog article,
  .pricing-card,
  .service-card,
  .store-card,
  .testimonial-card,
  .newsletter-card,
  .video-card,
  .contact-card {
    padding: 22px;
  }

  .brief-grid,
  .testimonial-grid,
  .card-grid,
  .checkbox-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .hero-shortcuts,
  .video-list {
    grid-template-columns: 1fr;
  }

  .span-2 {
    grid-column: auto;
  }

  .brief-section-top {
    grid-template-columns: 1fr;
  }

  .brief-nav-pills {
    justify-content: flex-start;
  }

  .footer {
    flex-direction: column;
  }

  .pwa-install-card {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
  }

  .site-home-shortcut {
    left: 12px;
    bottom: 12px;
  }

  .pwa-install-actions {
    flex-direction: column;
  }

  .pwa-install-guide__panel {
    padding: 22px;
  }

  .pwa-install-guide__actions {
    flex-direction: column;
  }
}

@media print {
  .nav,
  .hero-actions,
  .brief-highlight-row,
  .brief-toolbar-section,
  .brief-side-card,
  .brief-actions {
    display: none;
  }

  .site-shell {
    width: 100%;
    padding: 0;
  }

  body {
    background: #ffffff;
  }

  .summary-card,
  .brief-section {
    box-shadow: none;
  }
}

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

  .motion-element {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.home-refresh-body {
  background:
    linear-gradient(to right, rgba(36, 31, 26, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 31, 26, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 40px 40px, 40px 40px, auto;
}

.home-refresh-shell {
  width: min(1220px, calc(100% - 32px));
  padding-top: 24px;
  padding-bottom: 56px;
}

.home-refresh-header {
  padding-bottom: 20px;
}

.home-refresh-nav {
  max-width: 1040px;
  margin: 0 auto;
  border-color: rgba(226, 232, 240, 0.95);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 38px rgba(36, 31, 26, 0.08);
}

.home-refresh-nav .brand-mark {
  background: #241f1a;
  color: #f59e0b;
}

.home-refresh-nav .brand-text strong {
  color: #171310;
}

.home-refresh-nav .brand-text small,
.home-refresh-nav .nav-links a {
  color: #64748b;
}

.home-refresh-nav .nav-links a:hover,
.home-refresh-nav .nav-links .nav-cta,
.home-refresh-nav .nav-links .refresh-page-button {
  color: #241f1a;
}

.home-refresh-nav .nav-cta,
.home-refresh-nav .refresh-page-button {
  border-color: rgba(36, 31, 26, 0.08);
  background: #fdf8f0;
}

.home-refresh-hero {
  max-width: 1100px;
  margin: 48px auto 0;
  padding: 36px 20px 0;
}

.home-refresh-copy {
  max-width: 860px;
  text-align: center;
}

.home-refresh-copy .eyebrow {
  color: #f59e0b;
}

.home-refresh-copy h1 {
  max-width: 12ch;
  margin-inline: auto;
  color: #171310;
  font-size: clamp(3rem, 7vw, 5.7rem);
  letter-spacing: -0.05em;
}

.home-refresh-copy .hero-text {
  max-width: 52ch;
  color: #64748b;
  font-size: 1.08rem;
}

.home-refresh-actions .primary {
  background: #241f1a;
}

.home-refresh-actions .primary:hover {
  background: #171310;
}

.home-refresh-actions .secondary {
  border-color: #dbe2ea;
  background: #ffffff;
  color: #241f1a;
}

.home-refresh-stats {
  max-width: 720px;
  gap: 16px;
  margin-top: 34px;
}

.home-refresh-stats article {
  padding: 24px 20px;
  border-color: rgba(219, 226, 234, 0.9);
  background: rgba(248, 250, 252, 0.9);
  box-shadow: 0 8px 24px rgba(36, 31, 26, 0.05);
}

.home-refresh-stats strong {
  color: #171310;
}

.home-refresh-main {
  display: grid;
  gap: 10px;
}

.home-refresh-process,
.home-refresh-section {
  padding-top: 54px;
  padding-bottom: 26px;
}

.home-refresh-section {
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.home-refresh-process .section-heading h2,
.home-refresh-section .section-heading h2 {
  max-width: 13ch;
  color: #171310;
}

.home-refresh-process .section-lead,
.home-refresh-section .section-lead {
  color: #64748b;
}

.home-refresh-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.refresh-step-card,
.home-refresh-tool-card {
  border: 1px solid #e8e1d5;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(36, 31, 26, 0.06);
}

.refresh-step-card {
  padding: 24px;
}

.refresh-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 54px;
  padding: 0 14px;
  border-radius: 18px;
  background: #fdf8f0;
  color: #241f1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.refresh-step-card h3,
.home-refresh-tool-card h3 {
  margin: 20px 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.15;
  color: #171310;
}

.refresh-step-card p,
.home-refresh-tool-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.75;
}

.home-refresh-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-refresh-tool-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.home-refresh-tool-card:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 22px 42px rgba(36, 31, 26, 0.09);
}

.home-refresh-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-refresh-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: #fdf8f0;
  color: #241f1a;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.home-refresh-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.premium-badge {
  background: rgba(245, 158, 11, 0.1);
  color: #b45309;
}

.coming-soon-badge {
  background: rgba(36, 31, 26, 0.08);
  color: #475569;
}

.free-badge,
.neutral-badge {
  background: #fdf8f0;
  color: #334155;
}

.featured-suite-card {
  background: linear-gradient(180deg, #241f1a 0%, #111f39 100%);
  border-color: transparent;
}

.featured-suite-card .home-refresh-card-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fdf8f0;
}

.featured-suite-card .home-refresh-badge {
  background: rgba(245, 158, 11, 0.14);
  color: #fbbf24;
}

.featured-suite-card h3,
.featured-suite-card p,
.featured-suite-card .card-link {
  color: #fdf8f0;
}

.featured-suite-card p {
  color: rgba(248, 250, 252, 0.76);
}

.home-refresh-tool-card .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.home-refresh-media .video-list {
  display: grid;
  gap: 18px;
}

.home-refresh-media .video-card {
  border-radius: 28px;
}

@media (max-width: 1100px) {
  .home-refresh-card-grid,
  .home-refresh-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-refresh-shell {
    width: min(100%, calc(100% - 20px));
    padding-top: 16px;
  }

  .home-refresh-hero {
    margin-top: 26px;
    padding-inline: 4px;
  }

  .home-refresh-copy h1 {
    max-width: 11ch;
  }

  .home-refresh-stats,
  .home-refresh-steps,
  .home-refresh-card-grid {
    grid-template-columns: 1fr;
  }

  .home-refresh-process .split-heading,
  .home-refresh-section .split-heading {
    grid-template-columns: 1fr;
  }

  .home-refresh-tool-card {
    padding: 22px 20px;
  }
}

.pwa-install-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.pwa-install-brand-text {
  display: flex;
  flex-direction: column;
}

.pwa-install-brand-text strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
  color: #171310;
}

.pwa-install-brand-text small {
  margin-top: 2px;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 600;
}

.pwa-install-card {
  width: min(430px, calc(100vw - 24px));
  padding: 22px;
  border: 1px solid #e8e1d5;
  border-radius: 28px;
  background:
    linear-gradient(to right, rgba(36, 31, 26, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 31, 26, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: 0 22px 50px rgba(36, 31, 26, 0.14);
  color: #241f1a;
}

.pwa-install-copy {
  gap: 10px;
}

.pwa-install-eyebrow {
  color: #f59e0b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.pwa-install-title {
  color: #171310;
  font-size: 1.45rem;
}

.pwa-install-body,
.pwa-install-helper {
  color: #64748b;
}

.pwa-install-helper {
  font-size: 0.9rem;
}

.pwa-install-actions {
  gap: 12px;
}

.pwa-install-card .button.primary,
.pwa-install-guide__panel .button.primary {
  background: #241f1a;
  color: #ffffff;
}

.pwa-install-card .button.primary:hover,
.pwa-install-guide__panel .button.primary:hover {
  background: #171310;
}

.pwa-install-card .button.secondary,
.pwa-install-guide__panel .button.secondary {
  border-color: #dbe2ea;
  background: #ffffff;
  color: #241f1a;
}

.pwa-install-guide__panel {
  gap: 16px;
  width: min(680px, 100%);
  padding: 30px;
  border: 1px solid #e8e1d5;
  border-radius: 30px;
  background:
    linear-gradient(to right, rgba(36, 31, 26, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(36, 31, 26, 0.03) 1px, transparent 1px),
    #ffffff;
  background-size: 24px 24px, 24px 24px, auto;
  box-shadow: 0 28px 70px rgba(36, 31, 26, 0.22);
  color: #171310;
}

.pwa-install-guide__backdrop {
  background: rgba(36, 31, 26, 0.44);
  backdrop-filter: blur(10px);
}

.pwa-install-guide__title {
  color: #171310;
}

.pwa-install-guide__body,
.pwa-install-guide__helper {
  color: #64748b;
}

.pwa-install-guide__steps {
  gap: 14px;
  color: #241f1a;
}

.pwa-install-guide__steps li {
  padding: 14px 16px;
  border: 1px solid #e8e1d5;
  border-radius: 18px;
  background: #fdf8f0;
}

@media (max-width: 760px) {
  .pwa-install-card {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 18px;
    border-radius: 24px;
  }

  .pwa-install-guide__panel {
    padding: 22px;
    border-radius: 24px;
  }
}
