:root {
  color-scheme: dark;
  --bg: #050608;
  --panel: #101217;
  --panel-strong: #151922;
  --border: #242833;
  --border-bright: #334155;
  --text: #f4f7fa;
  --muted: #9ca3af;
  --muted-strong: #cbd5e1;
  --accent: #38bdf8;
  --accent-strong: #60a5fa;
  --trust: #d6b25e;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --max: 1180px;
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.05), transparent 28rem),
    linear-gradient(135deg, rgba(214, 178, 94, 0.035), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

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

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

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

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 1px solid rgba(36, 40, 51, 0.76);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, min-height 160ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  border-bottom-color: rgba(36, 40, 51, 1);
  background: rgba(5, 6, 8, 0.94);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

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

.brand-logo {
  width: clamp(128px, 14vw, 168px);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand-tagline {
  max-width: 150px;
  padding-left: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.site-nav a:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.site-footer a:focus-visible,
.nav-toggle:focus-visible,
.nav-backdrop:focus-visible,
.tally-form-card iframe:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
}

.site-nav .nav-cta {
  margin-left: 8px;
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(56, 189, 248, 0.1);
  color: var(--text);
}

.nav-toggle {
  display: none;
}

.nav-backdrop {
  display: none;
}

.section-band,
.section-block {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  min-height: min(calc(100svh - var(--header-h)), 760px);
  padding: clamp(42px, 6vw, 76px) 0 clamp(38px, 6vw, 70px);
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.panel-kicker,
.card-number,
.timeline span {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-wrap: balance;
}

h1 {
  margin-top: 16px;
  max-width: 880px;
  font-size: clamp(2.5rem, 4.2vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4.6vw, 4.4rem);
}

h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.6rem);
}

.hero-subhead {
  max-width: 680px;
  margin-top: 24px;
  color: #dbe5ef;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: var(--accent);
  color: #041018;
  box-shadow: 0 16px 42px rgba(56, 189, 248, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #7dd3fc;
}

.button.secondary {
  border-color: var(--border-bright);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.assistant-pointer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 700;
}

.assistant-pointer::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.72);
  content: "";
}

.trust-line {
  margin-top: 12px;
  max-width: 620px;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(16, 18, 23, 0.92), rgba(6, 8, 12, 0.98)),
    var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(56, 189, 248, 0.08), transparent),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 44px;
}

.assistant-intro,
.assistant-topics {
  position: relative;
}

.assistant-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.panel-title {
  max-width: 360px;
  margin-top: 10px;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.65rem, 3.3vw, 2.65rem);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.assistant-intro img {
  width: 74px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.assistant-topics {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.72);
  list-style: none;
}

.assistant-topic {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 52px;
}

.assistant-topic span {
  width: 28px;
  flex: 0 0 28px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.assistant-topic strong {
  color: var(--text);
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  text-align: left;
}

.assistant-note {
  margin-top: 16px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.section-block {
  padding: clamp(74px, 10vw, 130px) 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  max-width: 680px;
  color: var(--muted-strong);
  font-size: 1.02rem;
}

.section-heading.split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  gap: 30px;
  max-width: none;
  align-items: end;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 14px;
}

.service-card,
.timeline article,
.use-case-grid article {
  display: flex;
  flex-direction: column;
  align-content: start;
  gap: 12px;
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 18, 23, 0.78);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.service-card:hover,
.timeline article:hover,
.use-case-grid article:hover {
  border-color: rgba(56, 189, 248, 0.42);
  background: rgba(21, 25, 34, 0.9);
}

.timeline article:hover,
.use-case-grid article:hover {
  transform: translateY(-2px);
}

.service-card.large {
  grid-column: span 2;
  min-height: 330px;
  background:
    linear-gradient(160deg, rgba(56, 189, 248, 0.14), transparent 44%),
    rgba(16, 18, 23, 0.86);
}

.service-card.wide {
  grid-column: span 2;
  min-height: 330px;
  background:
    linear-gradient(145deg, rgba(214, 178, 94, 0.1), transparent 48%),
    rgba(16, 18, 23, 0.86);
}

.service-card h3,
.use-case-grid h3,
.timeline h3 {
  margin-top: 0;
}

.service-card p,
.use-case-grid p,
.timeline p {
  margin-top: 0;
  color: var(--muted-strong);
}

.service-card.large h3 {
  max-width: 390px;
  font-size: clamp(1.9rem, 4vw, 3.7rem);
}

.service-card.large p {
  max-width: 430px;
  font-size: 1.08rem;
}

.privacy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(56px, 8vw, 92px);
  border: 1px solid rgba(36, 40, 51, 0.9);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(16, 18, 23, 0.92), rgba(5, 6, 8, 0.96)),
    var(--panel);
}

.privacy-media {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 360px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(56, 189, 248, 0.12), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent),
    rgba(5, 6, 8, 0.62);
  overflow: hidden;
}

.privacy-media::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(56, 189, 248, 0.13);
  border-radius: 8px;
  content: "";
  pointer-events: none;
}

.privacy-model-card {
  position: relative;
  display: grid;
  gap: 18px;
  width: 100%;
  padding: clamp(18px, 4vw, 26px);
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: 8px;
  background: rgba(5, 6, 8, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.privacy-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.privacy-card-head img {
  width: 54px;
  height: auto;
  flex: 0 0 auto;
}

.privacy-card-head strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.05;
}

.status-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.privacy-map div {
  display: grid;
  gap: 6px;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.privacy-map span {
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.privacy-map strong {
  color: var(--trust);
  font-size: 1rem;
  text-transform: uppercase;
}

.privacy-model-note {
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.privacy-copy p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted-strong);
  font-size: 1.05rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--trust);
  content: "";
}

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

.proof-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 18px;
  align-items: start;
}

.founder-note {
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 18, 23, 0.82);
}

.founder-note img {
  width: 96px;
  height: auto;
  margin-bottom: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.founder-note h2 {
  margin-top: 10px;
  font-size: clamp(2rem, 4vw, 3.9rem);
}

.founder-note p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted-strong);
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 38px;
  margin-top: 26px;
  color: var(--accent);
  font-weight: 800;
}

.text-link:hover {
  color: #7dd3fc;
}

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

.capability-list span {
  display: flex;
  align-items: center;
  min-height: 92px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 18, 23, 0.72);
  color: var(--muted-strong);
  font-weight: 800;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.use-case-grid article {
  min-height: 250px;
}

.use-case-grid h3 {
  margin-top: 0;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: stretch;
  margin-bottom: 70px;
  padding: clamp(30px, 6vw, 56px);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(56, 189, 248, 0.14), transparent 52%),
    rgba(16, 18, 23, 0.9);
}

.final-cta h2 {
  margin-top: 10px;
  max-width: 780px;
  font-size: clamp(2rem, 4.6vw, 4.3rem);
}

.final-cta p {
  max-width: 700px;
  margin-top: 16px;
  color: var(--muted-strong);
}

.contact-copy {
  align-self: center;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 800;
}

.tally-form-card {
  display: grid;
  min-height: 680px;
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(56, 189, 248, 0.08), transparent 36%),
    rgba(5, 6, 8, 0.72);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.tally-form-card iframe {
  display: block;
  width: 100%;
  min-height: 680px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  filter: invert(1) hue-rotate(180deg) saturate(0.9);
}

.tally-form-card noscript {
  display: block;
  padding: 18px;
}

body.contact-in-view elevenlabs-convai {
  display: none;
}

.cta-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.site-footer {
  padding: 42px clamp(18px, 4vw, 48px) 74px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(340px, 0.75fr);
  gap: 28px clamp(34px, 8vw, 100px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand-block {
  max-width: 430px;
}

.footer-logo {
  display: inline-flex;
  width: min(180px, 54vw);
  min-height: 46px;
  margin-bottom: 10px;
}

.footer-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-brand-block p {
  color: var(--muted-strong);
}

.footer-link-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 20px;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.site-footer nav span {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted-strong);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-meta {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-page {
  max-width: 900px;
}

.legal-hero {
  padding: clamp(54px, 8vw, 88px) 0 24px;
}

.legal-hero h1 {
  max-width: 820px;
}

.legal-hero p {
  max-width: 720px;
  margin-top: 18px;
  color: var(--muted-strong);
}

.legal-card {
  display: grid;
  gap: 26px;
  margin-bottom: 70px;
  padding: clamp(22px, 5vw, 42px);
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(16, 18, 23, 0.78);
}

.legal-card section {
  display: grid;
  gap: 10px;
}

.legal-card h2 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted-strong);
}

.legal-card a {
  color: var(--accent);
  font-weight: 800;
}

.legal-card a:hover {
  color: #7dd3fc;
}

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

  .button:hover,
  .button:focus-visible,
  .timeline article:hover,
  .use-case-grid article:hover {
    transform: none;
  }
}

@media (max-width: 980px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--text);
    position: relative;
    z-index: 32;
  }

  .nav-toggle::before,
  .nav-toggle span {
    position: absolute;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    content: "";
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-toggle::before {
    transform: translateY(0);
  }

  .nav-toggle span:first-child {
    transform: translateY(-6px);
  }

  .nav-toggle span + span {
    transform: translateY(6px);
  }

  .nav-toggle[aria-expanded="true"]::before {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span + span {
    transform: rotate(-45deg);
  }

  .nav-backdrop:not([hidden]) {
    position: fixed;
    inset: var(--header-h) 0 0;
    z-index: 21;
    display: block;
    width: 100vw;
    border: 0;
    background: rgba(5, 6, 8, 0.78);
    backdrop-filter: blur(8px);
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    z-index: 22;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - var(--header-h));
    padding: 16px;
    border: 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: rgba(5, 6, 8, 0.98);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }

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

  .site-nav a,
  .site-nav .nav-cta {
    margin: 0;
    padding: 13px 12px;
  }

  .hero,
  .privacy-section,
  .section-heading.split,
  .proof-section,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .service-card.large,
  .service-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card.large {
    min-height: 260px;
  }

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

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section-band,
  .section-block {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand-tagline {
    display: none;
  }

  .brand-logo {
    width: 142px;
    max-height: 42px;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
  }

  .hero {
    padding-bottom: 136px;
  }

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

  .button {
    width: 100%;
  }

  .hero-panel,
  .privacy-section,
  .final-cta {
    padding: 20px;
  }

  .final-cta {
    padding-inline: 14px;
  }

  .tally-form-card {
    min-height: 760px;
    margin-inline: -6px;
    padding: 8px;
  }

  .tally-form-card iframe {
    min-height: 760px;
  }

  .hero-panel {
    display: none;
  }

  .assistant-intro {
    display: grid;
  }

  .assistant-intro img {
    width: 58px;
    height: auto;
  }

  .bento-grid,
  .timeline,
  .use-case-grid,
  .capability-list,
  .privacy-map,
  .footer-link-groups {
    grid-template-columns: 1fr;
  }

  .service-card.large,
  .service-card.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .service-card,
  .timeline article,
  .use-case-grid article {
    min-height: 190px;
  }

  .privacy-media {
    min-height: 260px;
  }

  .privacy-card-head {
    align-items: flex-start;
  }

  .site-footer {
    padding-bottom: 180px;
  }
}
