/* 7 Day Build — Premium dark luxury */

:root {
  --bg: #09090b;
  --bg-elevated: #0f0f12;
  --bg-card: #121216;
  --bg-soft: #f4f4f5;
  --bg-soft-2: #e4e4e7;
  --text: #fafafa;
  --text-muted: #a1a1aa;
  --text-dim: #71717a;
  --text-dark: #18181b;
  --text-dark-muted: #52525b;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --accent-rgb: 45, 212, 191;
  --accent: rgb(var(--accent-rgb));
  --accent-dim: #14b8a6;
  --accent-hover: #5eead4;
  --accent-contrast: #042f2e;
  --accent-glow: rgba(var(--accent-rgb), 0.25);
  --surface-tint: rgba(255, 255, 255, 0.02);
  --danger-soft: #3f1d1d;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --font: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: var(--bg);
  padding: 0.5rem 1rem;
  z-index: 200;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* Shared: bordered surface (cards, panels, media frames) */
.build-card,
.compare-col,
.project-media,
.project-gallery figure,
.work-card,
.price-card,
.about-stat,
.acc-item,
.calendly-shell,
.also-chip,
.hero-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Shared: uppercase micro-label */
.eyebrow,
.project-tag,
.project-meta dt,
.compare-badge,
.price-badge,
.about-stat span,
.also-built-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Shared: accent pill badge */
.compare-badge,
.price-badge {
  font-weight: 700;
  color: var(--accent-contrast);
  background: var(--accent);
  border-radius: var(--radius-pill);
}

/* Shared: accent link hover */
.text-link:hover,
.final-alt a:hover,
.footer-contact a:hover {
  color: var(--accent-hover);
}

/* Shared: keyboard focus ring */
.btn:focus-visible,
.acc-btn:focus-visible {
  outline: 2px solid var(--accent);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 0.15s var(--ease), background 0.15s, border-color 0.15s, box-shadow 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: var(--accent-contrast);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.3), 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--accent-contrast);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn:focus-visible {
  outline-offset: 3px;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(9, 9, 11, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.nav-logo-img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-left: 1rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.15s;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0;
}

.nav-dropdown-btn:hover,
.nav-dropdown:focus-within .nav-dropdown-btn {
  color: var(--text);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow: var(--shadow);
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.nav-dropdown-menu a {
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.nav-dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.hero-icp {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--text);
  font-weight: 500;
}

.hero-scarcity,
.price-scarcity {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}

.price-scarcity {
  text-align: center;
  max-width: none;
}

.cred-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.5rem;
}

.cred-thumbs figure {
  margin: 0;
  width: 140px;
}

.cred-thumbs img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cred-thumbs figcaption {
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.trust-badges li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 212, 191, 0.22);
  background: rgba(45, 212, 191, 0.06);
}

.badge-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.badge-row img {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 8px;
}

.price-anchor,
.price-guarantee,
.final-guarantee {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  font-size: 0.925rem;
  line-height: 1.55;
}

.price-anchor {
  margin-top: 1rem;
  color: var(--text-muted);
}

.price-guarantee,
.final-guarantee {
  margin-top: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.final-guarantee {
  margin-top: 1rem;
}

.founder-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 0 1.5rem;
}

.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: #042f2e;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(145deg, var(--accent), #0f766e);
  border: 1px solid rgba(45, 212, 191, 0.45);
  box-shadow: 0 12px 32px rgba(45, 212, 191, 0.18);
  flex-shrink: 0;
}

.founder-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 !important;
}

.founder-role {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin: 0.15rem 0 0.35rem !important;
}

.footer-founder {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.also-built {
  margin-top: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.also-built-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.also-built-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.also-chip {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.also-chip:hover {
  border-color: rgba(45, 212, 191, 0.3);
  transform: translateY(-2px);
}

.also-chip h3 {
  font-size: 1rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

.also-chip p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.nav-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  border-radius: 10px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s var(--ease), opacity 0.2s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.75px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.75px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.mobile-menu a {
  padding: 0.85rem 0;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 1rem;
  border: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 4.5rem 0 5.5rem;
  overflow: hidden;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black, transparent);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-orb-a {
  width: 420px;
  height: 420px;
  top: -80px;
  right: 10%;
  background: rgba(var(--accent-rgb), 0.12);
}

.hero-orb-b {
  width: 360px;
  height: 360px;
  bottom: 0;
  left: 5%;
  background: rgba(99, 102, 241, 0.08);
}

.hero-content {
  max-width: 640px;
}

.hero-proof {
  position: relative;
}

.hero-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #0c0c0f;
  box-shadow:
    0 0 0 1px rgba(45, 212, 191, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.55),
    0 0 80px rgba(45, 212, 191, 0.08);
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s var(--ease);
}

.hero-proof:hover .hero-frame {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.hero-frame-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 0.9rem;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border);
}

.hero-frame-chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-frame-chrome span:nth-child(1) { background: #f87171; }
.hero-frame-chrome span:nth-child(2) { background: #fbbf24; }
.hero-frame-chrome span:nth-child(3) { background: #34d399; }

.hero-frame-chrome em {
  margin-left: 0.75rem;
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.hero-float-chip {
  position: absolute;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(9, 9, 11, 0.88);
  border: 1px solid rgba(45, 212, 191, 0.35);
  color: var(--text);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  animation: float-chip 4.5s ease-in-out infinite;
}

.hero-float-a {
  top: 10%;
  left: -4%;
  color: var(--accent);
}

.hero-float-b {
  bottom: 12%;
  right: -2%;
  animation-delay: 1.1s;
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-title {
  font-size: clamp(2.75rem, 7vw, 4.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: 1.25rem;
}

.text-accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: none;
}

.hero-support {
  font-size: 1.0625rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.hero-support strong {
  color: var(--text);
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-pills li {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--surface-tint);
}

/* Credibility */
.cred {
  padding: 2.5rem 0;
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
}

.cred-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.cred-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cred-num {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.cred-label {
  font-size: 0.875rem;
  color: var(--text-dim);
}

.cred-line {
  font-size: 0.8125rem;
  color: var(--text-dim);
  letter-spacing: 0.01em;
  max-width: none;
  line-height: 1.6;
}

/* Sections */
.section {
  padding: 7rem 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3.5rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.lede {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 40rem;
}

/* Healthcare callout */
.healthcare {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.06), transparent 40%), var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 5rem 0;
}

.healthcare-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.healthcare-copy h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: -0.035em;
  margin-bottom: 1rem;
}

.healthcare-copy > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 36rem;
}

.healthcare-list {
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.healthcare-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.healthcare-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.healthcare-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.healthcare-live {
  font-size: 0.875rem;
  color: var(--text-dim);
  max-width: none;
}

.healthcare-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.healthcare-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top;
}

.not-for {
  margin-top: 0.85rem;
  font-size: 0.95rem !important;
  color: var(--text-dim) !important;
}

.price-compare-wrap {
  overflow-x: auto;
  margin: 2rem 0 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.price-compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: 0.875rem;
}

.price-compare th,
.price-compare td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.price-compare thead th {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.02);
}

.price-compare tbody th {
  font-weight: 500;
  color: var(--text-muted);
}

.price-compare td {
  color: var(--accent);
  font-weight: 600;
  text-align: center;
}

.price-compare td:first-child,
.price-compare th:first-child {
  text-align: left;
}

.price-compare tbody tr:last-child th,
.price-compare tbody tr:last-child td {
  border-bottom: none;
}

/* Build cards */
.build {
  background: var(--bg);
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.build-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s;
  min-height: 180px;
}

.build-card:hover {
  border-color: rgba(var(--accent-rgb), 0.35);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.06), transparent);
}

.build-icon {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

.build-card h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.build-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Why / compare */
.why {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(var(--accent-rgb), 0.06), transparent);
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.compare-col {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.compare-bad {
  background: var(--surface-tint);
}

.compare-bad h3 {
  color: var(--text-dim);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.compare-bad li {
  color: var(--text-dim);
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.975rem;
}

.compare-bad li::before {
  content: "– ";
  opacity: 0.5;
}

.compare-good {
  position: relative;
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.1), rgba(18, 18, 22, 0.9));
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.08), 0 24px 60px rgba(0, 0, 0, 0.35);
}

.compare-badge {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  margin-bottom: 1rem;
}

.compare-good h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.compare-good li {
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(var(--accent-rgb), 0.15);
  font-size: 0.975rem;
  color: var(--text);
}

.compare-good li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

/* Timeline */
.process {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.timeline {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5.5rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 255, 255, 0.08));
}

.tl-item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2rem;
  padding: 1.35rem 0;
  position: relative;
}

.tl-day {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
  padding-top: 0.15rem;
}

.tl-body {
  padding-left: 1.5rem;
  border-left: none;
  position: relative;
}

.tl-body::before {
  content: "";
  position: absolute;
  left: -1.55rem;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.12);
}

.tl-body h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.35rem;
}

.tl-body p {
  color: var(--text-dim);
  font-size: 0.975rem;
}

/* Work / portfolio */
.project {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 5rem;
}

.project-flip {
  direction: rtl;
}

.project-flip > * {
  direction: ltr;
}

.project-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.project-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
}

.project-tag {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.project-copy h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.project-desc {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.02rem;
}

.project-meta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.project-meta dt {
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 0.25rem;
}

.project-meta dd {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.text-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.project-gallery figure {
  overflow: hidden;
  background: var(--bg-card);
}

.project-gallery img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  object-position: top;
}

.project-gallery figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  border-top: 1px solid var(--border);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.work-card {
  background: var(--bg-card);
  padding: 1.25rem;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.work-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.work-mock {
  height: 140px;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  background: linear-gradient(145deg, #18181b, #0c0c0e);
  padding: 1rem;
  overflow: hidden;
}

.work-mock-a .wm-bar {
  height: 8px;
  width: 40%;
  background: rgba(var(--accent-rgb), 0.5);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.work-mock-a .wm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.work-mock-a .wm-grid span {
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.work-mock-b {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0.75rem;
}

.work-mock-b .wm-list i {
  display: block;
  height: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  margin-bottom: 0.5rem;
}

.work-mock-b .wm-panel {
  border-radius: 8px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
}

.work-mock-c .wm-dna {
  height: 48px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 50%, rgba(var(--accent-rgb), 0.4), transparent 40%),
    radial-gradient(circle at 70% 40%, rgba(129, 140, 248, 0.35), transparent 40%),
    rgba(255, 255, 255, 0.03);
  margin-bottom: 0.75rem;
}

.work-mock-c .wm-chips {
  display: flex;
  gap: 0.4rem;
}

.work-mock-c .wm-chips b {
  flex: 1;
  height: 22px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
}

.work-card h3 {
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.work-card > p {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.work-card ul li {
  font-size: 0.8125rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-top: 1px solid var(--border);
}

.work-card ul strong {
  color: var(--text);
  font-weight: 600;
}

/* Pricing */
.pricing {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-featured {
  border-color: rgba(var(--accent-rgb), 0.45);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.1), var(--bg-card) 40%);
  box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.1), 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: scale(1.02);
}

.price-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.75rem;
}

.price-card h3 {
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.price-amount {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.price-amount strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-top: 0.15rem;
}

.price-desc {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  flex: 0 0 auto;
}

.price-card ul {
  flex: 1;
  margin-bottom: 1.75rem;
}

.price-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.45rem 0 0.45rem 1.25rem;
  position: relative;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

.price-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  max-width: none;
}

/* About */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  margin-bottom: 1.25rem;
}

.about-copy p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  max-width: 38rem;
}

.about-sign {
  color: var(--text) !important;
  font-weight: 600;
  font-size: 1.125rem !important;
  margin-top: 1.5rem;
}

.about-panel {
  display: grid;
  gap: 0.75rem;
}

.about-stat {
  padding: 1.15rem 1.25rem;
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.06), transparent);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-stat span {
  display: block;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

/* FAQ */
.faq {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 720px;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.acc-item {
  background: var(--bg-card);
  overflow: hidden;
}

.acc-item h3 {
  font-size: inherit;
  font-weight: inherit;
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: background 0.15s;
}

.acc-btn:hover {
  background: var(--surface-tint);
}

.acc-btn:focus-visible {
  outline-offset: -2px;
}

.acc-icon {
  width: 1.1rem;
  height: 1.1rem;
  position: relative;
  flex-shrink: 0;
}

.acc-icon::before,
.acc-icon::after {
  content: "";
  position: absolute;
  background: var(--text-muted);
  border-radius: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.acc-icon::before {
  width: 12px;
  height: 1.5px;
}

.acc-icon::after {
  width: 1.5px;
  height: 12px;
  transition: opacity 0.2s, transform 0.2s;
}

.acc-btn[aria-expanded="true"] .acc-icon::after {
  opacity: 0;
}

.acc-panel {
  padding: 0 1.25rem 1.25rem;
}

.acc-panel p {
  color: var(--text-muted);
  font-size: 0.975rem;
  line-height: 1.65;
}

.acc-panel[hidden] {
  display: none;
}

/* Final CTA */
.final {
  padding: 6rem 0 5rem;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(var(--accent-rgb), 0.12), transparent 55%),
    var(--bg);
  text-align: center;
}

.final-copy {
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.final-copy h2 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}

.final-copy p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: none;
}

.calendly-shell {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.calendly-inline-widget {
  min-width: 320px;
  height: 720px;
}

.final-alt {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: var(--text-dim);
  max-width: none;
}

.final-alt a {
  color: var(--accent);
  font-weight: 600;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
  background: #050507;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-dim);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

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

.footer-contact a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--accent);
}

.footer-bottom {
  padding-top: 1.25rem;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--text-dim);
  max-width: none;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-frame {
    transform: none;
  }

  .hero-float-a { left: 2%; }
  .hero-float-b { right: 2%; }

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

  .project,
  .project-flip {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .price-featured {
    transform: none;
  }

  .also-built-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu:not([hidden]) {
    display: flex;
  }

  .cred-track {
    grid-template-columns: 1fr 1fr;
  }

  .compare,
  .about-grid,
  .healthcare-grid,
  .price-grid,
  .work-grid,
  .project-gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  .hero-float-chip {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .timeline::before {
    left: 0.35rem;
  }

  .tl-item {
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding-left: 1.75rem;
  }

  .tl-body {
    padding-left: 0;
  }

  .tl-body::before {
    left: -1.55rem;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  body.nav-open {
    overflow: hidden;
  }
}

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

  .cred-track {
    grid-template-columns: 1fr;
  }

  .calendly-inline-widget {
    height: 680px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-float-chip {
    animation: none;
  }

  .hero-frame {
    transform: none;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
