/* =========================================================
   NebultaX — Stylesheet
   -----------------------------------------------------------
   This file is organised top-to-bottom like this:
   1. Design tokens (colors, fonts, spacing) — edit brand colors here
   2. Base / reset styles
   3. Reusable pieces (buttons, badges, cards, header, footer)
   4. Animations
   5. Page-specific sections
   6. Responsive rules (bottom of file)
   ========================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  --radius: 0.875rem;

  --color-bg: oklch(0.995 0.005 240);
  --color-fg: oklch(0.17 0.03 255);
  --color-ink: oklch(0.12 0.03 255);

  --color-brand: oklch(0.66 0.19 249);
  --color-brand-ink: oklch(0.42 0.19 255);
  --color-brand-soft: oklch(0.94 0.05 240);

  --color-card: #ffffff;
  --color-muted-fg: oklch(0.5 0.03 255);
  --color-border: oklch(0.92 0.015 240);

  --font-display: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;

  --max-width: 72rem; /* 1152px, matches original max-w-6xl */
}

/* ---------- 2. BASE / RESET ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: var(--color-bg);
  color: var(--color-fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  margin: 0;
}

p {
  margin: 0;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button, input, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* Soft radial-gradient background used on every page (the "mesh") */
.bg-mesh {
  background:
    radial-gradient(ellipse 60% 50% at 15% 10%, oklch(0.88 0.09 240 / 0.55), transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 20%, oklch(0.9 0.08 210 / 0.55), transparent 60%),
    radial-gradient(ellipse 60% 60% at 50% 100%, oklch(0.94 0.05 260 / 0.6), transparent 60%),
    var(--color-bg);
  min-height: 100vh;
}

/* Gradient text used on headline highlights */
.text-gradient {
  background: linear-gradient(120deg, var(--color-brand-ink), var(--color-brand) 55%, oklch(0.75 0.16 220));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Frosted glass panel effect */
.glass {
  background: color-mix(in oklab, white 70%, transparent);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid color-mix(in oklab, var(--color-brand) 12%, white);
}

/* Container helper */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* ---------- 3. REUSABLE PIECES ---------- */

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.2s ease;
}

.btn-brand {
  color: white;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-ink) 100%);
  box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--color-brand) 60%, transparent),
              inset 0 1px 0 color-mix(in oklab, white 40%, transparent);
}
.btn-brand:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px color-mix(in oklab, var(--color-brand) 70%, transparent);
}

.btn-outline {
  border: 1px solid var(--color-border);
  background: color-mix(in oklab, white 70%, transparent);
  color: var(--color-fg);
}
.btn-outline:hover {
  background: white;
}

.btn-white {
  background: white;
  color: var(--color-brand-ink);
  box-shadow: 0 10px 30px -14px rgba(0,0,0,0.25);
}
.btn-white:hover {
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* --- Badge / eyebrow pill --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  background: var(--color-brand-soft);
  color: var(--color-brand-ink);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.85rem;
}

/* --- Section heading block --- */
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand);
}

.section-title {
  margin-top: 0.5rem;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- Generic card --- */
.card {
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px -20px color-mix(in oklab, var(--color-brand) 25%, transparent);
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}

/* --- Header / navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: padding 0.3s ease;
}
.site-header.is-scrolled {
  padding: 0.5rem 0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.site-header.is-scrolled .nav-bar {
  box-shadow: 0 10px 30px -12px color-mix(in oklab, var(--color-brand) 15%, transparent);
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
}
.brand-mark__icon {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-ink));
  color: white;
}
.brand-mark__name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-fg);
}
.brand-mark__name em {
  font-style: normal;
  color: var(--color-brand);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  position: relative;
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--color-fg) 70%, transparent);
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-links a:hover {
  color: var(--color-brand-ink);
}
.nav-links a.is-active {
  color: var(--color-brand-ink);
  background: var(--color-brand-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-actions .btn-brand {
  display: none;
}

.nav-toggle {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: white;
  cursor: pointer;
}

.mobile-menu {
  margin-top: 0.5rem;
  border-radius: 1.5rem;
  padding: 0.75rem;
  display: none;
}
.mobile-menu.is-open {
  display: block;
}
.mobile-menu-links {
  display: flex;
  flex-direction: column;
}
.mobile-menu-links a {
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.mobile-menu-links a:hover {
  background: var(--color-brand-soft);
}
.mobile-menu .btn-brand {
  margin-top: 0.5rem;
  justify-content: center;
}

/* --- Footer --- */
.site-footer {
  margin-top: 6rem;
  border-top: 1px solid color-mix(in oklab, var(--color-border) 60%, transparent);
  background: color-mix(in oklab, white 50%, transparent);
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: 3.5rem;
}
.footer-about {
  max-width: 24rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 600;
}
.footer-col ul {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.footer-col a:hover {
  color: var(--color-brand-ink);
}
.footer-bottom {
  border-top: 1px solid color-mix(in oklab, var(--color-border) 60%, transparent);
  padding-block: 1rem;
  font-size: 0.75rem;
  color: var(--color-muted-fg);
}

/* ---------- 4. ANIMATIONS ---------- */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes blob {
  0%, 100% { border-radius: 42% 58% 63% 37% / 45% 44% 56% 55%; transform: translate(0,0) rotate(0deg); }
  33% { border-radius: 63% 37% 41% 59% / 51% 63% 37% 49%; transform: translate(20px,-15px) rotate(20deg); }
  66% { border-radius: 37% 63% 55% 45% / 60% 40% 60% 40%; transform: translate(-15px,10px) rotate(-15deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes rise {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-float { animation: float-y 6s ease-in-out infinite; }
.animate-blob { animation: blob 14s ease-in-out infinite; }
.animate-marquee { animation: marquee 30s linear infinite; }
.animate-rise { animation: rise 0.8s cubic-bezier(.2,.7,.2,1) both; }

/* Scroll-triggered reveal (JS toggles .is-visible via IntersectionObserver) */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(.2,.7,.2,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Decorative blurred blob shapes */
.blob-decor {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(64px);
}

/* ---------- 5. PAGE SECTIONS ---------- */

/* --- Hero (shared pattern across pages) --- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 2rem;
}
.hero .container {
  padding-block-end: 4rem;
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
.hero-title {
  margin-top: 1.25rem;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero-lead {
  margin-top: 1.5rem;
  max-width: 32rem;
  font-size: 1.125rem;
  color: var(--color-muted-fg);
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.hero-stats {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.hero-stats strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-fg);
}
.hero-stats-divider {
  height: 2rem;
  width: 1px;
  background: var(--color-border);
}

.hero-art {
  position: relative;
}
.hero-art-frame {
  position: relative;
  margin-inline: auto;
  max-width: 26rem;
  aspect-ratio: 1 / 1;
}
.hero-art-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.2));
}
.hero-art-glow {
  position: absolute;
  inset: 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in oklab, var(--color-brand) 40%, transparent), color-mix(in oklab, var(--color-brand-ink) 40%, transparent));
  filter: blur(40px);
}
.hero-chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 10px 25px -10px rgba(0,0,0,0.25);
  z-index: 2;
}
.hero-chip--status {
  left: 0.5rem;
  top: 2rem;
}
.hero-chip--rating {
  right: 0.5rem;
  bottom: -0.5rem;
  border-radius: 1rem;
}
.status-dot {
  height: 0.5rem;
  width: 0.5rem;
  border-radius: 999px;
  background: #10b981;
}

/* --- Marquee strip --- */
.marquee-strip {
  border-top: 1px solid color-mix(in oklab, var(--color-border) 60%, transparent);
  border-bottom: 1px solid color-mix(in oklab, var(--color-border) 60%, transparent);
  background: color-mix(in oklab, white 40%, transparent);
  padding-block: 1rem;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  width: max-content;
}
.marquee-set {
  display: flex;
  flex-shrink: 0;
  gap: 3rem;
  padding-right: 3rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--color-fg) 40%, transparent);
  white-space: nowrap;
}
.marquee-set span {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marquee-set em {
  font-style: normal;
  color: var(--color-brand);
}

/* --- Service / value / package icon cards --- */
.icon-card {
  position: relative;
  overflow: hidden;
}
.icon-card svg {
  color: var(--color-brand);
  width: 2rem;
  height: 2rem;
}
.icon-card h3 {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.icon-card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}

.icon-tile {
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-ink));
  color: white;
  box-shadow: 0 12px 25px -10px color-mix(in oklab, var(--color-brand) 50%, transparent);
}
.icon-tile svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* --- CTA band --- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-ink));
  color: white;
}
.cta-band-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}
.cta-band h3 {
  max-width: 34rem;
  font-size: 1.75rem;
  font-weight: 700;
}
.cta-band p {
  margin-top: 0.75rem;
  max-width: 34rem;
  color: rgba(255,255,255,0.8);
}

/* --- Founder / feature panel (About page) --- */
.founder-panel {
  display: grid;
  gap: 2.5rem;
  border-radius: 2rem;
  padding: 2rem;
}
.founder-photo {
  position: relative;
  height: 12rem;
  width: 12rem;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.3);
  outline: 4px solid white;
}
.founder-photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.founder-photo.is-placeholder {
  display: grid;
  place-items: center;
  background: var(--color-brand-soft);
  color: var(--color-brand-ink);
  font-size: 0.75rem;
  text-align: center;
  padding: 1rem;
}
.founder-tag {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-ink);
}
.founder-copy h2 {
  font-size: 1.75rem;
  font-weight: 700;
}
.founder-copy p {
  margin-top: 1rem;
  color: var(--color-muted-fg);
}
.founder-copy .btn {
  margin-top: 1.5rem;
}

/* --- Process steps (Services page) --- */
.process-list {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
.process-step {
  border-radius: 1.5rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 1.5rem;
}
.process-step .step-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--color-brand) 30%, transparent);
}
.process-step .step-title {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.process-step .step-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}

/* --- Works / project cards --- */
.project-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}
.project-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -20px color-mix(in oklab, var(--color-brand) 25%, transparent);
}
.project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #fde9c8, #fdf2e3);
}
.project-media img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s ease;
}
.project-card:hover .project-media img {
  transform: scale(1.05);
}
.project-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
}
.project-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand);
}
.project-title {
  margin-top: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
}
.project-note {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-muted-fg);
}
.project-arrow {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  background: var(--color-brand-soft);
  color: var(--color-brand-ink);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.project-card:hover .project-arrow {
  background: var(--color-brand);
  color: white;
}

/* --- Pricing packages (Solutions page) --- */
.package-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 1rem;
}
.package-card {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 2rem;
  transition: transform 0.25s ease;
}
.package-card:hover {
  transform: translateY(-4px);
}
.package-card--highlight {
  border-color: transparent;
  background: linear-gradient(135deg, var(--color-brand), var(--color-brand-ink));
  color: white;
  box-shadow: 0 30px 60px -25px color-mix(in oklab, var(--color-brand) 50%, transparent);
}
.package-badge {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.package-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--color-brand);
}
.package-card--highlight svg {
  color: white;
}
.package-name {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.package-tagline {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.package-card--highlight .package-tagline {
  color: rgba(255,255,255,0.8);
}
.package-divider {
  margin-block: 1.5rem;
  height: 1px;
  width: 100%;
  background: var(--color-border);
}
.package-card--highlight .package-divider {
  background: rgba(255,255,255,0.2);
}
.package-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.package-items li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.package-items svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  color: var(--color-brand);
}
.package-card--highlight .package-items svg {
  color: white;
}
.package-card .btn {
  margin-top: 2rem;
  width: 100%;
}
.package-card--highlight .btn {
  background: white;
  color: var(--color-brand-ink);
}
.package-card:not(.package-card--highlight) .btn {
  border: 1px solid var(--color-border);
  background: var(--color-card);
}
.package-card:not(.package-card--highlight) .btn:hover {
  background: var(--color-brand-soft);
}

/* --- Careers page --- */
.centered-hero {
  text-align: center;
  margin-inline: auto;
  max-width: 48rem;
}
.newsletter-form {
  margin-inline: auto;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
}
.newsletter-form input {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: white;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  outline: none;
}
.newsletter-form input:focus {
  box-shadow: 0 0 0 2px var(--color-brand);
}
.form-success {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--color-brand-ink);
}
.role-grid {
  display: grid;
  gap: 1rem;
  margin-top: 4rem;
  text-align: left;
}
.role-card svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--color-brand);
}
.role-card h3 {
  margin-top: 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.role-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.role-tag {
  margin-top: 1rem;
  display: inline-block;
  border-radius: 999px;
  background: color-mix(in oklab, var(--color-border) 60%, transparent);
  padding: 0.25rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted-fg);
}
.say-hi-link {
  margin-top: 4rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-brand-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* --- Contact page --- */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}
.contact-links {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -15px color-mix(in oklab, var(--color-brand) 25%, transparent);
}
.contact-link-icon {
  display: grid;
  place-items: center;
  height: 2.75rem;
  width: 2.75rem;
  border-radius: 999px;
  background: var(--color-brand-soft);
  color: var(--color-brand-ink);
}
.contact-link-icon--whatsapp {
  background: #d1fae5;
  color: #047857;
}
.contact-link-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}
.contact-link-value {
  font-weight: 600;
}
.contact-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-top: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.contact-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-meta svg {
  width: 1rem;
  height: 1rem;
  color: var(--color-brand);
}

.contact-form-panel {
  border-radius: 2rem;
  padding: 2rem;
}
.contact-form-panel h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.contact-form-panel > p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--color-muted-fg);
}
.form-group {
  margin-top: 1.25rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted-fg);
}
.form-group input,
.form-group textarea {
  margin-top: 0.25rem;
  width: 100%;
  border-radius: 1rem;
  border: 1px solid var(--color-border);
  background: white;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  resize: none;
}
.form-group input:focus,
.form-group textarea:focus {
  box-shadow: 0 0 0 2px var(--color-brand);
}
.contact-form-panel .btn {
  margin-top: 1.5rem;
}

.testimonial-panel {
  margin-top: 6rem;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  padding: 2.5rem;
  text-align: center;
}
.testimonial-panel h3 {
  margin-top: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
}
.testimonial-panel p {
  margin-inline: auto;
  margin-top: 0.75rem;
  max-width: 36rem;
  color: var(--color-muted-fg);
}

/* ---------- 6. RESPONSIVE ---------- */
@media (min-width: 640px) {
  .newsletter-form {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .container { padding-inline: 1rem; }
  .hero { padding-top: 4rem; }
  .hero .container { padding-block-end: 6rem; }
  .hero-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 4.5rem; }
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-actions .btn-brand { display: inline-flex; }
  .mobile-menu { display: none !important; }
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--4 { grid-template-columns: repeat(4, 1fr); }
  .founder-panel { grid-template-columns: 1fr 2fr; }
  .process-list { grid-template-columns: repeat(4, 1fr); }
  .project-grid { grid-template-columns: repeat(2, 1fr); }
  .role-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-meta { grid-template-columns: none; display: flex; gap: 1.5rem; }
  .cta-band-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .section-title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .package-grid { grid-template-columns: repeat(3, 1fr); }
}
