:root {
  --ink: #020817;
  --deep: #061326;
  --navy: #0a1f36;
  --panel: #0e263c;
  --panel-soft: #123247;
  --aqua: #08c7a4;
  --aqua-dark: #039c88;
  --coral: #ff7a59;
  --paper: #f4f7f8;
  --mint: #6fffe0;
  --white: #f7f8fb;
  --muted: #aeb8c6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(115deg, rgba(8, 199, 164, 0.14) 0 14%, transparent 14% 100%),
    linear-gradient(168deg, transparent 0 58%, rgba(255, 122, 89, 0.12) 58% 64%, transparent 64%),
    linear-gradient(140deg, #010715 0%, #061326 48%, #02101e 100%);
}

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

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.78;
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1 {
  max-width: 930px;
  font-size: clamp(4.2rem, 12vw, 11rem);
  font-weight: 800;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  background: rgba(2, 8, 23, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 122px;
  height: 61px;
  object-fit: cover;
  object-position: center;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: #dce4ed;
  font-size: 0.92rem;
  font-weight: 700;
}

nav a,
.header-action {
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.header-action,
.primary-button,
.secondary-button,
.section-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action {
  padding: 0 1.2rem;
  border: 1px solid rgba(8, 199, 164, 0.45);
  color: var(--mint);
}

.header-action:hover {
  background: rgba(8, 199, 164, 0.1);
}

.hero {
  position: relative;
  display: flex;
  min-height: 94vh;
  align-items: flex-end;
  overflow: hidden;
  padding: 9rem clamp(1.2rem, 6vw, 5rem) 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background: linear-gradient(0deg, var(--ink), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(2, 8, 23, 0.96) 0%, rgba(2, 8, 23, 0.7) 58%, rgba(2, 8, 23, 0.38) 100%),
    linear-gradient(140deg, #010715 0%, #061326 48%, #02101e 100%);
  opacity: 1;
  overflow: hidden;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 8, 23, 0.18), rgba(2, 8, 23, 0.78)),
    linear-gradient(115deg, rgba(8, 199, 164, 0.1) 0 18%, transparent 18% 100%);
  animation: hero-breathe 8s ease-in-out infinite;
}

.hero-brand-lockup {
  position: absolute;
  top: clamp(4.6rem, 8vw, 6.6rem);
  left: clamp(1rem, 6vw, 5rem);
  z-index: 1;
  width: min(430px, 44vw);
  animation: logo-float 7s ease-in-out infinite;
}

.hero-top-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.34));
}

.hero-logo-subtitle {
  margin-top: clamp(0.15rem, 0.6vw, 0.45rem);
  color: #edf4f7;
  font-size: clamp(0.48rem, 0.78vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.34));
}

.hero-logo-subtitle span {
  color: #edf4f7;
  font-weight: 800;
}

.hero-logo-subtitle strong {
  color: var(--aqua);
  font-weight: 800;
}

.motion-line {
  position: absolute;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--aqua), var(--mint), transparent);
  transform: rotate(-16deg);
  box-shadow: 0 0 28px rgba(8, 199, 164, 0.4);
  will-change: transform, opacity;
}

.line-one {
  top: 35%;
  left: -12%;
  width: 84%;
  animation: motion-sweep-one 5.8s ease-in-out infinite;
}

.line-two {
  top: 54%;
  right: -10%;
  width: 60%;
  opacity: 0.45;
  animation: motion-sweep-two 7.2s ease-in-out infinite;
}

.step {
  position: absolute;
  width: 10rem;
  height: 17rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 54% 46% 50% 50%;
  background: linear-gradient(180deg, rgba(8, 199, 164, 0.2), rgba(255, 255, 255, 0.02));
  transform: rotate(-18deg);
  will-change: transform, opacity;
}

.step-a {
  right: 13%;
  top: 23%;
  animation: step-drift-a 7.4s ease-in-out infinite;
}

.step-b {
  right: 28%;
  top: 48%;
  opacity: 0.42;
  animation: step-drift-b 8.6s ease-in-out infinite;
}

.step-c {
  right: 5%;
  top: 61%;
  opacity: 0.24;
  animation: step-drift-c 9.2s ease-in-out infinite;
}

@keyframes hero-breathe {
  0%,
  100% {
    opacity: 0.88;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.02);
  }
}

@keyframes logo-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -0.55rem, 0);
  }
}

@keyframes motion-sweep-one {
  0%,
  100% {
    opacity: 0.35;
    transform: translate3d(-8%, 0, 0) rotate(-16deg);
  }

  45% {
    opacity: 0.9;
    transform: translate3d(10%, -0.35rem, 0) rotate(-16deg);
  }
}

@keyframes motion-sweep-two {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(8%, 0, 0) rotate(-16deg);
  }

  50% {
    opacity: 0.58;
    transform: translate3d(-9%, 0.4rem, 0) rotate(-16deg);
  }
}

@keyframes step-drift-a {
  0%,
  100% {
    opacity: 0.92;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    opacity: 0.62;
    transform: translate3d(-0.75rem, 0.8rem, 0) rotate(-15deg);
  }
}

@keyframes step-drift-b {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(0.9rem, -0.65rem, 0) rotate(-21deg);
  }
}

@keyframes step-drift-c {
  0%,
  100% {
    opacity: 0.22;
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    opacity: 0.44;
    transform: translate3d(-0.7rem, -0.9rem, 0) rotate(-14deg);
  }
}

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

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.35rem;
  max-width: 1040px;
}

.eyebrow,
.section-kicker {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 700px;
  color: #edf4f7;
  font-family: "Manrope", Arial, sans-serif;
  font-size: clamp(1.16rem, 1.75vw, 1.58rem);
  font-weight: 700;
  line-height: 1.52;
  text-shadow: 0 14px 32px rgba(0, 0, 0, 0.38);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.hero-primary-button {
  min-height: 62px;
  padding: 0 2rem;
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.7rem;
}

.hero-stats span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #eaf3f2;
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-button,
.secondary-button,
.section-cta {
  padding: 0 1.35rem;
}

.primary-button,
.section-cta {
  background: var(--aqua);
  color: #01110f;
  box-shadow: 0 18px 45px rgba(8, 199, 164, 0.22);
}

.primary-button:hover,
.section-cta:hover {
  background: var(--mint);
}

.secondary-button {
  border: 1px solid var(--line);
  color: #e8eef4;
}

.secondary-button:hover {
  border-color: rgba(111, 255, 224, 0.52);
}

.section-cta {
  width: max-content;
  margin-top: 0.15rem;
  text-decoration: none;
}

.section-cta-dark {
  background: #061326;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(6, 19, 38, 0.16);
}

.section-cta-dark:hover {
  background: #0a203c;
}

.section-action-row {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

main > section:not(.hero) {
  padding: clamp(4.8rem, 9vw, 8rem) clamp(1.2rem, 6vw, 5rem);
}

.intro,
.method,
.audiences {
  background: linear-gradient(180deg, rgba(2, 8, 23, 0), rgba(6, 19, 38, 0.54));
}

.intro-grid,
.paradigm,
.technology,
.professional,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.intro-grid {
  margin-top: 1.1rem;
}

.intro-grid div {
  display: grid;
  gap: 1.2rem;
}

.paradigm {
  background: var(--paper);
  color: #061326;
}

.paradigm p {
  color: #40505f;
}

.paradigm .section-kicker,
.technology .section-kicker {
  color: var(--aqua-dark);
}

.paradigm-content {
  display: grid;
  gap: 1.2rem;
}

.signal-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(6, 19, 38, 0.12);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(6, 19, 38, 0.1);
}

.signal-panel div {
  display: grid;
  gap: 0.35rem;
  padding: 1.35rem;
  border-bottom: 1px solid rgba(6, 19, 38, 0.1);
}

.signal-panel div:last-child {
  border-bottom: 0;
  background: #061326;
  color: #ffffff;
}

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

.signal-panel strong {
  font-size: clamp(1.1rem, 1.8vw, 1.48rem);
}

.section-heading {
  display: grid;
  gap: 1.1rem;
  max-width: 900px;
}

.method-grid,
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 3rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.method-grid article,
.audience-grid article {
  display: grid;
  gap: 1rem;
  min-height: 420px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(6, 19, 38, 0.92);
}

.method-grid article:nth-child(2) {
  background: rgba(8, 199, 164, 0.08);
}

.number {
  color: var(--aqua);
  font-size: 0.86rem;
  font-weight: 800;
}

ul {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #dbe5ec;
}

li {
  position: relative;
  padding-left: 1.1rem;
  line-height: 1.45;
}

li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--aqua);
}

.insight {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--aqua), #7cf4df 55%, #f4fff9);
  color: #041313;
}

.quote-mark {
  position: absolute;
  top: -3rem;
  right: 8vw;
  color: rgba(1, 17, 15, 0.12);
  font-size: clamp(12rem, 28vw, 26rem);
  font-weight: 800;
  line-height: 1;
}

blockquote {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.08;
}

.technology {
  background: var(--paper);
  color: #061326;
}

.technology p {
  color: #465666;
}

.tech-copy {
  display: grid;
  gap: 1.2rem;
}

.tech-board {
  display: grid;
  grid-template-columns: minmax(230px, 0.68fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.tech-options {
  display: grid;
  gap: 0.7rem;
  align-content: start;
}

.tech-option {
  min-height: 56px;
  padding: 0.85rem 1rem;
  border: 0;
  border-left: 4px solid var(--aqua);
  border-radius: 6px;
  background: #ffffff;
  color: #0c2032;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 16px 44px rgba(6, 19, 38, 0.08);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.tech-option:hover,
.tech-option.is-active {
  background: #061326;
  color: #ffffff;
  box-shadow: 0 18px 46px rgba(6, 19, 38, 0.18);
  transform: translateX(0.25rem);
}

.tech-option:focus-visible {
  outline: 3px solid rgba(8, 199, 164, 0.45);
  outline-offset: 3px;
}

.tech-preview {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #061326;
  box-shadow: 0 24px 60px rgba(6, 19, 38, 0.14);
}

.tech-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: contain;
  object-position: center;
}

.tech-preview figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  background: rgba(2, 8, 23, 0.78);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.professional {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 199, 164, 0.09), transparent 38%),
    #020817;
}

.professional::before {
  content: "";
  position: absolute;
  inset: 12% 0 auto auto;
  width: 42%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(111, 255, 224, 0.42));
}

.professional-photo {
  position: relative;
  z-index: 1;
  min-height: clamp(440px, 58vw, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #05070a;
  box-shadow: var(--shadow);
}

.professional-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(0deg, rgba(2, 8, 23, 0.72), transparent);
}

.professional-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center 24%;
}

.professional-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.2rem;
}

.professional-copy p {
  max-width: 720px;
  color: #d5dde7;
}

.professional-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0.4rem 0 0.3rem;
}

.professional-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(111, 255, 224, 0.26);
  border-radius: 999px;
  padding: 0 0.95rem;
  background: rgba(8, 199, 164, 0.08);
  color: #eaf3f2;
  font-size: 0.86rem;
  font-weight: 800;
}

.professional .secondary-button {
  justify-self: start;
}

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

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

.manifesto {
  position: relative;
  overflow: hidden;
}

.manifesto::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 1.3rem;
  max-width: 940px;
}

.manifesto p {
  max-width: 760px;
}

.contact {
  background:
    linear-gradient(115deg, rgba(8, 199, 164, 0.12) 0 24%, transparent 24% 100%),
    #061326;
  border-top: 1px solid var(--line);
}

.contact div {
  display: grid;
  gap: 0.8rem;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.2rem, 6vw, 5rem);
  border-top: 1px solid var(--line);
  background: #010715;
}

footer img {
  width: 132px;
  height: 66px;
  object-fit: cover;
}

footer p {
  color: #e7eef6;
  font-size: 0.95rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .intro-grid,
  .paradigm,
  .technology,
  .professional,
  .contact {
    grid-template-columns: 1fr;
  }

  .method-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .method-grid article,
  .audience-grid article {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
  }

  .brand img {
    width: 82px;
    height: 41px;
  }

  .header-action {
    min-height: 38px;
    padding: 0 0.7rem;
    font-size: 0.74rem;
  }

  .hero {
    min-height: 100svh;
    padding: 12.4rem 1rem 2.5rem;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(2, 8, 23, 0.82) 0%, rgba(2, 8, 23, 0.54) 38%, rgba(2, 8, 23, 0.94) 100%),
      linear-gradient(140deg, #010715 0%, #061326 48%, #02101e 100%);
  }

  .hero-brand-lockup {
    top: 4.15rem;
    left: 0.85rem;
    width: min(250px, 70vw);
  }

  .hero-logo-subtitle {
    font-size: clamp(0.36rem, 1.55vw, 0.48rem);
    letter-spacing: 0.08em;
  }

  h1 {
    font-size: clamp(3.4rem, 18vw, 5.8rem);
  }

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

  h3 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .hero-content {
    gap: 0.95rem;
    max-width: 100%;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: clamp(1.06rem, 4.5vw, 1.34rem);
    line-height: 1.42;
  }

  .step {
    width: 7rem;
    height: 12rem;
  }

  .step-a {
    right: -4rem;
    top: 18%;
  }

  .step-b {
    right: 24%;
    top: 42%;
  }

  .step-c {
    display: none;
  }

  .hero-actions {
    display: grid;
    gap: 0.65rem;
    margin-top: 0.5rem;
  }

  .hero-stats {
    gap: 0.5rem;
    margin-top: 0.3rem;
  }

  .hero-stats span {
    min-height: 38px;
    width: 100%;
    justify-content: center;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }

  .primary-button,
  .secondary-button,
  .section-cta {
    min-height: 48px;
    width: 100%;
  }

  .section-action-row {
    margin-top: 1.1rem;
  }

  .hero-primary-button {
    min-height: 60px;
    padding: 0 1rem;
    font-size: 1.04rem;
  }

  main > section:not(.hero) {
    padding-top: 4rem;
    padding-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-kicker {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .intro-grid,
  .paradigm,
  .technology,
  .professional,
  .contact {
    gap: 1.4rem;
  }

  .method-grid,
  .audience-grid {
    margin-top: 1.6rem;
    border-radius: 6px;
  }

  .method-grid article,
  .audience-grid article {
    gap: 0.8rem;
    padding: 1.1rem;
  }

  .signal-panel div {
    padding: 1.05rem;
  }

  .tech-board {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .tech-options {
    gap: 0.55rem;
  }

  .tech-option {
    min-height: 50px;
    padding: 0.85rem 0.95rem;
    font-size: 0.95rem;
  }

  .tech-option:hover,
  .tech-option.is-active {
    transform: none;
  }

  .tech-preview {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .tech-preview img {
    min-height: 0;
  }

  .tech-preview figcaption {
    left: 0.75rem;
    bottom: 0.75rem;
    font-size: 0.76rem;
  }

  .professional-photo {
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .professional-photo img {
    min-height: 0;
    object-position: center 18%;
  }

  .professional-copy {
    gap: 0.95rem;
  }

  .professional-tags {
    gap: 0.5rem;
  }

  .professional-tags span {
    min-height: 36px;
    padding: 0 0.8rem;
    font-size: 0.78rem;
  }

  .professional .secondary-button {
    justify-self: stretch;
  }

  blockquote {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  footer img {
    width: 112px;
    height: 56px;
  }
}

@media (max-width: 380px) {
  .header-action {
    max-width: 9.5rem;
    white-space: normal;
    text-align: center;
    line-height: 1.1;
  }

  .hero {
    padding-top: 11.3rem;
  }

  .hero-brand-lockup {
    width: min(220px, 68vw);
  }
}
