/* Thoughtlane — Speer-inspired professional site */

:root {
  --black: #000000;
  --ink: #111111;
  --charcoal: #1a1a1a;
  --muted: #2a2a2a;
  --gray: #7c7c7c;
  --silver: #adadad;
  --line: #d8d8d8;
  --paper: #f8f8f8;
  --white: #ffffff;
  --lime: #def59d;
  --lime-deep: #c8e66a;
  --lavender: #c0a8f0;
  --max: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  background: rgba(248, 248, 248, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  border-bottom-color: rgba(0, 0, 0, 0.08);
  background: rgba(248, 248, 248, 0.96);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 0;
  flex-shrink: 0;
}

.site-footer .logo img {
  width: 48px;
  height: 48px;
}

.nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}

.nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s ease;
}

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

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--lime-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--black);
}

.text-link {
  display: inline-flex;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-bottom: 1.5px solid var(--black);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.text-link:hover {
  color: var(--gray);
  border-color: var(--gray);
}

/* Shared */
.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 1rem;
}

.section-head {
  max-width: var(--max);
  margin: 0 auto 3rem;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section-head.inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.section-head h2,
.hero h1,
.about h2,
.secure-intro h2,
.bridge h2,
.cta h2 {
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  max-width: 18ch;
}

.lede {
  margin-top: 1.25rem;
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 52ch;
}

.scroll-hint {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray);
  white-space: nowrap;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: calc(var(--header-h) + 3rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero-mark img {
  width: min(520px, 88%);
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
  animation: float 10s ease-in-out infinite;
}

.hero h1 {
  font-size: clamp(2.75rem, 8vw, 5.5rem);
  margin-bottom: 1.5rem;
}

.hero-copy {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 58ch;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 0.95rem;
  color: var(--gray);
  max-width: 48ch;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: float 12s ease-in-out infinite;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: var(--lime);
  top: 12%;
  right: -5%;
}

.orb-b {
  width: 320px;
  height: 320px;
  background: var(--lavender);
  bottom: 8%;
  right: 18%;
  animation-delay: -4s;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 70% 40%, black 20%, transparent 70%);
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, 24px) scale(1.05); }
}

/* Partners marquee */
.partners {
  border-block: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--white);
  padding: 1.5rem 0;
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 36s linear infinite;
}

.marquee-track span {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray);
  white-space: nowrap;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Demo */
.demo {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.demo-stage {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.demo-screen {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.18);
}

.demo-chrome {
  display: flex;
  gap: 8px;
  padding: 1rem 1.25rem;
  background: #1c1c1c;
}

.demo-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3a3a3a;
}

.demo-chrome span:nth-child(1) { background: #ff5f57; }
.demo-chrome span:nth-child(2) { background: #febc2e; }
.demo-chrome span:nth-child(3) { background: #28c840; }

.demo-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 340px;
  padding: 1.5rem;
  gap: 1.25rem;
}

.demo-sidebar {
  background: #1a1a1a;
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.demo-line {
  height: 10px;
  border-radius: 6px;
  background: #2e2e2e;
}

.demo-line.w40 { width: 40%; }
.demo-line.w60 { width: 60%; }
.demo-line.w80 { width: 80%; }

.demo-pill {
  margin-top: auto;
  height: 36px;
  border-radius: 999px;
  background: var(--lime);
  opacity: 0.9;
}

.demo-main {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.demo-card {
  flex: 1;
  border-radius: 12px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border: 1px solid #333;
}

.demo-card.pulse {
  animation: pulse 3s ease-in-out infinite;
}

.demo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.demo-tile {
  height: 72px;
  border-radius: 10px;
  background: #222;
  border: 1px solid #333;
  animation: rise 2.8s ease-in-out infinite;
}

.demo-tile.delay { animation-delay: 0.35s; }
.demo-tile.delay2 { animation-delay: 0.7s; }

@keyframes pulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; box-shadow: inset 0 0 40px rgba(222, 245, 157, 0.12); }
}

@keyframes rise {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-6px); opacity: 1; }
}

.demo-caption {
  margin-top: 1.25rem;
  color: var(--gray);
  font-size: 0.95rem;
}

/* About */
.about {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.about h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

.about-copy p {
  color: var(--muted);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.about-copy .btn {
  margin-top: 1rem;
}

/* Capabilities */
.capabilities {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(5rem, 9vw, 7rem);
  background: var(--black);
  color: var(--white);
}

.capabilities .eyebrow,
.capabilities .scroll-hint {
  color: var(--silver);
}

.cap-rail {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 clamp(1.25rem, 4vw, 3rem) 1rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) #222;
}

.cap-rail::-webkit-scrollbar {
  height: 6px;
}

.cap-rail::-webkit-scrollbar-thumb {
  background: var(--lime);
  border-radius: 999px;
}

.cap-card {
  flex: 0 0 min(340px, 82vw);
  scroll-snap-align: start;
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 18px;
  padding: 2rem 1.75rem;
  min-height: 280px;
  transition: border-color 0.3s ease, transform 0.3s var(--ease);
}

.cap-card:hover {
  border-color: var(--lime);
  transform: translateY(-4px);
}

.cap-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lime);
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
}

.cap-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
  line-height: 1.25;
}

.cap-card p {
  color: var(--silver);
  font-size: 0.95rem;
}

/* Institutions */
.institutions {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.inst-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.inst-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.3s ease, transform 0.3s var(--ease);
}

.inst-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.inst-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.inst-card p {
  color: var(--gray);
  font-size: 0.98rem;
}

/* Products */
.products {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.product-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.1);
}

.product-media {
  aspect-ratio: 16 / 10;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.15));
}

.tone-1 { background: linear-gradient(145deg, #111, #2a3a1a 60%, #def59d); }
.tone-2 { background: linear-gradient(145deg, #111, #2a1a3a 60%, #c0a8f0); }
.tone-3 { background: linear-gradient(145deg, #111, #1a2a3a 60%, #9dd6f5); }
.tone-4 { background: linear-gradient(145deg, #111, #3a2a1a 60%, #f5d89d); }
.tone-5 { background: linear-gradient(145deg, #111, #1a3a2a 60%, #9df5c8); }
.tone-6 { background: linear-gradient(145deg, #111, #3a1a2a 60%, #f59db8); }

.product-icon {
  position: relative;
  z-index: 1;
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 300;
}

.product-body {
  padding: 1.5rem 1.5rem 1.75rem;
}

.product-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.product-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.product-body p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* Secure */
.secure {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
}

.secure-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

.secure-intro h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  margin-bottom: 0.5rem;
}

.secure-intro .lede {
  margin-bottom: 1.25rem;
}

.secure-intro > p:last-child {
  color: var(--muted);
}

.secure-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.secure-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 2rem 1.75rem;
}

.secure-card.accent {
  background: var(--black);
  color: var(--white);
  border-color: transparent;
}

.secure-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.secure-tag {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 1rem;
}

.secure-card.accent .secure-tag {
  color: var(--lime);
}

.secure-card > p {
  color: var(--gray);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.secure-card.accent > p {
  color: var(--silver);
}

.secure-card ul {
  display: grid;
  gap: 0.55rem;
}

.secure-card li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.secure-card.accent li {
  color: #e8e8e8;
}

.secure-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
}

/* Bridge */
.bridge {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

.bridge-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.bridge .eyebrow {
  color: var(--lime);
}

.bridge h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}

.bridge .lede {
  margin: 0 auto;
  color: var(--silver);
  font-size: 1.15rem;
}

/* Looking */
.looking {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--white);
}

.looking-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.looking-card {
  background: var(--paper);
  border-radius: 18px;
  padding: 2.25rem 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.looking-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.looking-card p {
  color: var(--gray);
  font-size: 1.02rem;
}

/* CTA */
.cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--paper);
}

.cta-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem);
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
  text-align: center;
}

.cta h2 {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  max-width: 18ch;
  margin: 0 auto 1rem;
}

.cta-inner > p {
  color: var(--silver);
  margin-bottom: 1.5rem;
}

.cta-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
}

.cta-checks li {
  font-size: 0.9rem;
  color: var(--lime);
  font-weight: 500;
}

.cta-checks li::before {
  content: "✓ ";
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: var(--white);
  padding: 3rem clamp(1.25rem, 4vw, 3rem) 2rem;
}

.footer-top {
  max-width: var(--max);
  margin: 0 auto 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--silver);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray);
}

/* Product page */
.product-page {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
}

.product-page-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.back-link {
  display: inline-flex;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray);
}

.back-link:hover {
  color: var(--black);
}

.product-hero-media {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  display: grid;
  place-items: center;
  margin-bottom: 2.5rem;
}

.product-page h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.product-page .lead {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.meta-block {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.meta-block h2 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 0.6rem;
}

.meta-block p {
  color: var(--ink);
  font-size: 1.02rem;
}

/* Responsive */
@media (max-width: 900px) {
  .about-grid,
  .secure-grid {
    grid-template-columns: 1fr;
  }

  .inst-grid,
  .product-grid,
  .looking-grid {
    grid-template-columns: 1fr;
  }

  .demo-body {
    grid-template-columns: 1fr;
  }

  .demo-sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    background: rgba(248, 248, 248, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 2rem;
    gap: 1.15rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: calc(var(--header-h) + 2.5rem);
    padding-bottom: 3.5rem;
  }

  .hero-mark {
    order: -1;
    margin-bottom: 0.5rem;
  }

  .hero-mark img {
    width: min(280px, 70%);
  }

  .section-head.inline {
    align-items: flex-start;
    flex-direction: column;
  }

  .cta-inner {
    margin: 0 clamp(1.25rem, 4vw, 3rem);
  }
}
