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

:root {
  --orange: #e85d2c;
  --orange-dark: #c94d22;
  --teal: #1a4d4d;
  --teal-dark: #0f3535;
  --charcoal: #1a1a1a;
  --charcoal-light: #2d2d2d;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --bg-light: #f8f6f2;
  --bg-card: #ffffff;
  --border: #e5e7eb;
  --white: #ffffff;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --radius: 0;
  --radius-sm: 0;
  --header-height: 72px;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg-light);
  min-height: 100vh;
  line-height: 1.5;
}

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

/* Header – gradient strip */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--header-height);
  padding: 0 max(32px, calc((100% - 1200px) / 2));
  background: var(--white);
  color: var(--text);
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 1.125rem;
}

.logo-mark {
  width: 28px;
  height: 28px;
  color: var(--orange);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

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

.nav a {
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.95;
}

.nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 0;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s, color 0.2s;
  border: none;
}

.btn-header {
  background: var(--orange);
  color: var(--white);
  text-transform: none;
  letter-spacing: normal;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.btn-header:hover {
  background: var(--orange-dark);
}

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

.btn-header-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 600;
}

.btn-header-secondary:hover {
  background: var(--bg-light);
}

.btn-hero-outline {
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
}

.btn-hero-outline:hover {
  background: var(--bg-light);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--charcoal-light);
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
}

.btn-white:hover {
  background: var(--bg-light);
  color: var(--orange-dark);
}

/* Hero – full-width gradient, centered content */
.hero {
  min-height: 100vh;
  padding: calc(var(--header-height) + 48px) 32px 64px;
  background-color: var(--white);
  color: var(--text);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, #c8c8c8 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  text-align: left;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 8px 16px 8px 12px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
}

.status-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

.status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.hero-title {
  margin: 0 0 16px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text);
}

.hero-desc {
  margin: 0 0 28px;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  object-fit: cover;
}

.hero-cta .btn {
  min-width: 160px;
}

.card-hero {
  width: 100%;
  max-width: 800px;
  margin-top: 0;
}

.card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.card-illustration {
  min-height: 380px;
  background: #0a0e1a;
}

.illustration {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.card-form-wrap {
  padding: 32px 36px 36px;
  background: var(--bg-card);
}

.form-title {
  margin: 0 0 4px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.form-subtitle {
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.form-title.form-title-small {
  font-size: 1.25rem;
}

.form-note {
  margin: 16px 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.input-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.input-textarea {
  resize: vertical;
  min-height: 96px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.input-wrap {
  position: relative;
}

.input {
  width: 100%;
  padding: 10px 40px 10px 12px;
  font-family: inherit;
  font-size: 0.9375rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.2s;
}

.input::placeholder {
  color: var(--text-muted);
}

.input:focus {
  outline: none;
  border-color: var(--orange);
}

.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  border: none;
  background: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-password:hover {
  color: var(--text);
}

.checkbox-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
  cursor: pointer;
}

.checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
}

.btn-submit {
  margin-top: 4px;
  width: 100%;
  padding: 12px;
}

.card-compact {
  max-width: 420px;
  margin: 0 auto;
  display: block;
}

.card-compact .card-form-wrap {
  padding: 24px 24px 28px;
}

/* Sections */
.section {
  padding: 64px 24px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 8px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  text-align: center;
  color: inherit;
}

.section-subtitle {
  margin: 0 0 40px;
  font-size: 1rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.section-subtitle-dark {
  color: var(--text-muted);
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* Dark section – process */
.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.process-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 32px;
  background: #f5f0e8;
  color: var(--text);
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/illustrations/ChatGPT Image Apr 6, 2026, 09_03_13 AM.png') center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

.process-section > .container {
  position: relative;
  z-index: 1;
}

.process-section .section-title {
  color: var(--text);
}

.process-section .section-subtitle {
  color: var(--text-muted);
}

.process-label {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.process-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 480px;
  overflow: hidden;
  border-radius: 0;
}

.process-card-bg {
  position: absolute;
  inset: 0;
  background: #e0e0e0;
  background-size: cover;
  background-position: center;
}

.process-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  margin: 16px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.process-card-title {
  margin: 0 0 8px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.process-card-text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0.9;
  min-height: 4.5em;
}

/* Services grid */
.section-light {
  background: var(--bg-light);
  color: var(--text);
}

.section-light .section-title {
  color: var(--text);
  margin-bottom: 32px;
}

.section-white {
  background: var(--white);
}

.section-white .section-title,
.section-white .section-subtitle-dark {
  color: var(--text);
}

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

.service-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}

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

.service-card-inner {
  padding: 28px 24px 20px;
  flex: 1;
}

.service-card-title {
  margin: 0 0 8px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--orange);
}

.service-card-desc {
  margin: 0 0 12px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.service-card-arrow {
  color: var(--orange);
  font-size: 1.125rem;
}

.service-card-footer {
  display: block;
  padding: 12px 24px;
  background: var(--white);
  color: var(--text-muted);
  font-size: 0.8125rem;
  text-align: center;
}

/* Our work */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.work-preview {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.work-preview-img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border);
  object-fit: cover;
}

.work-preview-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.work-preview-title {
  margin: 0 0 2px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
}

.work-preview-category {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.btn-visit {
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Orange CTA + Pricing */
.section-orange {
  background: var(--orange);
  color: var(--white);
  padding: 106.624px 139px 106.376px 148px;
}

.cta-pricing-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 135px;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-title {
  margin: 0 0 16px;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--white);
}

.cta-desc {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
}

.btn-schedule {
  background: var(--white);
  color: var(--charcoal);
}

.btn-schedule:hover {
  background: var(--bg-light);
}

/* Pricing card (Figma design) */
.pricing-card {
  background: #181319;
  border-radius: 0;
  padding: 34px 38px 40px;
  max-width: 530px;
  width: 100%;
  box-shadow: 0 17px 36px rgba(0, 0, 0, 0.17), 0 66px 66px rgba(0, 0, 0, 0.15), 0 149px 89px rgba(0, 0, 0, 0.09), 0 264px 106px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.pricing-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.pricing-card-heading-wrap {
  flex: 1;
  min-width: 0;
}

.pricing-card-title {
  margin: 0 0 4px;
  font-family: "roc-grotesk", "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--white);
}

.pricing-card-subtitle {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: #aaa;
}

.pricing-card-badge {
  flex-shrink: 0;
  background: #222;
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  padding: 10px 12px;
  border-radius: 0;
  white-space: nowrap;
}

.pricing-card-divider {
  border: none;
  height: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 0 24px;
}

.pricing-card-divider-dashed {
  border-top-style: dashed;
  margin: 24px 0;
}

.pricing-card-price-block {
  margin-bottom: 0;
}

.pricing-card-price {
  margin: 0 0 8px;
  font-family: "roc-grotesk", "Roc Grotesk", "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

.pricing-card-price-suffix {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
  margin-left: 4px;
}

.pricing-card-price-note {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: #aaa;
}

.pricing-card-features {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--white);
}

.pricing-card-features li::before {
  content: "✓";
  flex-shrink: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 1.125rem;
}

.pricing-card-cta {
  margin-top: 32px;
  width: 100%;
  padding: 12px 24px;
  background: var(--white);
  color: var(--charcoal);
  border: 1px solid #aaa;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.pricing-card-cta:hover {
  background: var(--bg-light);
  color: var(--charcoal);
}

/* FAQs */
.faq-container {
  max-width: 640px;
  margin: 0 auto;
}

.faq-container .section-title {
  margin-bottom: 32px;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  margin-bottom: 12px;
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.06);
}

.faq-icon {
  flex-shrink: 0;
  font-size: 1.25rem;
  font-weight: 300;
  transition: transform 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  padding: 0 20px 18px;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 0 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* ==========================================================================
   Final CTA — editorial closing with discovery-call booking pass
   ========================================================================== */

.final-cta-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--bg-light);
  padding: clamp(96px, 13vw, 168px) clamp(24px, 5vw, 64px) clamp(112px, 15vw, 196px);
}

.final-cta-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.final-cta-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(90deg, rgba(26, 26, 26, 0.05) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 18%, black 82%, transparent 100%);
}

.final-cta-wordmark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  bottom: -0.18em;
  right: -0.04em;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(11rem, 26vw, 26rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--charcoal);
  opacity: 0.045;
}

.final-cta-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

.final-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  padding-top: 8px;
}

.final-cta-eyebrow {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.final-cta-title {
  margin: 0;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: clamp(2.25rem, 5.4vw, 4.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--text);
  text-align: left;
  max-width: 14ch;
}

.final-cta-title em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  font-feature-settings: "swsh" 1, "ss01" 1;
  color: var(--orange);
  padding-right: 0.04em;
}

.final-cta-lede {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  line-height: 1.55;
  color: var(--text-muted);
}

.final-cta-meta {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  width: 100%;
  max-width: 480px;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.final-cta-meta li {
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
}

.final-cta-meta a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  color: var(--text);
  transition: color 0.25s ease;
}

.final-cta-meta a::after {
  content: "↗";
  margin-left: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.25s ease, transform 0.25s ease;
}

.final-cta-meta a:hover {
  color: var(--orange);
}

.final-cta-meta a:hover::after {
  color: var(--orange);
  transform: translate(2px, -2px);
}

.final-cta-meta-label {
  flex-shrink: 0;
  min-width: 96px;
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.final-cta-meta-value {
  flex: 1;
  text-align: right;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
}

/* --- Discovery-call booking pass ------------------------------------------ */

.booking-pass {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fffdf8;
  color: var(--text);
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 24px 60px -24px rgba(26, 26, 26, 0.18),
    0 8px 20px -10px rgba(232, 93, 44, 0.18);
  transform: rotate(-1deg);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.55s ease;
}

.booking-pass:hover {
  transform: rotate(-0.2deg) translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.6) inset,
    0 32px 70px -22px rgba(26, 26, 26, 0.22),
    0 12px 26px -10px rgba(232, 93, 44, 0.24);
}

.booking-pass-stub {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 26px 20px;
}

.booking-pass-stub-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-pass-tag {
  color: var(--orange);
}

.booking-pass-num {
  color: var(--text-muted);
}

.booking-pass-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.booking-pass-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #2bb673;
  box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18);
  animation: bookingPulse 2.6s ease-in-out infinite;
}

@keyframes bookingPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(43, 182, 115, 0.18); }
  50%      { box-shadow: 0 0 0 7px rgba(43, 182, 115, 0.04); }
}

/* perforated divider — punched circles + dashed line */
.booking-pass-perf {
  position: relative;
  height: 16px;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(26, 26, 26, 0.22) 0 6px,
    transparent 6px 12px
  );
  background-position: center;
  background-repeat: no-repeat;
  background-size: calc(100% - 36px) 1px;
}

.booking-pass-perf::before,
.booking-pass-perf::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  background: var(--bg-light);
  border-radius: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(26, 26, 26, 0.1);
}

.booking-pass-perf::before { left: -8px; }
.booking-pass-perf::after  { right: -8px; }

.booking-pass-body {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 28px 26px 26px;
}

.booking-pass-headline {
  margin: 0;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: clamp(1.625rem, 2.6vw, 2.125rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
}

.booking-pass-headline em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  font-feature-settings: "swsh" 1, "ss01" 1;
}

.booking-pass-meta {
  margin: 0;
  padding: 18px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  border-top: 1px dashed rgba(26, 26, 26, 0.18);
  border-bottom: 1px dashed rgba(26, 26, 26, 0.18);
}

.booking-pass-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-pass-meta dt {
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.booking-pass-meta dd {
  margin: 0;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.booking-pass-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 22px;
  background: var(--text);
  color: #f8f6f2;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.booking-pass-cta svg {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.booking-pass-cta:hover {
  background: var(--orange);
  color: var(--white);
}

.booking-pass-cta:hover svg {
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .final-cta-container {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .booking-pass {
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .booking-pass {
    transform: rotate(0);
  }

  .booking-pass:hover {
    transform: translateY(-3px);
  }

  .final-cta-meta a {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .final-cta-meta-value {
    text-align: left;
  }
}

.form-register {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-register .input-wrap {
  position: relative;
}

.form-register .input-with-toggle {
  padding-right: 44px;
}

.form-register .toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 4px;
  border: none;
  background: none;
  color: #667085;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form-register .toggle-password:hover {
  color: var(--text);
}

.form-register .toggle-password .icon-eye-off {
  display: none;
}

.form-register .toggle-password[aria-pressed="true"] .icon-eye {
  display: none;
}

.form-register .toggle-password[aria-pressed="true"] .icon-eye-off {
  display: block;
}

.btn-register {
  margin-top: 8px;
  width: 100%;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  background: #7f56d9;
  border: 1px solid #7f56d9;
  border-radius: 0;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
}

.btn-register:hover {
  background: #6941c6;
}

.form-legal {
  margin: 16px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #344054;
}

.form-legal a {
  color: inherit;
  text-decoration: underline;
}

.form-legal a:hover {
  text-decoration: none;
}

.form-footer-text {
  margin: 16px 0 0;
  font-size: 0.875rem;
  color: #344054;
}

.form-footer-text .link-signin {
  color: #7f56d9;
  font-weight: 600;
  text-decoration: none;
}

.form-footer-text .link-signin:hover {
  text-decoration: underline;
}

/* Input border to match Figma Gray/300 */
.signup-card-form-wrap .input {
  border-color: #d0d5dd;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.btn-large {
  padding: 14px 32px;
  font-size: 1.0625rem;
}

/* ============================================
   Footer – editorial sign-off
   ============================================ */
.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #0f0e0d;
  color: #f5f2ec;
  padding: clamp(64px, 9vw, 120px) clamp(24px, 5vw, 64px) 28px;
  font-family: "DM Sans", sans-serif;
}

.footer-grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.92' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.75 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

.footer-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(245, 242, 236, 0.045) 1px, transparent 1px);
  background-size: calc(100% / 12) 100%;
  mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 22%, black 88%, transparent 100%);
}

.footer-container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
}

/* Section 1 — manifesto */
.footer-manifesto {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: clamp(48px, 7vw, 80px);
  border-bottom: 1px solid rgba(245, 242, 236, 0.09);
}

.footer-tag,
.footer-col-label {
  display: inline-block;
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.footer-headline {
  margin: 0;
  max-width: 20ch;
  font-family: "roc-grotesk", "Roc Grotesk", sans-serif;
  font-size: clamp(2.1rem, 6.4vw, 5.25rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f5f2ec;
}

.footer-headline em {
  font-family: "Fraunces", "DM Sans", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  font-feature-settings: "swsh" 1, "ss01" 1;
  padding-right: 0.05em;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0 6px;
  width: fit-content;
  font-family: "DM Sans", sans-serif;
  font-size: clamp(1.125rem, 2vw, 1.75rem);
  font-weight: 500;
  color: #f5f2ec;
  letter-spacing: -0.01em;
  border-bottom: 1px solid rgba(245, 242, 236, 0.22);
  transition: color 0.35s ease, border-color 0.35s ease, gap 0.35s ease;
}

.footer-email:hover {
  color: var(--orange);
  border-bottom-color: var(--orange);
  gap: 22px;
}

.footer-email-arrow {
  display: inline-flex;
  transition: transform 0.35s ease;
}

.footer-email:hover .footer-email-arrow {
  transform: translate(3px, -3px);
}

/* Section 2 — columns */
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
  padding: clamp(40px, 5vw, 56px) 0 clamp(32px, 5vw, 48px);
  border-bottom: 1px solid rgba(245, 242, 236, 0.09);
}

.footer-col-label {
  margin-bottom: 22px;
  color: rgba(245, 242, 236, 0.5);
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding-left: 0;
  font-size: 1rem;
  color: #f5f2ec;
  transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--orange);
  transform: translateY(-50%);
  transition: width 0.25s ease;
}

.footer-list a:hover {
  color: var(--orange);
  padding-left: 20px;
}

.footer-list a:hover::before {
  width: 14px;
}

.footer-list a span {
  font-size: 0.875rem;
  opacity: 0.55;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-list a:hover span {
  opacity: 1;
  transform: translate(2px, -2px);
}

.footer-list-plain li {
  font-size: 1rem;
  color: rgba(245, 242, 236, 0.72);
}

/* Section 3 — signature wordmark */
.footer-wordmark {
  padding: clamp(40px, 6vw, 72px) 0 clamp(28px, 4vw, 48px);
  font-family: "DM Sans", sans-serif;
  font-size: clamp(3.5rem, 18.5vw, 16rem);
  font-weight: 600;
  line-height: 0.85;
  letter-spacing: -0.05em;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245, 242, 236, 0.32);
  white-space: nowrap;
  user-select: none;
  transition: -webkit-text-stroke-color 0.6s ease;
}

.footer-wordmark:hover {
  -webkit-text-stroke-color: rgba(245, 242, 236, 0.55);
}

.footer-wordmark-dot {
  color: var(--orange);
  -webkit-text-stroke: 0;
  padding: 0 0.04em;
}

/* Section 4 — meta bar */
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 242, 236, 0.09);
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.7188rem;
  letter-spacing: 0.04em;
  color: rgba(245, 242, 236, 0.6);
}

.footer-meta-group {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-divider {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: rgba(245, 242, 236, 0.25);
}

.footer-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 242, 236, 0.78);
}

.footer-status-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
}

.footer-status-dot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: footerPulse 2.2s ease-out infinite;
}

@keyframes footerPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}

.footer-clock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-clock-label,
.footer-clock-suffix {
  color: rgba(245, 242, 236, 0.45);
}

.footer-clock-time {
  color: #f5f2ec;
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
  text-align: center;
}

.footer .footer-copy {
  margin: 0;
  color: rgba(245, 242, 236, 0.55);
  font-family: ui-monospace, "SF Mono", "Menlo", "Consolas", monospace;
  font-size: 0.7188rem;
  letter-spacing: 0.04em;
}

.footer-top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: inherit;
  font-size: 0.7188rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.72);
  background: transparent;
  border: 1px solid rgba(245, 242, 236, 0.14);
  border-radius: 0;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.footer-top:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: rgba(232, 93, 44, 0.06);
}

.footer-top svg {
  transition: transform 0.35s ease;
}

.footer-top:hover svg {
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .footer-meta {
    justify-content: flex-start;
  }

  .footer-top {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 64px 20px 24px;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .footer-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    margin-left: 0;
  }
}

/* Contact page */
.contact-page {
  background: var(--bg-light);
}

.header-solid {
  background: var(--charcoal);
}

.contact-main {
  padding: calc(var(--header-height) + 64px) 32px 64px;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 560px;
}

.contact-title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
}

.contact-subtitle {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-submit {
  margin-top: 8px;
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-image {
    max-width: 400px;
  }

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

  .process-card {
    min-height: 360px;
  }

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

  .cta-pricing-container {
    flex-direction: column;
    gap: 48px;
  }

  .section-orange {
    padding: 48px 24px;
  }

  .cta-pricing-container .pricing-card {
    margin: 0 auto;
  }

}

@media (max-width: 640px) {
  .header {
    padding: 0 16px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.875rem;
  }

  .nav {
    display: none;
  }

  .hero {
    padding: calc(var(--header-height) + 32px) 16px 48px;
  }

  .card {
    grid-template-columns: 1fr;
  }

  .card-illustration {
    min-height: 240px;
  }

  .illustration {
    min-height: 240px;
  }

  .card-form-wrap {
    padding: 24px 20px 28px;
  }

  .section {
    padding: 48px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

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

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