@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #0a0b12;
  --bg-soft: #121524;
  --panel: rgba(18, 21, 36, 0.82);
  --panel-strong: rgba(15, 18, 33, 0.96);
  --line: rgba(132, 145, 255, 0.22);
  --text: #f5f7ff;
  --muted: #aeb4d6;
  --muted-strong: #ced3ef;
  --accent: #5d63ff;
  --accent-soft: #7f84ff;
  --accent-warm: #ffb86b;
  --success: #86d8ae;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100vw - 32px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(93, 99, 255, 0.16), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(255, 184, 107, 0.12), transparent 22%),
    linear-gradient(180deg, #090a10 0%, #0c0f1a 45%, #090a10 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 80%);
  pointer-events: none;
  z-index: -1;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: 100%;
  overflow-x: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(10, 11, 18, 0.72);
  border-bottom: 1px solid rgba(132, 145, 255, 0.1);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(145deg, #161928, #050609);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-mark svg {
  width: 18px;
  height: 18px;
}

.brand-wordmark {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.brand-wordmark span:last-child {
  color: var(--accent-soft);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--success), #3d9367);
  box-shadow: 0 0 0 7px rgba(134, 216, 174, 0.12);
}

.hero {
  position: relative;
  padding: 88px 0 54px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.surface-card,
.section-banner,
.form-card,
.faq-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  max-width: 760px;
}

.hero-copy::after,
.hero-panel::after,
.surface-card::after,
.section-banner::after,
.form-card::after {
  content: "";
  position: absolute;
  inset: auto auto -20% -15%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(93, 99, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.hero h1,
.section-heading h1,
.page-hero h1 {
  margin: 0 0 18px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.hero h1 .accent,
.section-heading h1 .accent,
.page-hero h1 .accent {
  color: var(--accent-soft);
}

.hero-copy p,
.section-heading p,
.page-hero p,
.surface-card p,
.metric-card p,
.faq-item p,
.service-card p,
.list-note {
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.02rem;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 18px 40px rgba(93, 99, 255, 0.28);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-ghost {
  color: var(--muted-strong);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.hero-panel {
  padding: 28px;
  display: grid;
  gap: 20px;
}

.panel-kicker,
.mini-label {
  color: var(--accent-warm);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.preview-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    linear-gradient(150deg, rgba(93, 99, 255, 0.22), rgba(255, 184, 107, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #10121d;
}

.preview-browser {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.preview-address {
  margin-left: auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.83rem;
}

.preview-stage {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.preview-stage::before {
  content: "";
  position: absolute;
}

.preview-hero {
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(140deg, rgba(93, 99, 255, 0.32), rgba(10, 11, 18, 0.2)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
}

.preview-title {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.preview-lines {
  display: grid;
  gap: 10px;
}

.preview-line {
  height: 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-line.short {
  width: 58%;
}

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

.preview-feature {
  padding: 16px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.hero-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: 38px 0 54px;
}

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

.section-heading h2,
.page-hero h2,
.section-banner h2 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

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

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

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

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

.surface-card {
  padding: 24px;
}

.surface-card h3,
.service-card h3,
.faq-item summary,
.metric-card strong {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.surface-card h3,
.service-card h3 {
  font-size: 1.35rem;
}

.surface-card ul,
.service-card ul,
.simple-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.surface-card li,
.service-card li,
.simple-list li {
  display: flex;
  gap: 10px;
  color: var(--muted-strong);
  line-height: 1.6;
}

.surface-card li::before,
.service-card li::before,
.simple-list li::before {
  content: "";
  flex: 0 0 10px;
  height: 10px;
  margin-top: 9px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 0 6px rgba(93, 99, 255, 0.1);
}

.demo-card {
  display: grid;
  gap: 18px;
}

.demo-visual {
  min-height: 220px;
  padding: 22px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(93, 99, 255, 0.2), rgba(255, 184, 107, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.demo-visual.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(255, 184, 107, 0.18), rgba(93, 99, 255, 0.16));
}

.demo-visual strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.demo-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.demo-meta span {
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--muted-strong);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.metric-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.metric-card strong {
  display: block;
  font-size: 1.1rem;
}

.metric-card p {
  margin: 8px 0 0;
  font-size: 0.96rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 18px 0 2px;
}

.price strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2.25rem;
  letter-spacing: -0.06em;
}

.price span {
  color: var(--muted);
}

.tag {
  display: inline-flex;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(134, 216, 174, 0.12);
  color: #b9f0cd;
  border: 1px solid rgba(134, 216, 174, 0.18);
  font-size: 0.84rem;
  font-weight: 700;
}

.service-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card.featured {
  border-color: rgba(255, 184, 107, 0.34);
}

.service-card .topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.page-hero {
  padding: 72px 0 28px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 28px;
  align-items: center;
}

.page-hero-card,
.section-banner,
.form-card {
  padding: 30px;
}

.section-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
}

.detail-grid {
  display: grid;
  gap: 14px;
}

.detail-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.detail-item strong {
  display: block;
  margin-bottom: 7px;
}

.process-list {
  counter-reset: process;
  display: grid;
  gap: 18px;
}

.process-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step::before {
  counter-increment: process;
  content: "0" counter(process);
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(93, 99, 255, 0.16), rgba(93, 99, 255, 0.4));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.faq-stack {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-size: 1.08rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p,
.faq-item .faq-body {
  padding: 0 24px 22px;
  margin: 0;
}

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

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

.field label {
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 16px;
  color: var(--text);
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

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

.field-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.site-footer {
  padding: 44px 0 56px;
  border-top: 1px solid rgba(132, 145, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.7fr);
  gap: 20px;
}

.footer-grid h3,
.footer-grid h4 {
  margin: 0 0 12px;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.legal-copy {
  color: var(--muted);
  line-height: 1.8;
}

.legal-copy h2 {
  margin: 28px 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.legal-copy ul {
  margin: 16px 0;
  padding-left: 20px;
  color: var(--muted-strong);
  line-height: 1.8;
}

.tiny {
  color: var(--muted);
  font-size: 0.92rem;
}


.section-features {
  padding: 48px 0 32px;
}

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

.feature-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid rgba(132, 145, 255, 0.22);
  background: rgba(18, 21, 36, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(93, 99, 255, 0.22), rgba(93, 99, 255, 0.08));
  border: 1px solid rgba(93, 99, 255, 0.28);
  color: var(--accent-soft);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.section-book {
  padding: 54px 0;
}

.calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(93, 99, 255, 0.2);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .page-hero-grid,
  .section-banner,
  .contact-split,
  .footer-grid,
  .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .header-row {
    min-height: 76px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 20px;
    background: rgba(10, 11, 18, 0.97);
    border: 1px solid rgba(132, 145, 255, 0.18);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a,
  .header-actions .button-ghost {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    display: none;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .section-banner,
  .form-card {
    padding: 28px;
  }

  .preview-feature-grid,
  .form-grid,
  .grid-2,
  .grid-3,
  .example-concepts-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
.calendly-inline-widget {
    height: 900px !important;
  }

  .hero {
    padding-top: 58px;
  }

  .hero-copy,
  .hero-panel,
  .page-hero-card,
  .section-banner,
  .surface-card,
  .service-card,
  .form-card {
    border-radius: 22px;
  }

  .hero h1,
  .page-hero h1,
  .section-heading h2,
  .section-banner h2 {
    line-height: 1.02;
  }

  .button {
    width: 100%;
  }

  .price {
    flex-direction: column;
    align-items: start;
    gap: 2px;
  }
}
