:root {
  --ink: #101418;
  --muted: #59636f;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #d8d6cf;
  --teal: #0f8a83;
  --amber: #c67b1a;
  --deep: #0b1115;
  --deep-2: #172026;
  --white: #ffffff;
  --max: 1160px;
  --radius: 8px;
  --shadow: 0 18px 45px rgba(16, 20, 24, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--white);
  background: rgba(11, 17, 21, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav,
.hero-actions,
.hero-stats,
.process-list,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background:
    linear-gradient(135deg, transparent 47%, var(--amber) 48% 54%, transparent 55%),
    linear-gradient(45deg, var(--teal), #74c7bd);
  clip-path: polygon(50% 0, 88% 28%, 70% 100%, 50% 78%, 30% 100%, 12% 28%);
}

.site-nav {
  gap: clamp(14px, 3vw, 28px);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.header-cta {
  display: inline-flex;
  min-width: 72px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 124px clamp(20px, 5vw, 64px) 54px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(6, 10, 12, 0.95) 0%, rgba(6, 10, 12, 0.76) 42%, rgba(6, 10, 12, 0.2) 100%),
    linear-gradient(0deg, rgba(6, 10, 12, 0.62) 0%, rgba(6, 10, 12, 0.05) 52%);
}

.hero-content {
  position: relative;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #82d9cf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 5.9rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.7rem);
  max-width: 13ch;
}

h3 {
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
}

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

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

.button-primary {
  color: var(--deep);
  background: #7de2d5;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

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

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

.hero-stats {
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
  margin: 52px 0 0;
}

.hero-stats div {
  min-width: 150px;
  padding: 16px;
  border-left: 2px solid #7de2d5;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stats dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 6px 0 0;
  color: var(--white);
  font-weight: 800;
}

section:not(.hero) {
  padding: 86px clamp(20px, 5vw, 64px);
}

.section-band {
  background: var(--panel);
}

.section-grid,
.section-heading,
.service-grid,
.process-list,
.credibility-panel,
.contact-layout,
.site-footer {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.section-grid p:not(.eyebrow) {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.section-heading {
  margin-bottom: 30px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.section-note {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.logo-marquee {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: logo-marquee 72s linear infinite;
  will-change: transform;
}

.logo-marquee:hover .logo-track,
.logo-marquee:focus-within .logo-track {
  animation-play-state: paused;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

.logo-tile {
  display: grid;
  width: 190px;
  min-height: 156px;
  flex: 0 0 190px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 22px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.logo-tile:hover,
.logo-tile:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 138, 131, 0.42);
  background: var(--white);
}

.logo-tile img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.logo-tile span {
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 800;
}

.vulnerability-grid {
  display: grid;
  width: min(var(--max), 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 auto;
}

.vulnerability-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf7;
}

.vulnerability-grid span {
  display: block;
  margin-bottom: 32px;
  color: var(--amber);
  font-weight: 900;
}

.vulnerability-grid h3 {
  margin-bottom: 12px;
}

.vulnerability-grid p {
  margin: 0;
  color: var(--muted);
}

.testimonials {
  background: var(--deep);
  color: var(--white);
}

.testimonials .section-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.testimonials .section-grid strong {
  color: var(--white);
}

.feedback-marquee {
  width: min(var(--max), 100%);
  margin: 28px auto 0;
}

.feedback-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.feedback-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: feedback-marquee 34s linear infinite;
  will-change: transform;
}

.feedback-marquee:hover .feedback-track,
.feedback-marquee:focus-within .feedback-track {
  animation-play-state: paused;
}

@keyframes feedback-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

.feedback-card {
  width: min(420px, calc(100vw - 48px));
  min-height: 190px;
  flex: 0 0 min(420px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.feedback-card span {
  display: block;
  margin-bottom: 34px;
  color: #7de2d5;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feedback-card h3 {
  margin-bottom: 8px;
}

.feedback-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  .feedback-track {
    animation: none;
    overflow-x: auto;
    width: auto;
  }
}

.service-card {
  min-height: 260px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.service-card p,
.process-list p,
.credibility-copy p,
.contact-copy p {
  color: var(--muted);
}

.icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  color: var(--deep);
  background: #d7efe9;
  font-size: 0.82rem;
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  margin: 0;
}

.process-list {
  align-items: stretch;
  gap: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.process-list li {
  flex: 1;
  min-width: 0;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.process-list li:last-child {
  border-right: 0;
}

.process-list span {
  display: block;
  margin-bottom: 38px;
  color: var(--amber);
  font-weight: 900;
}

.process-list p {
  margin-bottom: 0;
}

.credibility {
  background: var(--deep);
  color: var(--white);
}

.credibility-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(280px, 1fr);
  gap: 56px;
  align-items: start;
}

.credibility-copy {
  padding-left: 28px;
  border-left: 2px solid var(--teal);
}

.credibility-copy p {
  margin-top: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.credibility-copy strong {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(320px, 1fr);
  gap: 48px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 104px;
}

.contact-copy p {
  max-width: 520px;
}

.contact-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-card-header h3 {
  margin-top: 4px;
}

.form-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.typeform-link {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 13px;
  border: 1px solid #c9d8d4;
  border-radius: 999px;
  color: var(--deep);
  background: #eef6f3;
  font-size: 0.86rem;
  font-weight: 900;
}

.typeform-link:hover,
.typeform-link:focus-visible {
  border-color: rgba(15, 138, 131, 0.42);
  background: #dff1ec;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--deep);
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #c7c9c6;
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 138, 131, 0.2);
  border-color: var(--teal);
}

.full-span {
  grid-column: 1 / -1;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.7);
  background: var(--deep);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 860px) {
  .site-header {
    gap: 14px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(6, 10, 12, 0.94) 0%, rgba(6, 10, 12, 0.72) 100%),
      linear-gradient(0deg, rgba(6, 10, 12, 0.68) 0%, rgba(6, 10, 12, 0.12) 52%);
  }

  h1 {
    max-width: 10ch;
  }

  .section-grid,
  .credibility-panel,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  h2 {
    max-width: 15ch;
  }

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

  .logo-tile {
    width: 172px;
    flex-basis: 172px;
  }

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

  .process-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-list li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .process-list li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .contact-copy {
    position: static;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span:last-child {
    max-width: 136px;
    white-space: normal;
    line-height: 1.1;
  }

  .header-cta {
    min-width: 58px;
  }

  .hero {
    min-height: 94vh;
    padding: 104px 18px 36px;
  }

  .hero-image {
    object-position: 60% center;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
    max-width: 9ch;
  }

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

  .hero-stats {
    margin-top: 34px;
  }

  .hero-stats div {
    width: 100%;
  }

  section:not(.hero) {
    padding: 64px 18px;
  }

  .service-grid,
  .vulnerability-grid,
  .process-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-card-header {
    display: grid;
  }

  .process-list li,
  .process-list li:nth-child(odd),
  .process-list li:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-list li:last-child {
    border-bottom: 0;
  }

  .credibility-copy {
    padding-left: 18px;
  }

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