:root {
  color-scheme: light;
  --ink: #11131a;
  --muted: #5f6877;
  --line: rgba(17, 19, 26, 0.12);
  --paper: #fbfbf7;
  --soft: #f0f4f2;
  --panel: #ffffff;
  --night: #151823;
  --night-2: #0c111b;
  --blue: #1f6fff;
  --lime: #c8ff3d;
  --shadow: 0 18px 55px rgba(17, 19, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, 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;
}

.demo-notice {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 20px;
  background: #10131d;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.demo-notice::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(200, 255, 61, 0.72);
}

.site-header {
  position: sticky;
  top: 36px;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(20px, 5vw, 72px);
  background: rgba(251, 251, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: grid;
  gap: 0;
  min-width: 150px;
}

.brand-main {
  font-size: 30px;
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

.brand-main::first-letter {
  color: var(--blue);
}

.brand-sub {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: #2b3240;
  font-weight: 800;
}

.nav a,
.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta,
.primary-button {
  border: 0;
  background: linear-gradient(135deg, var(--night-2), var(--ink));
  color: #fff;
  padding: 0 22px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(17, 19, 26, 0.16);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0 20px;
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  min-height: calc(100svh - 116px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  padding-top: 40px;
  overflow: hidden;
}

.hero-media {
  order: 2;
  min-height: 620px;
  position: relative;
  isolation: isolate;
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 251, 247, 0.18), rgba(17, 19, 26, 0.28));
  pointer-events: none;
}

.hero-panel {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: clamp(18px, 4vw, 56px);
  z-index: 2;
  max-width: min(420px, calc(100% - 36px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: rgba(12, 17, 27, 0.78);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.hero-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.05;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 120px) clamp(20px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(54px, 9vw, 128px);
  line-height: 0.88;
  letter-spacing: 0;
  font-weight: 950;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 950;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 950;
}

.hero-copy {
  max-width: 680px;
  color: #373f4d;
  font-size: clamp(19px, 2.1vw, 27px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.section {
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 90px);
  border-top: 1px solid var(--line);
}

.intro-copy {
  color: var(--muted);
  font-size: 20px;
}

.business-info {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
}

.business-info div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--ink);
  font-weight: 950;
}

dd {
  margin: 0;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.experience-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(31, 111, 255, 0.12), transparent 28%),
    linear-gradient(135deg, #f8fbff 0%, #eef6f3 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.experience-card {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 45px rgba(17, 19, 26, 0.08);
}

.experience-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 72px;
  border-radius: 50%;
  background: var(--night);
  color: var(--lime);
  font-weight: 950;
}

.experience-card p {
  color: var(--muted);
  font-size: 19px;
}

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

.service-card,
.experience-card,
.team-card,
.appointment-form,
.confirmation {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 10px 32px rgba(17, 19, 26, 0.06);
}

.service-card {
  min-height: 275px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(31, 111, 255, 0.34);
  box-shadow: 0 20px 45px rgba(17, 19, 26, 0.11);
  transform: translateY(-3px);
}

.service-card p,
.team-card p,
.appointment-copy p,
.confirmation p {
  color: var(--muted);
}

.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--night);
  color: var(--lime);
  font-weight: 950;
}

.service-card small {
  color: var(--blue);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.02em;
}

.team-section {
  background:
    linear-gradient(135deg, rgba(31, 111, 255, 0.13), transparent 38%),
    var(--night);
  color: #fff;
}

.team-section .eyebrow {
  color: var(--lime);
}

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

.team-card {
  overflow: hidden;
  background: #1d2230;
  border-color: rgba(255, 255, 255, 0.12);
}

.team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.03);
}

.team-card div {
  padding: 24px;
}

.team-card p {
  color: rgba(255, 255, 255, 0.74);
}

.appointment-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  background: linear-gradient(135deg, #eef6ff 0%, #f7fff0 100%);
}

.appointment-copy {
  position: sticky;
  top: 142px;
}

.appointment-copy p {
  font-size: 20px;
}

.appointment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  box-shadow: 0 22px 70px rgba(17, 19, 26, 0.12);
}

.field {
  display: grid;
  gap: 8px;
}

.field-wide {
  grid-column: 1 / -1;
}

label {
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 19, 26, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(31, 111, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(31, 111, 255, 0.12);
}

textarea {
  resize: vertical;
}

.confirmation {
  grid-column: 2;
  padding: 28px;
  border-color: rgba(31, 111, 255, 0.28);
  box-shadow: 0 18px 50px rgba(31, 111, 255, 0.12);
}

.confirmation h3 {
  color: var(--blue);
}

.confirmation ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--lime);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .hero,
  .intro-section,
  .appointment-section {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: 0;
    min-height: 420px;
  }

  .hero-content {
    order: 1;
  }

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

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: auto;
  }

  .experience-number {
    margin-bottom: 34px;
  }

  .appointment-copy {
    position: static;
  }

  .confirmation {
    grid-column: 1;
  }
}

@media (max-width: 760px) {
  .demo-notice {
    min-height: 46px;
    font-size: 12px;
  }

  .demo-notice::before {
    display: none;
  }

  .site-header {
    top: 46px;
    height: auto;
    min-height: 70px;
    padding: 12px 18px;
    gap: 12px;
  }

  .brand {
    min-width: 108px;
  }

  .brand-main {
    font-size: 25px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    margin-left: auto;
    padding: 0 14px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-panel {
    position: relative;
    inset: auto;
    max-width: none;
    margin: -68px 18px 0;
  }

  .hero-content {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 74px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 48px);
  }

  .hero-copy,
  .intro-copy,
  .appointment-copy p {
    font-size: 18px;
  }

  .business-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .service-grid,
  .experience-grid,
  .team-grid,
  .appointment-form {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 210px;
  }

  .site-footer {
    display: grid;
  }
}
