:root {
  color-scheme: light;
  --ink: #111316;
  --muted: #5d6470;
  --line: #d9dee7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --navy: #17243a;
  --teal: #0f766e;
  --gold: #c99736;
  --red: #9f3437;
  --shadow: 0 24px 70px rgba(17, 19, 22, 0.18);
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 19, 22, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold);
  color: #16110a;
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.92) 0%, rgba(17, 19, 22, 0.78) 40%, rgba(17, 19, 22, 0.3) 100%),
    url("assets/hero-lawfirm-ai.png") center / cover no-repeat;
  opacity: 0.95;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-lede,
.section-heading p,
.process-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #16110a;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 19, 22, 0.42);
}

.metrics div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 25px;
}

.metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.video-panel {
  align-self: center;
}

.phone-frame {
  overflow: hidden;
  width: min(100%, 330px);
  margin-left: auto;
  border: 10px solid #0b0d10;
  border-radius: 26px;
  background: #0b0d10;
  box-shadow: var(--shadow);
  aspect-ratio: 816 / 1104;
}

.phone-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-panel p {
  width: min(100%, 330px);
  margin: 16px 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.audit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.audit-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #eef2f6;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section-heading .eyebrow,
.process-section .eyebrow,
.contact-section .eyebrow {
  color: var(--teal);
}

.section-heading p {
  color: var(--muted);
}

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

.service-grid article {
  min-height: 275px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 19, 22, 0.06);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e7f3f1;
  color: var(--teal);
  font-weight: 900;
}

.service-grid p,
.timeline span,
.proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 84px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--navy);
}

.process-section p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 8px;
  font-size: 20px;
}

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

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

.proof-grid div {
  padding: 28px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  padding: 88px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: #101114;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.form-status[data-status="success"] {
  color: #8ee0bd;
}

.form-status[data-status="error"] {
  color: #ffb1b1;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .phone-frame,
  .video-panel p {
    margin-left: 0;
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 44px;
  }

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

  .metrics,
  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metrics div:last-child {
    border-bottom: 0;
  }
}
:root {
  color-scheme: light;
  --ink: #111316;
  --muted: #5d6470;
  --line: #d9dee7;
  --paper: #f7f8fb;
  --white: #ffffff;
  --navy: #17243a;
  --teal: #0f766e;
  --gold: #c99736;
  --red: #9f3437;
  --shadow: 0 24px 70px rgba(17, 19, 22, 0.18);
}

* {
  box-sizing: border-box;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: rgba(17, 19, 22, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--gold);
  color: #16110a;
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-cta {
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.92) 0%, rgba(17, 19, 22, 0.78) 40%, rgba(17, 19, 22, 0.3) 100%),
    url("assets/hero-lawfirm-ai.png") center / cover no-repeat;
  opacity: 0.95;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 54px 0 72px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 22px;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

.hero-lede,
.section-heading p,
.process-section p,
.contact-section p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: var(--gold);
  color: #16110a;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 620px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(17, 19, 22, 0.42);
}

.metrics div {
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.metrics div:last-child {
  border-right: 0;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 25px;
}

.metrics span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.video-panel {
  align-self: center;
}

.phone-frame {
  overflow: hidden;
  width: min(100%, 330px);
  margin-left: auto;
  border: 10px solid #0b0d10;
  border-radius: 26px;
  background: #0b0d10;
  box-shadow: var(--shadow);
  aspect-ratio: 816 / 1104;
}

.phone-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-panel p {
  width: min(100%, 330px);
  margin: 16px 0 0 auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.audit-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.audit-strip span {
  padding: 9px 12px;
  border-radius: 999px;
  background: #eef2f6;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

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

.section-heading .eyebrow,
.process-section .eyebrow,
.contact-section .eyebrow {
  color: var(--teal);
}

.section-heading p {
  color: var(--muted);
}

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

.service-grid article {
  min-height: 275px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 19, 22, 0.06);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 8px;
  background: #e7f3f1;
  color: var(--teal);
  font-weight: 900;
}

.service-grid p,
.timeline span,
.proof-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.process-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  padding: 84px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: var(--navy);
}

.process-section p {
  color: rgba(255, 255, 255, 0.76);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 8px;
  font-size: 20px;
}

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

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

.proof-grid div {
  padding: 28px;
  border-left: 4px solid var(--red);
  border-radius: 8px;
  background: var(--white);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 10px;
  font-size: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 48px;
  padding: 88px clamp(20px, 4vw, 56px);
  color: var(--white);
  background: #101114;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

select {
  appearance: none;
}

.form-status {
  min-height: 22px;
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.5;
}

.form-status[data-status="success"] {
  color: #8ee0bd;
}

.form-status[data-status="error"] {
  color: #ffb1b1;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .process-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 42px;
  }

  .phone-frame,
  .video-panel p {
    margin-left: 0;
  }

  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  h1 {
    font-size: 44px;
  }

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

  .metrics,
  .service-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .metrics div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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