:root {
  --color-bg: #0a1114;
  --color-bg-soft: #10191d;
  --color-panel: #141e23;
  --color-panel-strong: #202b31;
  --color-text: #f3f5f4;
  --color-muted: #a9b2b8;
  --color-line: rgba(120, 160, 164, 0.16);
  --color-line-strong: rgba(120, 160, 164, 0.26);
  --color-teal: #4c9f9b;
  --color-teal-strong: #5db2ad;
  --color-shadow: rgba(0, 0, 0, 0.32);
  --container: 1180px;
  --header-height: 76px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.2rem;
  --space-5: 1.55rem;
  --space-6: 2.1rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --transition: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top center, rgba(76, 159, 155, 0.06), transparent 20%),
    linear-gradient(180deg, #091013 0%, #0b1216 100%);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  position: relative;
  padding: var(--space-7) 0;
  scroll-margin-top: calc(var(--header-height) + 0.75rem);
}

.section-divider {
  border-top: 1px solid rgba(120, 160, 164, 0.12);
}

.eyebrow {
  margin: 0 0 var(--space-2);
  color: var(--color-teal);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.01;
}

h1 {
  margin-bottom: var(--space-4);
  font-size: clamp(2.08rem, 4.55vw, 4.25rem);
}

h2 {
  margin-bottom: var(--space-4);
  font-size: clamp(1.56rem, 3vw, 2.65rem);
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1rem, 1.3vw, 1.24rem);
}

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(7, 12, 15, 0.28), rgba(7, 12, 15, 0.06));
  backdrop-filter: blur(6px);
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  border-color: rgba(120, 160, 164, 0.16);
  background: rgba(10, 17, 20, 0.84);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-logo {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.brand-name {
  color: rgba(243, 245, 244, 0.94);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-text-only .brand-name {
  padding-left: 0.15rem;
}

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

.site-nav a {
  position: relative;
  color: rgba(243, 245, 244, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color var(--transition), opacity var(--transition);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: var(--color-teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--color-text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  border: 0;
  padding: 0.35rem;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--color-text);
  transition: transform var(--transition), opacity var(--transition);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.72rem 1.05rem;
  border-radius: 8px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  transition:
    transform var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

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

.button-primary {
  background: linear-gradient(180deg, var(--color-teal-strong), var(--color-teal));
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(76, 159, 155, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 12px 24px rgba(76, 159, 155, 0.22);
}

.button-secondary {
  border-color: rgba(120, 160, 164, 0.18);
  background: rgba(11, 18, 22, 0.66);
  color: var(--color-text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(120, 160, 164, 0.32);
  background: rgba(19, 28, 33, 0.82);
}

.nav-cta::after {
  display: none;
}

.hero {
  min-height: min(100vh, 820px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--header-height) + 0.6rem);
  padding-bottom: calc(var(--space-6) - 0.2rem);
}

.hero-media,
.hero-overlay,
.hero-grid,
.hero-frame,
.hero-lines {
  position: absolute;
  inset: 0;
}

.hero-media {
  background:
    center center / cover no-repeat
    url("./assets/hero-bg.jpg");
  filter: saturate(0.96) contrast(1.03) brightness(0.78);
  transform: none;
}

.hero-overlay {
  background:
    radial-gradient(circle at center, rgba(8, 14, 16, 0.04), rgba(5, 8, 10, 0.34) 64%),
    linear-gradient(180deg, rgba(4, 8, 10, 0.22) 0%, rgba(4, 8, 10, 0.5) 100%);
}

.hero-grid {
  background-image:
    linear-gradient(rgba(76, 159, 155, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(76, 159, 155, 0.05) 1px, transparent 1px);
  background-size: 126px 126px;
  opacity: 0.58;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.6));
}

.hero-frame {
  pointer-events: none;
}

.hero-corner {
  position: absolute;
  width: 30px;
  height: 30px;
  opacity: 0.72;
}

.hero-corner::before,
.hero-corner::after {
  content: "";
  position: absolute;
  background: linear-gradient(90deg, rgba(76, 159, 155, 0.92), rgba(76, 159, 155, 0.22));
  box-shadow: 0 0 10px rgba(76, 159, 155, 0.16);
}

.hero-corner::before {
  width: 1px;
  height: 30px;
}

.hero-corner::after {
  width: 30px;
  height: 1px;
}

.hero-corner-tl {
  top: calc(var(--header-height) + 0.8rem);
  left: 4.8%;
}

.hero-corner-tr {
  top: calc(var(--header-height) + 0.8rem);
  right: 4.8%;
  transform: rotate(90deg);
}

.hero-corner-bl {
  bottom: 1.4rem;
  left: 4.8%;
  transform: rotate(-90deg);
}

.hero-corner-br {
  bottom: 1.4rem;
  right: 4.8%;
  transform: rotate(180deg);
}

.hero-lines {
  overflow: hidden;
}

.hero-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, rgba(76, 159, 155, 0), rgba(76, 159, 155, 0.45), rgba(76, 159, 155, 0));
  box-shadow: 0 0 14px rgba(76, 159, 155, 0.2);
}

.hero-line-a {
  left: 58%;
  top: 40%;
  width: 18%;
}

.hero-line-b {
  left: 57%;
  top: 71%;
  width: 22%;
}

.hero-line-c {
  left: 12%;
  bottom: 13%;
  width: 10%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
}

.hero-copy {
  max-width: 68rem;
}

.hero-logo {
  width: min(100%, 320px);
  margin: 0 auto 0.7rem;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.26));
}

.hero-mark {
  display: none;
  margin-bottom: 1rem;
  color: var(--color-text);
  font-size: 2rem;
  font-weight: 700;
}

.hero-mark.hero-mark-visible {
  display: block;
}

.hero h1 {
  max-width: 100%;
  margin-inline: auto;
  margin-bottom: 0.85rem;
  line-height: 0.98;
  font-size: clamp(2.6rem, 4.8vw, 4.6rem);
}

.hero-title-line {
  display: block;
  white-space: nowrap;
}

.hero-title-line-2 {
  color: var(--color-teal-strong);
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 1rem;
  font-size: clamp(0.98rem, 1.45vw, 1.16rem);
  color: rgba(243, 245, 244, 0.78);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: min(6vw, 4rem);
  align-items: start;
}

.about-copy {
  max-width: 44rem;
}

.about-copy p {
  font-size: 1rem;
}

.about-points {
  display: grid;
  gap: 1.15rem;
  align-content: center;
  align-self: center;
}

.about-point {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  min-height: 58px;
}

.about-point-marker {
  position: relative;
  width: 18px;
  height: 18px;
}

.about-point-marker::before,
.about-point-marker::after {
  content: "";
  position: absolute;
}

.about-point-marker::before {
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(76, 159, 155, 0.9), rgba(76, 159, 155, 0.28));
  transform: translateY(-50%);
}

.about-point-marker::after {
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-teal);
  box-shadow: 0 0 0 6px rgba(76, 159, 155, 0.1);
  transform: translateY(-50%);
}

.about-point p {
  max-width: none;
  margin: 0;
  color: rgba(243, 245, 244, 0.84);
  font-size: 1.06rem;
  line-height: 1.35;
  font-weight: 700;
}

.portrait-frame,
.contact-founder-photo {
  position: relative;
  width: min(100%, 360px);
  margin-left: auto;
  aspect-ratio: 4 / 4.9;
  border-radius: 16px;
  border: 1px solid rgba(120, 160, 164, 0.12);
  background: linear-gradient(180deg, rgba(23, 34, 39, 0.9), rgba(16, 25, 29, 0.88));
  box-shadow: 0 18px 36px var(--color-shadow);
  overflow: hidden;
}

.portrait-frame::before,
.contact-founder-photo::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(120, 160, 164, 0.12);
  border-radius: 12px;
  pointer-events: none;
}

.portrait-frame img,
.contact-founder-photo img,
.portrait-fallback {
  width: 100%;
  height: 100%;
}

.portrait-frame img,
.contact-founder-photo img {
  object-fit: cover;
}

.portrait-fallback {
  display: none;
  position: relative;
  align-items: end;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(18, 29, 33, 0.92), rgba(76, 159, 155, 0.12));
}

.portrait-fallback-only .portrait-fallback {
  display: flex;
}

.portrait-fallback-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(120, 160, 164, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 160, 164, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.portrait-fallback span {
  position: relative;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(11, 18, 22, 0.76);
  border: 1px solid rgba(120, 160, 164, 0.14);
  color: var(--color-text);
  font-size: 0.82rem;
}

.services-layout {
  display: grid;
  gap: var(--space-4);
}

.section-heading {
  max-width: 48rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(120, 160, 164, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(12, 19, 23, 0.4);
}

.service-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 0.85rem;
  align-content: start;
  padding: clamp(1.15rem, 2vw, 1.65rem);
  background:
    linear-gradient(180deg, rgba(22, 31, 36, 0.82), rgba(18, 26, 31, 0.78));
  border-right: 1px solid rgba(120, 160, 164, 0.12);
  border-bottom: 1px solid rgba(120, 160, 164, 0.12);
}

.service-item::before {
  content: "\2192";
  grid-column: 1;
  grid-row: 1;
  color: var(--color-teal);
  font-size: 1.02rem;
  line-height: 1.2;
  align-self: start;
}

.service-item:nth-child(2n) {
  border-right: 0;
}

.service-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-item h3 {
  grid-column: 2;
  margin-bottom: 0.7rem;
}

.service-item h3::before {
  content: none;
}

.service-item p {
  grid-column: 2;
  max-width: 36ch;
  margin-bottom: 0;
}

.differentiators-layout {
  display: grid;
  gap: var(--space-4);
}

.differentiators-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: min(4vw, 2.5rem);
}

.differentiator {
  position: relative;
  padding-top: 0.35rem;
}

.differentiator-number {
  display: block;
  margin-bottom: 1rem;
  color: rgba(76, 159, 155, 0.16);
  font-size: clamp(3rem, 5vw, 4.35rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
}

.differentiator h3 {
  margin-bottom: 0.8rem;
}

.differentiator p {
  max-width: 30ch;
  margin-bottom: 0;
}

.contact-layout {
  max-width: 58rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

.contact-text {
  max-width: 42rem;
  margin: 0 auto 1.35rem;
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.contact-card {
  min-width: min(100%, 280px);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0.85rem 0.95rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(120, 160, 164, 0.14);
  background: rgba(15, 24, 28, 0.82);
  transition:
    transform var(--transition),
    border-color var(--transition),
    background-color var(--transition),
    box-shadow var(--transition);
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(120, 160, 164, 0.28);
  background: rgba(18, 28, 33, 0.92);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.contact-card-primary {
  background: linear-gradient(180deg, rgba(76, 159, 155, 0.96), rgba(68, 143, 140, 0.94));
  color: #ffffff;
  border-color: transparent;
}

.contact-card-primary .contact-label,
.contact-card-primary .contact-value {
  color: #ffffff;
}

.contact-label {
  color: var(--color-muted);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-value {
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 700;
}

.contact-meta {
  margin-top: 2rem;
}

.contact-meta-divider {
  width: 100%;
  height: 1px;
  margin: 0 auto 1.15rem;
  background: rgba(120, 160, 164, 0.12);
}

.contact-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem 2rem;
  align-items: start;
  text-align: left;
}

.contact-meta-block {
  display: grid;
  gap: 0.28rem;
}

.contact-meta-title {
  margin: 0 0 0.12rem;
  color: rgba(243, 245, 244, 0.84);
  font-size: 0.94rem;
  font-weight: 700;
}

.contact-meta-text {
  margin: 0;
  color: rgba(169, 178, 184, 0.82);
  font-size: 0.9rem;
}

.contact-founder {
  width: 100%;
  max-width: 46rem;
  margin: 0 auto 2.2rem;
  display: flex;
  justify-content: center;
  padding-left: 0.45rem;
  padding-right: 0.2rem;
}

.contact-founder-card {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  align-items: center;
  gap: 2.1rem;
  width: 100%;
  padding: 1rem 1.2rem 1rem 1.85rem;
}

.contact-founder-photo {
  width: 124px;
  margin-left: 0;
  aspect-ratio: 1 / 1.1;
  border-radius: 12px;
}

.contact-founder-photo::before {
  inset: 6px;
  border-radius: 8px;
}

.contact-founder-copy {
  text-align: left;
  padding-right: 0.4rem;
  max-width: 33rem;
}

.contact-founder-name,
.contact-founder-role {
  margin: 0;
}

.contact-founder-name {
  color: rgba(243, 245, 244, 0.88);
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-founder-role {
  color: rgba(169, 178, 184, 0.78);
  font-size: 0.84rem;
}

.contact-founder-note {
  margin: 0.48rem 0 0;
  color: rgba(169, 178, 184, 0.88);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 46ch;
}

.contact-founder-link {
  display: inline-flex;
  margin-top: 0.78rem;
  color: rgba(243, 245, 244, 0.9);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  position: relative;
}

.contact-founder-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.16rem;
  width: 100%;
  height: 1px;
  background: rgba(76, 159, 155, 0.45);
}

.site-footer {
  padding: 1.85rem 0;
  border-top: 1px solid rgba(120, 160, 164, 0.12);
  background: rgba(10, 17, 20, 0.78);
}

.footer-minimal {
  display: flex;
  justify-content: center;
  text-align: center;
}

.footer-text {
  margin: 0;
  color: rgba(169, 178, 184, 0.72);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 360ms ease, transform 360ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 959px) {
  .container {
    width: min(calc(100% - 2.75rem), var(--container));
  }

  .about-layout,
  .differentiators-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .contact-meta-grid {
    grid-template-columns: 1fr;
  }

  .about-layout {
    align-items: start;
  }

  .contact-founder-card {
    width: 100%;
    max-width: 44rem;
  }
}

@media (max-width: 899px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-item,
  .service-item:nth-child(2n) {
    border-right: 0;
  }

  .service-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(120, 160, 164, 0.12);
  }

  .service-item:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 799px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 3rem), var(--container));
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.55rem);
    display: grid;
    gap: 0.25rem;
    padding: 0.6rem;
    background: rgba(11, 18, 22, 0.92);
    border: 1px solid rgba(120, 160, 164, 0.14);
    border-radius: 16px;
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--transition), transform var(--transition);
  }

  .site-nav a {
    padding: 0.62rem 0.42rem;
  }

  .hero {
    min-height: min(100svh, 720px);
    padding-top: calc(var(--header-height) + 1.3rem);
    padding-bottom: 1.75rem;
  }

  .hero-copy {
    max-width: 42rem;
  }

  .hero-logo {
    width: min(100%, 248px);
    margin-bottom: 0.55rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.68rem, 5.4vw, 2.36rem);
    line-height: 0.99;
    margin-bottom: 0.62rem;
  }

  .hero-lead {
    max-width: 29rem;
    margin-bottom: 0.82rem;
    font-size: clamp(0.92rem, 1.9vw, 1rem);
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .button {
    min-height: 40px;
    padding: 0.68rem 0.95rem;
  }

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

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.15rem;
  }
}

@media (max-width: 719px) {
  :root {
    --space-7: 2.25rem;
    --space-6: 1.8rem;
  }

  .container {
    width: min(calc(100% - 2.7rem), var(--container));
  }

  .brand-logo {
    height: 46px;
  }

  .brand-name {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 1.35rem);
    padding-bottom: 1.5rem;
  }

  .hero-grid {
    background-size: 72px 72px;
  }

  .hero-logo {
    width: min(100%, 188px);
    margin-bottom: 0.42rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.36rem, 5.9vw, 1.9rem);
    line-height: 1.01;
    margin-bottom: 0.5rem;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-lead {
    max-width: 19.5rem;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 0.7rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

  .hero-actions .button {
    min-width: 132px;
    width: auto;
    flex: 0 1 auto;
  }

  .hero-corner {
    width: 20px;
    height: 20px;
  }

  .hero-corner::before {
    height: 20px;
  }

  .hero-corner::after {
    width: 20px;
  }

  .hero-corner-tl,
  .hero-corner-tr {
    top: calc(var(--header-height) + 0.9rem);
  }

  .hero-corner-bl,
  .hero-corner-br {
    bottom: 1.1rem;
  }

  .hero-line-b,
  .hero-line-c {
    display: none;
  }

  .about-copy p,
  .contact-text,
  .service-item p,
  .footer-text {
    font-size: 0.92rem;
  }

  .about-point p {
    max-width: none;
  }

  .section-heading h2,
  .contact-layout h2,
  .about-copy h2 {
    margin-bottom: 1rem;
  }

  .service-item {
    grid-template-columns: 16px minmax(0, 1fr);
    column-gap: 0.7rem;
    padding-inline: 1rem;
  }

  .service-item h3 {
    margin-bottom: 0.58rem;
  }

  .service-item p {
    max-width: none;
  }

  .differentiator {
    padding-top: 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(120, 160, 164, 0.12);
  }

  .differentiator:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .differentiator-number {
    margin-bottom: 0.55rem;
    font-size: clamp(2.5rem, 11vw, 3.4rem);
  }

  .differentiator p {
    max-width: none;
  }

  .contact-card {
    min-width: 100%;
  }

  .contact-meta {
    margin-top: 1.6rem;
  }

  .contact-meta-divider {
    margin-bottom: 1rem;
  }

  .contact-founder {
    justify-content: center;
  }

  .contact-founder-card {
    grid-template-columns: 104px minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
    gap: 1.1rem;
    padding: 0.6rem 0.4rem;
  }

  .contact-founder-photo {
    width: 104px;
  }
}

@media (max-width: 479px) {
  .about-point {
    grid-template-columns: 16px minmax(0, 1fr);
    gap: 0.6rem;
    min-height: 48px;
  }

  .about-point-marker {
    width: 16px;
  }

  .about-point-marker::before {
    width: 16px;
  }

  .contact-founder-card {
    grid-template-columns: 1fr;
    gap: 0.9rem;
    padding: 0.35rem 0;
  }

  .contact-founder-photo {
    width: 118px;
  }

  .contact-founder-copy {
    text-align: left;
    padding-right: 0;
  }
}

@media (max-width: 479px) {
  .container {
    width: min(calc(100% - 2.3rem), var(--container));
  }

  .hero {
    padding-top: calc(var(--header-height) + 1.1rem);
    padding-bottom: 1.25rem;
  }

  .hero-copy {
    max-width: 19.5rem;
  }

  .hero-logo {
    width: min(100%, 170px);
    margin-bottom: 0.35rem;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.22rem, 5.8vw, 1.62rem);
    margin-bottom: 0.42rem;
  }

  .hero-title-line {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-lead {
    max-width: 17.5rem;
    font-size: 0.84rem;
    margin-bottom: 0.58rem;
  }

  .hero-actions {
    gap: 0.5rem;
  }

  .hero-actions .button {
    min-height: 38px;
    min-width: 124px;
    padding: 0.62rem 0.86rem;
    font-size: 0.9rem;
  }

  .service-item {
    grid-template-columns: 15px minmax(0, 1fr);
    column-gap: 0.62rem;
    padding: 1rem 0.92rem;
  }

  .service-item::before {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
