html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
:root {
  --bg: #050813;
  --bg-alt: #0c1020;
  --bg-soft: #0b1023;
  --accent: #ff6bb1;
  --accent-2: #7ac7ff;
  --accent-soft: rgba(255, 107, 177, 0.14);
  --text: #f7f8ff;
  --muted: #a5aac2;
  --border-subtle: rgba(148, 163, 184, 0.25);
  --card-bg: rgba(10, 16, 36, 0.96);
  --radius-xl: 24px;
  --shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.72);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", sans-serif;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: radial-gradient(circle at top, #111827 0, #050813 48%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
main {
  min-height: 60vh;
}
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}
.container.narrow {
  width: min(840px, 100% - 2.5rem);
}
.section {
  padding: 3.8rem 0 4.2rem;
}
.section-alt {
  background: radial-gradient(circle at top left, #1f2937 0, #020617 65%);
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}
.section-alt h2,
.section-alt .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: linear-gradient(to bottom, rgba(5, 8, 19, 0.98), rgba(5, 8, 19, 0.9) 60%, transparent 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 0.18rem;
}
.triangle {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
}
.triangle-up {
  border-bottom: 18px solid var(--accent-2);
}
.triangle-down {
  border-top: 18px solid var(--accent);
}
.logo-text {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.logo-wordmark {
  font-size: 0.94rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.9rem;
}
.main-nav a {
  color: var(--muted);
  position: relative;
  padding-bottom: 0.15rem;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 0.18s ease-out;
}
.main-nav a:hover {
  color: var(--text);
}
.main-nav a:hover::after {
  width: 100%;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.18s ease-out,
    border-color 0.18s ease-out,
    color 0.18s ease-out,
    transform 0.12s ease-out;
}
.btn-primary {
  background: radial-gradient(circle at top left, var(--accent) 0, #b91c5c 46%, #0f172a 100%);
  border-color: rgba(248, 113, 164, 0.6);
  color: #fff;
  box-shadow: 0 18px 38px rgba(248, 113, 165, 0.25);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(248, 113, 165, 0.32);
}
.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
}
.btn-outline:hover {
  background: rgba(15, 23, 42, 0.85);
}
.btn-link {
  background: transparent;
  border-color: transparent;
  color: var(--accent-2);
}
.btn-link:hover {
  color: #e5e7eb;
}
/* Hero */
.hero {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding-top: 2.6rem;
  padding-bottom: 3.4rem;
}
.hero-shell {
  width: min(980px, 100% - 2.5rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.2fr);
  gap: 1.8rem;
  align-items: center;
}
.hero-quote-block {
  position: relative;
  padding-left: 1.4rem;
}
.hero-quote-block::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 3px;
  height: 3.8rem;
  background: linear-gradient(to bottom, var(--accent), var(--accent-2));
  border-radius: 999px;
}
.hero-quote-main {
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  line-height: 1.4;
  font-weight: 500;
  max-width: 24rem;
}
.hero-quote-main span {
  color: var(--accent-2);
}
.hero-quote-author {
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.hero-quote-author span {
  color: var(--accent);
}
.hero-undertext {
  margin-top: 1.5rem;
  max-width: 25rem;
  font-size: 0.98rem;
  color: var(--muted);
}
.hero-panel {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 1.9rem 2rem 2.1rem;
  border: 1px solid var(--border-subtle);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.75),
    0 0 0 1px rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(18px);
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--accent-2);
  margin-bottom: 0.4rem;
}
.hero-title {
  font-size: 1.85rem;
  margin-bottom: 0.8rem;
}
.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.35rem;
  font-size: 1.02rem;
  color: var(--muted);
}
.hero-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}
.hero-list li::before {
  content: "•";
  color: var(--accent-2);
  margin-top: 0.05rem;
}
.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-note {
  font-size: 0.92rem;
  color: var(--muted);
}
h1 {
  font-size: clamp(1.9rem, 3vw, 2.3rem);
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 0.85rem;
}
.section-intro {
  font-size: 1.06rem;
  color: var(--muted);
  max-width: 40rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.7rem;
  margin-top: 1.6rem;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.card {
  background: rgba(9, 13, 33, 0.96);
  border-radius: 18px;
  padding: 1.4rem 1.5rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.65);
}
.card-title {
  font-size: 1.18rem;
  margin-bottom: 0.5rem;
}
.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.7rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--muted);
  margin-bottom: 0.6rem;
}
.card-price {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.card p {
  font-size: 1rem;
  color: var(--muted);
}
.section-testimonials {
  background: radial-gradient(circle at top right, #1f2937 0, #050813 55%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 1.4rem;
}
.testimonial-card {
  background: rgba(9, 13, 33, 0.96);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.65);
  font-size: 0.94rem;
  color: var(--muted);
}
.testimonial-title {
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: var(--text);
}
.testimonial-author {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: var(--muted);
}
.section-about {
  background: radial-gradient(circle at center, #0b1120 0, #050813 55%);
}
.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: 2.4rem;
  margin-top: 1.6rem;
  align-items: flex-start;
}
.about-hook h2 {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
}
.about-hook p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}
.about-left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about-bodygraph img {
  display: block;
  max-width: 260px;
  width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}


.bodygraph-full {
  margin: 1.6rem auto 2.1rem;
  max-width: 460px;
}
.bodygraph-full img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  background: radial-gradient(circle at top, #020617 0, #020617 40%, #020617 100%);
}
.about-text {
  position: relative;
}
.about-portrait {
  float: right;
  max-width: 260px;
  height: auto;
  margin: 0 0 1.4rem 1.6rem;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.26);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}
.about-cta {
  margin-top: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.about-text p {
  font-size: 0.96rem;
  color: var(--muted);
}
.section-what-is {
  background: linear-gradient(145deg, #020617 0%, #020617 45%, #111827 100%);
}
.what-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  margin-top: 1.4rem;
}

.hd-quote {
  margin-bottom: 3.4rem;
}

.hd-quote p {
  margin: 0.1rem 0;
}

.quote-highlight {
  color: var(--accent-2);
}

.what-quote {
  border-left: 2px solid rgba(122, 199, 255, 0.6);
  padding-left: 1.1rem;
  font-size: 0.94rem;
  color: var(--muted);
}
.what-quote strong {
  color: var(--accent-2);
}
.section-faq h1 {
  margin-bottom: 0.8rem;
}
.faq-item {
  background: rgba(9, 13, 33, 0.96);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.7rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin-top: 0.55rem;
  font-size: 0.94rem;
  color: var(--muted);
}
.faq-micro {
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
}
.faq-micro h2 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}
.faq-micro ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
}
.faq-micro li {
  margin-bottom: 0.4rem;
}
.form-card {
  background: rgba(9, 13, 33, 0.96);
  border-radius: 18px;
  padding: 1.7rem 1.7rem 1.9rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  margin-top: 1.4rem;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.1rem 1.2rem;
}
label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 0.9rem;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.form-footer {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}
.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
}
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  padding: 1.6rem 0 2rem;
  margin-top: 1rem;
  background: rgba(3, 6, 18, 0.98);
}
.footer-inner {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
  font-size: 0.82rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
@media (max-width: 880px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  .main-nav {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }
  .hero {
    padding-top: 1.8rem;
  }
  .hero-shell {
    grid-template-columns: 1fr;
    gap: 2.6rem;
  }
  .hero-panel {
    padding: 1.7rem 1.6rem 1.9rem;
  }
  .what-layout {
    grid-template-columns: 1fr;
  }
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-portrait {
    float: none;
    display: block;
    margin: 0 auto 1.3rem auto;
  }
  .about-hook {
    order: -1;
  }
}
:where(a, button, input, textarea):focus-visible {
  outline: 2px solid rgba(122, 199, 255, 0.9);
  outline-offset: 2px;
}


@media (min-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}


.scheduler-wrapper {
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
}

.scheduler-wrapper .scheduler-heading {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.scheduler-wrapper .form-hint {
  margin-bottom: 0.9rem;
}


/* Social page */
.section-social .section-intro {
  max-width: 42rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}

.social-card {
  min-height: 0;
}

.social-card .btn {
  margin-top: 0.7rem;
}

.microcopy {
  margin-top: 1.8rem;
  font-size: 0.86rem;
  color: var(--muted);
}


/* Services page custom stack layout */
.cards-grid.services-stack {
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
}

.service-card h2 {
  font-size: 1.25rem;
  margin-bottom: 0.35rem;
}

.service-meta {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.service-card ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.1rem;
}

.service-card li {
  font-size: 0.95rem;
  color: var(--muted);
}



.payment-list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.payment-list li {
  font-size: 0.95rem;
  line-height: 1.5;
}
.payment-list li .btn {
  margin-top: 0.35rem;
}
.payment-note {
  margin: 1.4rem 0 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
}

.payment-note .btn {
  margin-top: 0.15rem;
}


.service-actions {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.service-actions .btn-primary {
  background: #2b3b57; /* neutral deep slate */
  color: #f4b1cb;      /* soft pink from logo */
  box-shadow: 0 8px 24px rgba(43, 59, 87, 0.35);
}
.service-actions .btn-primary:hover {
  background: #354667;
  color: #ffe0ee;
}


/* Mobile refinements */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
  }
  .about-bodygraph {
    margin: 1.5rem auto 0;
    text-align: center;
  }
  .about-bodygraph img {
    max-width: 260px;
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}


.availability-highlight {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 600;
}


/* Why this work section */
.why-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.why-card {
  padding: 1.4rem 1.5rem 1.6rem;
  border-radius: 1rem;
  background: radial-gradient(circle at top left, rgba(124, 58, 237, 0.18), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.65);
  font-size: 0.95rem;
  color: var(--muted);
}
.why-title {
  font-size: 1.02rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.why-analyst {
  margin-top: 2.6rem;
  padding: 1.6rem 1.8rem 1.8rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.4);
  position: relative;
}
.why-analyst::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  background: linear-gradient(to right, var(--accent), var(--accent-2)) border-box;
  mask:
    linear-gradient(#000 0 0) padding-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0.45;
}
.why-analyst p {
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Responsive layout for why section */
@media (max-width: 880px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
