/* 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: #2dd4bf;
  --accent-dim: #14b8a6;
  --accent-glow: rgba(45, 212, 191, 0.25);
  --danger-soft: #3f1d1d;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --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;
}

/* 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: 999px;
  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: #042f2e;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.3), 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  background: #5eead4;
  color: #042f2e;
}

.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: 2px solid var(--accent);
  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-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: 5rem 0 6rem;
  overflow: hidden;
}

.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(45, 212, 191, 0.12);
}

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

.hero-transform {
  position: absolute;
  right: max(2%, calc(50% - 520px));
  top: 50%;
  transform: translateY(-48%);
  display: flex;
  align-items: center;
  gap: 1rem;
  opacity: 0.9;
}

.tf-node {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tf-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.tf-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(18, 18, 22, 0.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.tf-sketch {
  width: 140px;
  height: 120px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: center;
}

.tf-sketch i {
  display: block;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  animation: pulse-line 2.4s ease-in-out infinite;
}

.tf-sketch i:nth-child(2) { width: 72%; animation-delay: 0.2s; }
.tf-sketch i:nth-child(3) { width: 48%; animation-delay: 0.4s; }

.tf-beam {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}

.tf-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  animation: beam 2s linear infinite;
}

.tf-app {
  width: 260px;
  overflow: hidden;
}

.tf-chrome {
  display: flex;
  gap: 6px;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

.tf-chrome span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.tf-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tf-row {
  height: 10px;
  width: 40%;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
}

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

.tf-metrics b {
  display: block;
  height: 42px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.tf-metrics b.on {
  background: rgba(45, 212, 191, 0.12);
  border-color: rgba(45, 212, 191, 0.3);
  box-shadow: 0 0 24px var(--accent-glow);
  animation: glow 2.8s ease-in-out infinite;
}

.tf-chart {
  height: 48px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, transparent 30%, rgba(45, 212, 191, 0.15)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 12px,
      rgba(45, 212, 191, 0.35) 12px,
      rgba(45, 212, 191, 0.35) 18px
    );
  background-size: 100% 100%, 100% 60%;
  background-position: bottom, bottom;
  background-repeat: no-repeat;
  opacity: 0.85;
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@keyframes beam {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 16px var(--accent-glow); }
  50% { box-shadow: 0 0 32px rgba(45, 212, 191, 0.4); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  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: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
}

/* 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;
}

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

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

.build-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  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(45, 212, 191, 0.35);
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(45, 212, 191, 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(45, 212, 191, 0.06), transparent);
}

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

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

.compare-bad {
  background: rgba(255, 255, 255, 0.02);
}

.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(45, 212, 191, 0.1), rgba(18, 18, 22, 0.9));
  border-color: rgba(45, 212, 191, 0.35);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.08), 0 24px 60px rgba(0, 0, 0, 0.35);
}

.compare-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #042f2e;
  background: var(--accent);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  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(45, 212, 191, 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(45, 212, 191, 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;
  border: 1px solid var(--border);
  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;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  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-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  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);
}

.text-link:hover {
  color: #5eead4;
}

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

.project-gallery figure {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  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 {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  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;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, #18181b, #0c0c0e);
  padding: 1rem;
  overflow: hidden;
}

.work-mock-a .wm-bar {
  height: 8px;
  width: 40%;
  background: rgba(45, 212, 191, 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(45, 212, 191, 0.08);
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.work-mock-c .wm-dna {
  height: 48px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 50%, rgba(45, 212, 191, 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: 999px;
  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);
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
}

.price-featured {
  border-color: rgba(45, 212, 191, 0.45);
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.1), var(--bg-card) 40%);
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 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%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #042f2e;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}

.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;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(45, 212, 191, 0.06), transparent);
  font-size: 0.95rem;
  color: var(--text-muted);
}

.about-stat span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  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 {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  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: rgba(255, 255, 255, 0.02);
}

.acc-btn:focus-visible {
  outline: 2px solid var(--accent);
  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(45, 212, 191, 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;
  border: 1px solid var(--border);
  background: #09090b;
  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;
}

.final-alt a:hover {
  color: #5eead4;
}

/* 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-contact a:hover {
  color: #5eead4;
}

.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-transform {
    opacity: 0.35;
    right: -5%;
    transform: translateY(-40%) scale(0.85);
  }

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

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

  .price-featured {
    transform: none;
  }
}

@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,
  .price-grid,
  .work-grid,
  .project-gallery,
  .footer-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-transform {
    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;
  }

  .tf-sketch i,
  .tf-beam::after,
  .tf-metrics b.on {
    animation: none;
  }

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