:root {
  --ink: #071226;
  --midnight: #020814;
  --muted: #8c95a8;
  --line: rgba(120, 133, 160, 0.24);
  --paper: #111722;
  --white: #ffffff;
  --blue: #1e5bff;
  --violet: #9b1cff;
  --purple: #5528f2;
  --smoke: #5d626b;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 12%, rgba(30, 91, 255, 0.22), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(155, 28, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #3b3f46 0%, #111722 42%, #f5f6fb 42%),
    var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 16px;
  left: clamp(12px, 4vw, 44px);
  right: clamp(12px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, color 180ms ease;
}

.brand,
.nav-links,
.hero-actions,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  color: #f8fbff;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(55, 87, 255, 0.55));
}

.nav-links {
  gap: clamp(14px, 3vw, 32px);
  color: #f4f7ff;
  font-size: 0.95rem;
  font-weight: 600;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #ffffff;
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.site-header.is-scrolled .menu-toggle {
  background: rgba(7, 18, 38, 0.06);
  border-color: rgba(7, 18, 38, 0.14);
}

.site-header.is-scrolled .menu-toggle span {
  background: var(--ink);
}

.site-header.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-header.is-scrolled {
  padding: 12px 14px 12px 12px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(20px);
}

.site-header.is-scrolled .brand,
.site-header.is-scrolled .nav-links {
  color: var(--ink);
  text-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 70px;
  background:
    radial-gradient(circle at 70% 42%, rgba(155, 28, 255, 0.34), transparent 28%),
    radial-gradient(circle at 50% 62%, rgba(30, 91, 255, 0.28), transparent 36%),
    linear-gradient(145deg, #5e6269 0%, #2b3039 40%, #080f1e 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #93a8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 9ch;
  margin-bottom: 22px;
  font-size: clamp(4.6rem, 12.5vw, 11rem);
  line-height: 0.84;
  letter-spacing: 0;
  background: linear-gradient(120deg, #ffffff, #dbe4ff 42%, #8d72ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: #d7deec;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(16, 21, 31, 0.16);
}

.button.primary {
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: var(--white);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

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

.hero-logo {
  width: clamp(84px, 10vw, 132px);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 0 24px rgba(64, 84, 255, 0.55));
}

.hero-media {
  position: relative;
  min-height: 560px;
  perspective: 1200px;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  content: "";
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-media::before {
  width: min(70%, 430px);
  height: 56%;
  right: 12%;
  bottom: 10%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), transparent),
    linear-gradient(150deg, var(--blue), var(--violet));
  transform: rotate(-5deg);
}

.hero-media::after {
  width: min(58%, 360px);
  height: 42%;
  top: 12%;
  left: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent),
    linear-gradient(150deg, #59616e, var(--purple));
  transform: rotate(7deg);
}

.signal-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 4px;
  min-width: 148px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.14);
  backdrop-filter: blur(18px);
}

.signal-card span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-card strong {
  font-size: 2rem;
  line-height: 1;
}

.signal-card.followers {
  top: 8%;
  right: 0;
}

.signal-card.growth {
  left: 4%;
  bottom: 16%;
}

.phone-screen {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 4%;
  width: min(76%, 360px);
  min-width: 260px;
  aspect-ratio: 0.56;
  padding: 22px;
  background:
    linear-gradient(#151b25, #151b25) padding-box,
    linear-gradient(145deg, rgba(255,255,255,0.8), rgba(255,255,255,0.08)) border-box;
  border: 10px solid #0b1018;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(4deg) rotateY(-8deg);
}

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

.screen-top span {
  width: 8px;
  height: 8px;
  background: #46556d;
  border-radius: 50%;
}

.post-card {
  border-radius: 8px;
  background: var(--white);
}

.post-card.wide {
  height: 38%;
  margin-bottom: 16px;
  background:
    linear-gradient(135deg, rgba(30, 91, 255, 0.95), rgba(155, 28, 255, 0.9)),
    var(--blue);
}

.post-card.short {
  height: 18%;
  margin-bottom: 16px;
  background:
    linear-gradient(90deg, var(--white) 0 42%, #e8edf4 42% 100%);
}

.post-card.grid {
  display: grid;
  height: calc(44% - 32px);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  background: transparent;
}

.post-card.grid span {
  border-radius: 8px;
  background: #ffffff;
}

.post-card.grid span:nth-child(2) {
  background: var(--violet);
}

.post-card.grid span:nth-child(3) {
  background: var(--blue);
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(62px, 8vw, 92px);
  background: transparent;
  border: 0;
}

.stats-band div {
  padding: clamp(24px, 4vw, 46px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(15, 23, 42, 0.07);
  backdrop-filter: blur(18px);
}

.stats-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(2, 8, 20, 0.96), rgba(7, 18, 38, 0.9)),
    radial-gradient(circle at 82% 18%, rgba(30, 91, 255, 0.34), transparent 34%),
    radial-gradient(circle at 74% 70%, rgba(155, 28, 255, 0.22), transparent 34%),
    #0b1020;
  color: var(--white);
}

.split-copy {
  max-width: 720px;
}

.split-copy h2 {
  margin-bottom: 24px;
}

.split-copy p:not(.eyebrow) {
  color: #cbd5e1;
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.75;
}

.insight-panel {
  display: grid;
  gap: 14px;
}

.insight-panel div {
  position: relative;
  padding: 24px 24px 24px 78px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.insight-panel div::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--violet));
}

.insight-panel span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #93a8ff;
  font-weight: 900;
}

.insight-panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.15rem;
}

.insight-panel p {
  margin-bottom: 0;
  color: #cbd5e1;
  line-height: 1.55;
}

.section {
  padding: clamp(62px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.inline-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 900;
}

.service-card {
  min-height: 285px;
  padding: clamp(22px, 3vw, 32px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 166, 178, 0.32);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.service-icon {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 48px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.process-section {
  padding: clamp(70px, 10vw, 124px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(180deg, #ffffff, #f6f7fb);
}

.process-list {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 180px minmax(220px, 0.8fr) minmax(260px, 1fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px) 0;
  border-bottom: 1px solid var(--line);
}

.process-list span {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
}

.process-list h3 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(52px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(30, 91, 255, 0.28), transparent 36%),
    linear-gradient(300deg, rgba(155, 28, 255, 0.24), transparent 42%),
    #020814;
  color: var(--white);
}

.cta-section .eyebrow {
  color: #bff6e3;
}

.cta-section h2 {
  max-width: 780px;
  margin-bottom: 18px;
}

.cta-section p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.65;
}

.page-hero {
  min-height: 58vh;
  padding: 150px clamp(18px, 5vw, 72px) 74px;
  background:
    radial-gradient(circle at 72% 34%, rgba(155, 28, 255, 0.32), transparent 28%),
    radial-gradient(circle at 30% 26%, rgba(30, 91, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #5e6269 0%, #2b3039 42%, #080f1e 100%);
  color: #ffffff;
}

.page-hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.92;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: #d7deec;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.7;
}

.services-page-section {
  padding: clamp(62px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-list article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-list article:hover {
  transform: translateY(-5px);
  border-color: rgba(30, 91, 255, 0.32);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.1);
}

.service-list span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 46px;
  background: linear-gradient(135deg, var(--blue), var(--violet));
  color: #ffffff;
  border-radius: 8px;
  font-weight: 900;
}

.service-list h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1.05;
  color: var(--ink);
}

.service-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  padding: clamp(62px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.contact-panel {
  position: sticky;
  top: 110px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(30, 91, 255, 0.14), transparent 42%),
    linear-gradient(300deg, rgba(155, 28, 255, 0.12), transparent 46%),
    #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  word-break: break-word;
}

.contact-panel p:not(.eyebrow) {
  margin-bottom: 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  background: #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  background: #ffffff;
  border: 1px solid rgba(120, 133, 160, 0.42);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(30, 91, 255, 0.18);
  border-color: var(--blue);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: start;
  padding: clamp(62px, 9vw, 116px) clamp(18px, 5vw, 72px);
  background: #ffffff;
}

.about-copy {
  max-width: 820px;
}

.about-copy h2 {
  margin-bottom: 24px;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(1.04rem, 1.7vw, 1.18rem);
  line-height: 1.78;
}

.about-facts {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(135deg, rgba(30, 91, 255, 0.14), transparent 42%),
    linear-gradient(300deg, rgba(155, 28, 255, 0.12), transparent 46%),
    #f7f8fc;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.about-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.about-facts div:last-child {
  border-bottom: 0;
}

.about-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-facts strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 2rem);
  line-height: 1.1;
}

footer {
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  background: #ffffff;
  color: #475467;
  font-size: 0.95rem;
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
    top: 0;
    left: 12px;
    right: 12px;
    padding: 10px 12px;
    background: rgba(7, 18, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    backdrop-filter: blur(18px);
  }

  .site-header.is-scrolled {
    border-radius: 8px;
  }

  .site-header.is-scrolled .brand,
  .site-header.is-scrolled .nav-links {
    color: #ffffff;
  }

  .site-header.is-scrolled .menu-toggle span {
    background: #ffffff;
  }

  .brand {
    color: #ffffff;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 8px;
    background: rgba(7, 18, 38, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    padding: 15px 14px;
    color: #ffffff;
    border-radius: 8px;
    text-shadow: none;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.08);
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 112px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .page-hero h1 {
    font-size: clamp(2.65rem, 11vw, 4.8rem);
  }

  .hero-media {
    order: -1;
    min-height: 430px;
  }

  .phone-screen {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(72vw, 320px);
  }

  .signal-card.followers {
    right: 6%;
  }

  .signal-card.growth {
    left: 4%;
    bottom: 8%;
  }

  .stats-band,
  .service-grid,
  .split-section,
  .service-list,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .contact-panel {
    position: static;
  }

  .process-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-section,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    align-items: center;
    flex-direction: row;
  }

  .brand span {
    font-size: 1.05rem;
  }

  .hero {
    gap: 18px;
    padding-inline: 16px;
  }

  .hero-media {
    min-height: 330px;
  }

  .phone-screen {
    min-width: 210px;
    width: min(68vw, 280px);
    padding: 18px;
    border-width: 8px;
  }

  .signal-card {
    min-width: 118px;
    padding: 12px 14px;
  }

  .signal-card strong {
    font-size: 1.5rem;
  }

  h1 {
    font-size: clamp(3.65rem, 19vw, 5.8rem);
  }

  .hero-copy,
  .split-copy p:not(.eyebrow),
  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .section,
  .split-section,
  .process-section,
  .services-page-section,
  .contact-section,
  .about-section,
  .cta-section,
  footer {
    padding-inline: 16px;
  }

  .service-card,
  .service-list article,
  .contact-form,
  .contact-panel,
  .about-facts {
    padding: 20px;
  }

  .insight-panel div {
    padding: 22px 20px 22px 62px;
  }

  .insight-panel span {
    left: 20px;
  }
}

@media (max-width: 380px) {
  .brand span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  h1 {
    font-size: 3.25rem;
  }

  .page-hero h1 {
    font-size: 2.45rem;
  }
}
