:root {
  --ink: #17202a;
  --muted: #5f6b75;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dfe3e5;
  --magenta: #c000c8;
  --magenta-dark: #88009e;
  --blue: #1048f0;
  --blue-dark: #082fbc;
  --cyan: #19b8ff;
  --teal: #1048f0;
  --teal-dark: #082fbc;
  --coral: #c000c8;
  --gold: #19b8ff;
  --shadow: 0 24px 70px rgba(16, 72, 240, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.9);
  border-bottom: 1px solid rgba(223, 227, 229, 0.75);
  backdrop-filter: blur(16px);
}

.site-header.compact {
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand img {
  width: min(246px, 50vw);
  height: auto;
  max-height: 62px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover {
  color: var(--magenta);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100svh - 126px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #101820;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(13, 18, 38, 0.96) 0%, rgba(13, 18, 38, 0.78) 45%, rgba(16, 72, 240, 0.18) 100%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  width: min(660px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 88px);
  padding: clamp(42px, 7vw, 72px) 0 clamp(52px, 8vw, 82px);
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 650px;
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5.5vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6;
}

.hero-actions,
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;
  font-weight: 800;
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: white;
  background: linear-gradient(90deg, var(--magenta) 0%, var(--blue) 100%);
  box-shadow: 0 14px 30px rgba(192, 0, 200, 0.26);
}

.button.secondary {
  color: var(--ink);
  background: white;
  border-color: var(--line);
}

.hero .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 36px auto 0;
}

.proof-strip div {
  padding: 18px;
  border: 1px solid rgba(23, 32, 42, 0.14);
  border-radius: 8px;
  background: #fbfaf7;
}

.proof-strip dt {
  font-size: 1.3rem;
  font-weight: 900;
}

.proof-strip dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.featured-outreach {
  display: flex;
  justify-content: center;
  padding: 22px clamp(18px, 5vw, 64px);
  background: #f7f8fb;
  border-bottom: 1px solid var(--line);
}

.outreach-button-cta {
  display: inline-grid;
  grid-template-columns: 58px auto auto;
  gap: 14px;
  align-items: center;
  max-width: min(100%, 520px);
  padding: 10px 12px 10px 10px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid rgba(16, 72, 240, 0.16);
  border-radius: 999px;
  background: white;
  box-shadow: 0 12px 28px rgba(23, 32, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outreach-button-cta:hover,
.outreach-button-cta:focus-visible {
  border-color: rgba(16, 72, 240, 0.28);
  box-shadow: 0 16px 34px rgba(23, 32, 42, 0.12);
  transform: translateY(-2px);
}

.outreach-button-cta img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 7px 11px rgba(23, 32, 42, 0.12));
}

.outreach-button-cta span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.outreach-button-cta strong {
  font-size: 1rem;
  line-height: 1.15;
}

.outreach-button-cta small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}

.outreach-button-cta b {
  padding: 10px 18px;
  color: white;
  font-size: 0.9rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
  transition: transform 180ms ease;
}

.outreach-button-cta:hover b,
.outreach-button-cta:focus-visible b {
  transform: translateX(2px);
}

.clients-section {
  padding: clamp(34px, 5vw, 62px) clamp(18px, 5vw, 64px);
  background: white;
  border-bottom: 1px solid var(--line);
}

.clients-copy {
  max-width: 820px;
  margin: 0 auto 16px;
  text-align: center;
}

.clients-copy h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.clients-copy p:last-child {
  color: var(--muted);
  line-height: 1.65;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, minmax(96px, 1fr));
  gap: 8px;
  max-width: 1080px;
  margin: 0 auto;
}

.client-logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 58px;
  padding: 9px 10px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  font-weight: 900;
  text-align: center;
}

.client-logo span {
  display: block;
  color: var(--ink);
  font-size: clamp(0.84rem, 1.05vw, 1.05rem);
  line-height: 1;
}

.client-logo small {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-speed span {
  font-family: Georgia, serif;
}

.logo-tomi span {
  color: var(--blue);
}

.logo-retainsimply span {
  color: var(--magenta);
}

.logo-gundrew span {
  color: #0f171f;
}

.client-logo img {
  max-width: 78%;
  max-height: 54px;
  object-fit: contain;
  filter: grayscale(1) brightness(1.8);
  opacity: 0.9;
}

.case-studies {
  background: #eef4f1;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.case-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.07);
}

.case-card h3 {
  font-size: 1.5rem;
}

.case-card p {
  color: var(--muted);
  line-height: 1.65;
}

.case-card dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.case-card dl div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.case-card dt {
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
}

.case-card dd {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.case-source {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 800;
}

.section,
.section-band {
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 64px);
}

.section-band {
  background: white;
  border-bottom: 1px solid var(--line);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: end;
  max-width: 1180px;
  margin: 0 auto;
}

.visual-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.72fr);
}

.intro-media {
  grid-row: span 2;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-media img,
.image-heading img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.section-grid p:last-child {
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.75;
}

.section-heading {
  max-width: 890px;
  margin: 0 auto 28px;
  text-align: center;
}

.image-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  max-width: 1180px;
  text-align: left;
}

.image-heading img {
  overflow: hidden;
  max-height: 360px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.section-heading h2 {
  margin-bottom: 0;
}

.service-grid,
.package-grid {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

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

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

.service-card,
.package-card,
.login-panel,
.portal-preview {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.07);
}

.service-card {
  min-height: 0;
  padding: 22px;
}

.service-card.linked-service {
  color: inherit;
  display: block;
  text-decoration: none;
}

.service-card.linked-service:hover,
.service-card.linked-service:focus-visible {
  border-color: rgba(27, 47, 114, 0.35);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.service-card p,
.package-card p,
.timeline p,
.booking-copy p,
.login-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--teal);
  border: 1px solid rgba(16, 72, 240, 0.18);
  border-radius: 8px;
  background: #f4f7ff;
}

.icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.packages-section {
  background: #eef4f1;
}

.package-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.package-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.package-card.featured {
  border-color: var(--magenta);
  box-shadow: var(--shadow);
}

.crm-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background: linear-gradient(135deg, #ffffff, #f4f7ff);
}

.crm-panel {
  max-width: 690px;
}

.crm-panel p {
  color: var(--muted);
  line-height: 1.65;
}

.crm-panel ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 28px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.crm-screen {
  min-height: 420px;
  padding: 28px;
  border: 1px solid rgba(16, 72, 240, 0.18);
  border-radius: 8px;
  background: #0d1226;
  color: white;
  box-shadow: var(--shadow);
}

.screen-top {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
}

.screen-top span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--magenta);
}

.screen-top span:nth-child(2) {
  background: var(--blue);
}

.screen-top span:nth-child(3) {
  background: var(--cyan);
}

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

.screen-grid div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.screen-grid small {
  display: block;
  min-height: 34px;
  color: rgba(255, 255, 255, 0.68);
}

.screen-grid strong {
  display: block;
  font-size: 1.9rem;
}

.pipeline-bars {
  display: grid;
  gap: 18px;
  margin-top: 44px;
}

.pipeline-bars span {
  display: block;
  width: var(--w);
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--magenta), var(--blue), var(--cyan));
}

.package-label {
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.78rem;
}

.price {
  color: var(--ink) !important;
  font-size: 2rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 9px;
  margin: 8px 0 20px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.todo-heading {
  margin: 18px 0 0;
  color: var(--ink) !important;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-card .button {
  margin-top: 8px;
}

.process {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
  margin: 0 auto;
}

.timeline div {
  padding: 0 22px 22px;
  border-left: 3px solid var(--gold);
}

.timeline span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  place-items: center;
  color: white;
  background: var(--blue);
  border-radius: 8px;
  font-weight: 900;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 64px);
  color: white;
  background: linear-gradient(135deg, #0d1226, #151236 58%, #071f6b);
}

.booking-copy {
  max-width: 570px;
  align-self: center;
}

.booking-copy p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-options a {
  color: white;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.booking-form,
.login-form {
  display: grid;
  gap: 16px;
}

.booking-form {
  padding: clamp(22px, 4vw, 38px);
  color: var(--ink);
  background: white;
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf9;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 38px clamp(18px, 5vw, 64px);
  background: #0f171f;
  color: white;
}

.site-footer p {
  max-width: 460px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.login-page {
  min-height: 100vh;
  background: #eef4f1;
}

.portal-page {
  background: #fbfaf7;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.55fr);
  gap: clamp(24px, 6vw, 78px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(251, 250, 247, 0.96), rgba(251, 250, 247, 0.86)),
    url("startup-growth-workshop.png") center / cover;
}

.portal-hero > div {
  max-width: 790px;
}

.portal-hero h1 {
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.2rem);
}

.portal-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.portal-access-card,
.portal-service-card,
.portal-register-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.07);
}

.portal-access-card {
  padding: clamp(22px, 3vw, 34px);
}

.portal-access-card h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.portal-section,
.portal-register {
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 64px);
}

.portal-service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.portal-service-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 24px;
}

.portal-service-card h3 {
  font-size: 1.45rem;
}

.portal-service-card p {
  color: var(--muted);
  line-height: 1.62;
}

.portal-service-card strong {
  display: block;
  margin: 12px 0 18px;
  color: var(--ink);
  font-size: 1.25rem;
}

.featured-service {
  grid-column: span 1;
  color: white;
  background: linear-gradient(135deg, #0d1226, #151236 58%, #071f6b);
}

.featured-service h3,
.featured-service strong {
  color: white;
}

.featured-service p {
  color: rgba(255, 255, 255, 0.74);
}

.featured-service .button.secondary {
  color: white;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(255, 255, 255, 0.28);
}

.portal-register {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
  background: #eef4f1;
}

.portal-register > div {
  max-width: 580px;
}

.portal-register > div p {
  color: var(--muted);
  line-height: 1.65;
}

.portal-register-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
}

.checkbox-group {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf9;
}

.checkbox-group legend {
  padding: 0 8px;
  color: var(--ink);
  font-weight: 900;
}

.checkbox-group label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.checkbox-group input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.intake-result {
  display: grid;
  gap: 24px;
  padding: clamp(52px, 7vw, 92px) clamp(18px, 5vw, 64px);
  background: white;
  border-top: 1px solid var(--line);
}

.intake-result[hidden] {
  display: none;
}

.intake-result > div:first-child {
  max-width: 760px;
}

.intake-result p {
  color: var(--muted);
  line-height: 1.65;
}

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

.result-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.result-grid h3 {
  font-size: 1.05rem;
}

.login-shell {
  display: grid;
  grid-template-columns: minmax(320px, 480px) minmax(320px, 560px);
  gap: clamp(24px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(22px, 4vw, 48px);
}

.login-panel,
.portal-preview {
  padding: clamp(22px, 3vw, 34px);
}

.login-panel h1 {
  color: var(--ink);
  margin-bottom: 16px;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  line-height: 0.96;
}

.login-panel p {
  line-height: 1.5;
}

.login-form {
  gap: 12px;
}

.portal-preview {
  display: grid;
  gap: 18px;
  background: #0d1226;
  color: white;
  box-shadow: var(--shadow);
}

.status-card,
.portal-list div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.status-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  background: var(--magenta);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(192, 0, 200, 0.16);
}

.status-card p,
.portal-list p {
  color: rgba(255, 255, 255, 0.68);
}

.status-card strong {
  font-size: 2.1rem;
}

.portal-list {
  display: grid;
  gap: 12px;
}

.portal-list div {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 14px;
  align-items: center;
}

.portal-list span {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border-radius: 999px;
}

.portal-list p {
  margin: 0;
}

.portal-list strong {
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .service-grid,
  .package-grid,
  .case-grid,
  .portal-service-grid,
  .result-grid,
  .timeline,
  .section-grid,
  .image-heading,
  .clients-section,
  .crm-section,
  .booking-section,
  .portal-hero,
  .portal-register,
  .login-shell {
    grid-template-columns: 1fr;
  }

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

  .logo-wall {
    grid-template-columns: repeat(4, minmax(90px, 1fr));
  }

  .package-card.featured {
    transform: none;
  }

  .featured-service {
    grid-column: span 1;
  }

  .booking-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 68px;
  }

  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open,
  .site-nav.always-visible {
    display: flex;
  }

  .site-nav.always-visible {
    position: static;
    flex-direction: row;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(16, 24, 32, 0.94), rgba(16, 24, 32, 0.74));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding: 68px 0 74px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
  }

  .proof-strip,
  .service-grid {
    grid-template-columns: 1fr;
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 190px;
  }

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

  .featured-outreach {
    padding: 16px 18px;
  }

  .outreach-button-cta {
    grid-template-columns: 48px 1fr auto;
    gap: 10px;
    width: 100%;
    padding: 8px 9px 8px 8px;
  }

  .outreach-button-cta img {
    width: 48px;
    height: 48px;
  }

  .outreach-button-cta b {
    padding: 9px 14px;
  }

  .login-shell {
    padding: 18px;
  }

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

  .portal-list div {
    grid-template-columns: 12px 1fr;
  }

  .portal-list strong {
    grid-column: 2;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(25, 184, 255, 0.72);
  outline-offset: 3px;
}

.campaign-page {
  background: #fbfaf7;
}

.noise-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(42px, 7vw, 82px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(13, 18, 38, 0.96), rgba(7, 31, 107, 0.92)),
    radial-gradient(circle at 78% 18%, rgba(192, 0, 200, 0.34), transparent 28%);
  color: white;
}

.noise-hero-copy {
  max-width: 720px;
}

.noise-hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
}

.noise-hero-copy p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.68;
}

.noise-signal-card {
  position: relative;
  display: grid;
  gap: 12px;
  width: min(430px, 100%);
  justify-self: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.noise-signal-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(25, 184, 255, 0.24);
  border-radius: 8px;
  pointer-events: none;
}

.noise-signal-card span,
.noise-signal-card strong {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.noise-signal-card span::after {
  content: "Selected";
  color: rgba(25, 184, 255, 0.82);
  font-size: 0.72rem;
}

.noise-signal-card strong {
  color: white;
  border-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  letter-spacing: 0;
  text-transform: none;
}

.qr-whisper {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 8px 12px;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.qr-whisper[hidden] {
  display: none;
}

.noise-section {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 5vw, 64px);
}

.recognition,
.fit-section,
.strategy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 6vw, 76px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.recognition p,
.fit-section p,
.strategy-copy p,
.center-copy {
  color: var(--muted);
  font-size: 1.13rem;
  line-height: 1.72;
}

.problem-section {
  background: white;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 1040px;
  margin: 0 auto 24px;
}

.channel-grid div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.channel-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.channel-grid strong {
  color: var(--blue);
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1;
}

.channel-grid div:nth-child(odd) strong {
  color: var(--magenta);
}

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

.strategy-section {
  background: #eef4f1;
}

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

.strategy-list span {
  min-height: 64px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.35;
}

.roi-section {
  padding: clamp(44px, 6vw, 70px) clamp(18px, 5vw, 64px);
  background: #0d1226;
  color: white;
}

.roi-section blockquote {
  max-width: 880px;
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 40px);
  border-left: 4px solid var(--magenta);
}

.roi-section p {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 4vw, 3.4rem);
  line-height: 1.08;
}

.roi-section cite {
  display: block;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-weight: 800;
}

.campaign-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 64px);
  background: white;
}

.campaign-form-copy {
  max-width: 560px;
}

.campaign-form-copy p {
  color: var(--muted);
  line-height: 1.68;
}

.campaign-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.07);
}

.form-grid {
  display: grid;
  gap: 14px;
}

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

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

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

.checkbox-group.compact legend {
  grid-column: 1 / -1;
}

.checkbox-group small {
  color: var(--muted);
  font-weight: 700;
}

.campaign-success {
  padding: 18px;
  border: 1px solid rgba(16, 72, 240, 0.22);
  border-radius: 8px;
  background: #f4f7ff;
}

.campaign-success[hidden] {
  display: none;
}

.campaign-success h3 {
  margin-bottom: 6px;
}

.campaign-success p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 980px) {
  .noise-hero,
  .recognition,
  .fit-section,
  .strategy-section,
  .campaign-form-section {
    grid-template-columns: 1fr;
  }

  .noise-signal-card {
    justify-self: stretch;
  }

  .channel-grid,
  .strategy-list,
  .form-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .channel-grid,
  .strategy-list,
  .form-grid.two,
  .form-grid.three,
  .checkbox-group.compact {
    grid-template-columns: 1fr;
  }
}

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

.intake-page {
  background: #eef4f1;
}

.intake-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.46fr);
  gap: clamp(26px, 6vw, 78px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) clamp(18px, 5vw, 64px);
  background: white;
  border-bottom: 1px solid var(--line);
}

.intake-hero h1 {
  color: var(--ink);
}

.intake-hero p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.68;
}

.intake-status-card {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
  box-shadow: 0 14px 40px rgba(23, 32, 42, 0.07);
}

.intake-status-card p {
  margin: 0;
  font-size: 0.94rem;
}

.progress-wrap {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.progress-wrap div {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe3e5;
}

.progress-wrap i {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--magenta), var(--blue));
}

.strategy-intake-form {
  display: grid;
  gap: 16px;
  padding: clamp(30px, 5vw, 64px) clamp(18px, 5vw, 64px);
}

.intake-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 10px 26px rgba(23, 32, 42, 0.05);
}

.intake-panel summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--ink);
  font-weight: 900;
  font-size: 1.08rem;
}

.intake-panel[open] summary {
  border-bottom: 1px solid var(--line);
}

.intake-grid,
.upload-grid {
  display: grid;
  gap: 16px;
  padding: 20px 22px 24px;
}

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

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

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

.inline-check {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  padding: 0 22px 24px;
  color: var(--muted);
}

.inline-check input {
  width: 18px;
  min-height: 18px;
}

.secure-note {
  margin: 18px 22px 0;
  padding: 16px;
  border: 1px solid rgba(16, 72, 240, 0.18);
  border-radius: 8px;
  background: #f4f7ff;
  color: var(--muted);
  line-height: 1.55;
}

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

.upload-grid label {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfaf7;
}

.internal-only {
  padding: 16px;
  border: 1px dashed rgba(192, 0, 200, 0.42);
  border-radius: 8px;
  background: #fff7ff;
}

.intake-actions {
  position: sticky;
  bottom: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(14px);
}

.intake-summary {
  display: grid;
  gap: 18px;
  padding: clamp(36px, 6vw, 72px) clamp(18px, 5vw, 64px);
  background: white;
  border-top: 1px solid var(--line);
}

.intake-summary[hidden] {
  display: none;
}

.intake-summary pre {
  overflow: auto;
  max-height: 520px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0d1226;
  color: white;
  white-space: pre-wrap;
}

@media (max-width: 980px) {
  .intake-hero,
  .intake-grid.two,
  .intake-grid.three,
  .upload-grid {
    grid-template-columns: 1fr;
  }

  .intake-grid .span-two {
    grid-column: span 1;
  }
}

@media print {
  .site-header,
  .intake-actions,
  .intake-status-card,
  .campaign-form-section,
  .noise-signal-card {
    display: none !important;
  }

  body {
    background: white;
  }

  .intake-panel {
    break-inside: avoid;
    box-shadow: none;
  }
}
