:root {
  --bg: #080b16;
  --bg-soft: #101625;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #f8fbff;
  --muted: #aeb8ca;
  --brand: #ff7a45;
  --brand-2: #7c5cff;
  --brand-3: #28d7b7;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --container: min(1120px, calc(100vw - 40px));
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(124, 92, 255, 0.28), transparent 36rem),
    radial-gradient(circle at 80% 10%, rgba(40, 215, 183, 0.16), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  overflow: hidden;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0;
}

main {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--bg-soft);
}

.navbar {
  width: var(--container);
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(255, 122, 69, 0.25);
  flex-shrink: 0;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-weight: 600;
}

.nav-panel a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  color: var(--text);
}

.nav-panel a[aria-current="page"] {
  color: var(--text);
}

.nav-panel a.nav-cta[aria-current="page"] {
  color: #fff;
  outline: 2px solid rgba(248, 250, 252, 0.4);
  outline-offset: 3px;
}

.nav-cta,
.button {
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
  box-shadow: 0 18px 44px rgba(124, 92, 255, 0.28);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(255, 122, 69, 0.26);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  color: white;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-3);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.hero-text,
.section-copy > p,
.section-heading > p,
.blog-card p,
.trust-item p,
.service-card p,
.footer p {
  color: var(--muted);
}

.hero-text {
  max-width: 650px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 560px;
}

.hero-stats div,
.mini-grid div,
.trust-item,
.service-card,
.blog-card,
.quote-form,
.phone-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  border-radius: 18px;
  padding: 18px;
}

.hero-stats strong,
.mini-grid strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1;
}

.hero-stats span,
.mini-grid span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  isolation: isolate;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at top right, rgba(255, 122, 69, 0.26), transparent 18rem);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto auto -48px -42px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(40, 215, 183, 0.18);
  filter: blur(8px);
}

.hero-card-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand-3);
  font-size: 0.86rem;
  font-weight: 800;
}

.live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 8px rgba(40, 215, 183, 0.12);
}

.metric-card {
  margin: 38px 0 26px;
}

.metric-card span {
  color: var(--muted);
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: -0.08em;
}

.metric-card p {
  max-width: 360px;
  color: var(--muted);
}

.chart-bars {
  height: 190px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 12px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(0, 0, 0, 0.2);
}

.chart-bars span {
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--brand-3), var(--brand-2));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.mini-grid div {
  border-radius: 18px;
  padding: 18px;
  box-shadow: none;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 0;
}

.trust-item,
.service-card,
.blog-card {
  border-radius: var(--radius-md);
  padding: 28px;
}

.icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 16px;
  background: rgba(255, 122, 69, 0.12);
  color: var(--brand);
  font-weight: 900;
}

.trust-item h2,
.service-card h3,
.blog-card h3,
.about-points h3,
.footer h2 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.about,
.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 58px;
}

.about-visual {
  min-height: 560px;
  position: relative;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(124, 92, 255, 0.25), rgba(255, 122, 69, 0.12)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1000&q=80") center/cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.about-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(8, 11, 22, 0.86));
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
}

.orb-one {
  width: 150px;
  height: 150px;
  top: 38px;
  right: 48px;
  background: rgba(40, 215, 183, 0.26);
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: -60px;
  left: -70px;
  background: rgba(255, 122, 69, 0.28);
}

.play-card {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 11, 22, 0.72);
  backdrop-filter: blur(16px);
}

.play-card p {
  margin: 0;
  color: var(--text);
  font-weight: 700;
}

.play-button {
  flex: 0 0 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.section-copy h2,
.section-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.section-copy > p {
  margin-bottom: 28px;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 32px;
}

.about-points article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.about-points p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -50px -70px auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(124, 92, 255, 0.18);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 69, 0.44);
  background: var(--panel-strong);
}

.service-card a {
  color: var(--brand-3);
  font-weight: 800;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.people-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px 48px;
  width: 100%;
}

.people-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: visible;
  max-width: 240px;
  margin: 0;
  flex: 0 0 auto;
  text-align: center;
  transition: none;
}

.people-card:hover {
  transform: none;
  border: 0;
  background: transparent;
}

.people-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 152px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.people-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 220ms ease, opacity 220ms ease;
}

.people-card:hover .people-photo img {
  transform: scale(1.03);
}

.people-card:focus-within .people-photo img {
  transform: scale(1.03);
}

.people-info {
  padding: 18px 8px 0;
}

.people-info h3 {
  margin: 0 0 6px;
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.people-role {
  margin: 0;
  color: var(--brand-3);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  opacity: 0.92;
}

.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
}

.contact-form-col {
  text-align: left;
}

.contact-form-title {
  margin: 0 0 20px;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
  color: var(--text);
}

.contact-form-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.contact-form-lead:last-of-type {
  margin-bottom: 28px;
}

.contact-inquiry-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 28px 30px 32px;
}

.contact-inquiry-form .form-grid {
  margin-bottom: 0;
}

.contact-field-span {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-inquiry-form textarea {
  margin: 0;
  min-height: 140px;
}

.contact-submit {
  margin-top: 20px;
  width: 100%;
}

.contact-form-status {
  margin: 14px 0 0;
  min-height: 1.4em;
  color: var(--brand-3);
  font-weight: 700;
}

.contact-details-col {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 28px 28px 24px;
}

.contact-details-title {
  margin: 0 0 22px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.contact-details-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: white;
}

.contact-detail-label {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.contact-detail-value {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-detail-value a {
  color: var(--brand-3);
  font-weight: 700;
}

.contact-detail-value a:hover,
.contact-detail-value a:focus-visible {
  color: var(--text);
}

.contact-detail-sep {
  color: var(--muted);
  font-weight: 500;
}

.contact-map {
  margin-top: 22px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  min-height: 220px;
  background: rgba(0, 0, 0, 0.25);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.footer-address {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-card span {
  color: var(--brand);
  font-weight: 900;
}

.quote {
  align-items: start;
}

.phone-card {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border-radius: 20px;
  padding: 16px 22px;
}

.phone-card span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.quote-form {
  border-radius: var(--radius-lg);
  padding: 30px;
}

.quote-form h2 {
  margin-bottom: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  outline: 0;
  padding: 15px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

select option {
  background: #111827;
  color: white;
}

textarea {
  resize: vertical;
  margin: 16px 0;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand-3);
  box-shadow: 0 0 0 4px rgba(40, 215, 183, 0.13);
}

.quote-form .button {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--brand-3);
  font-weight: 700;
}

.footer {
  border-top: 1px solid var(--line);
  background: #060813;
}

.footer-grid {
  width: var(--container);
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.85fr 1.1fr;
  gap: 44px;
}

.footer h2 {
  color: white;
}

.footer a:not(.brand),
.footer p {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
}

.footer a:hover {
  color: white;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: white;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.social-links a svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: var(--brand-3);
  border-color: rgba(40, 215, 183, 0.45);
  background: rgba(40, 215, 183, 0.12);
  transform: translateY(-2px);
}

.newsletter-form {
  display: flex;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.newsletter-form input {
  border: 0;
  background: transparent;
  padding: 10px;
}

.newsletter-form button {
  border: 0;
  border-radius: 12px;
  padding: 0 14px;
  background: white;
  color: #101625;
  font-weight: 800;
  cursor: pointer;
}

.footer-bottom {
  width: var(--container);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 18px 40px rgba(124, 92, 255, 0.28);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .hero,
  .about,
  .quote {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .service-grid,
  .blog-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .people-grid {
    gap: 28px 40px;
  }

  .contact-split {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 1120px);
    --header-height: 72px;
  }

  .navbar {
    min-height: var(--header-height);
  }

  .menu-toggle {
    display: block;
  }

  .nav-panel {
    position: fixed;
    inset: calc(var(--header-height) + 6px) 14px auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(8, 11, 22, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-panel.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-panel a {
    padding: 12px;
  }

  h1 {
    font-size: clamp(2.8rem, 16vw, 4.6rem);
  }

  .hero-stats,
  .trust-strip,
  .service-grid,
  .blog-grid,
  .about-points,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .people-grid {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .about-visual {
    min-height: 420px;
  }

  .footer-bottom,
  .hero-card-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
