:root {
  --cyan: #00d7f3;
  --cyan-2: #00aeca;
  --steel: #777979;
  --paper: #f4f8f9;
  --ink: #050707;
  --muted: #626869;
  --line: #d7e2e5;
  --white: #ffffff;
  --navy: #071114;
  --charcoal: #202425;
  --shadow: 0 24px 70px rgba(5, 7, 7, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
  background: rgba(244, 248, 249, 0.92);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 210px;
  min-height: 52px;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.audit-hero .brand {
  width: 230px;
  padding: 7px 10px;
  border-radius: 6px;
  background: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--ink);
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: var(--cyan);
  color: var(--ink);
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 215, 243, 0.22);
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}

.button.steel,
button.steel {
  background: var(--steel);
  color: #fff;
  box-shadow: 0 12px 28px rgba(119, 121, 121, 0.22);
}

.section {
  padding: 86px 0;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.eyebrow {
  color: var(--cyan-2);
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 500;
  line-height: 0.98;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.15rem, 8vw, 7.4rem);
  max-width: 890px;
}

h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.7rem);
  max-width: 860px;
}

h3 {
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 710px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 62px 0 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  display: grid;
  gap: 24px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.photo-stack {
  position: absolute;
  inset: 0;
}

.photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  background: #ddd;
  box-shadow: var(--shadow);
}

.photo.large {
  inset: 0 42px 88px 0;
}

.photo.small {
  right: 0;
  bottom: 0;
  width: 58%;
  aspect-ratio: 3 / 4;
  border: 10px solid var(--paper);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.score-card {
  position: absolute;
  left: 26px;
  bottom: 34px;
  width: min(290px, 78%);
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.score-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.score {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) 72%, #dae7ea 0);
  color: var(--cyan-2);
  font-weight: 900;
}

.bar {
  height: 9px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e1ecef;
}

.bar span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: var(--cyan);
}

.stat-band {
  padding: 34px 0;
  background: var(--ink);
  color: #fff;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-size: clamp(1.8rem, 3.3vw, 3rem);
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 500;
}

.stat span {
  color: rgba(255, 255, 255, 0.74);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

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

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
}

.card.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.card p,
.muted {
  color: var(--muted);
}

.dark .muted,
.card.dark p {
  color: rgba(255, 255, 255, 0.72);
}

.steps {
  counter-reset: steps;
}

.step {
  position: relative;
  padding-left: 68px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: 0;
  top: 2px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: #fff;
  font-weight: 900;
}

.dark {
  background: var(--navy);
  color: #fff;
}

.package {
  display: grid;
  gap: 20px;
}

.price {
  font-size: 2.4rem;
  color: var(--cyan-2);
  font-weight: 900;
  line-height: 1;
}

.package ul,
.feature-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.package li,
.feature-list li {
  color: var(--muted);
}

.package li::before,
.feature-list li::before {
  content: "->";
  color: var(--cyan-2);
  margin-right: 8px;
  font-weight: 800;
}

.banner {
  padding: 44px;
  border-radius: 8px;
  background: var(--charcoal);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.before-after > div {
  padding: 34px;
}

.before-after > div + div {
  border-left: 1px solid var(--line);
}

.form {
  display: grid;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}

.page-hero {
  padding: 86px 0 64px;
}

.service-nav {
  position: sticky;
  top: 74px;
  z-index: 10;
  padding: 12px 0;
  background: rgba(247, 243, 237, 0.94);
  border-bottom: 1px solid rgba(13, 13, 13, 0.08);
  backdrop-filter: blur(12px);
}

.pills {
  display: flex;
  gap: 10px;
  overflow-x: auto;
}

.pill {
  white-space: nowrap;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--cyan-2);
}

.audit-hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.audit-hero input,
.audit-hero select {
  background: rgba(255, 255, 255, 0.96);
}

.score-preview {
  display: grid;
  gap: 18px;
}

.preview-panel {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.article h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.article-body {
  max-width: 780px;
  display: grid;
  gap: 18px;
  color: var(--muted);
}

.founder {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.founder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.notice {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 900px) {
  .nav {
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav,
  .nav-links {
    flex-direction: column;
  }

  .nav-links {
    align-items: flex-start;
    gap: 12px;
  }

  .hero-grid,
  .split,
  .grid-3,
  .grid-2,
  .stats,
  .banner,
  .before-after {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-visual {
    min-height: 500px;
  }

  .before-after > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 58px 0;
  }

  .hero-visual {
    min-height: 390px;
  }

  .photo.large {
    right: 12px;
    bottom: 72px;
  }

  .photo.small {
    width: 62%;
  }

  .score-card {
    left: 10px;
    bottom: 18px;
  }

  .banner,
  .card,
  .before-after > div {
    padding: 22px;
  }
}
