/* ==========================================================================
   AARYAV TECH — DESIGN SYSTEM (Coral / Glass UI-Kit theme)
   Mood: bright coral-orange gradient, soft blob shapes, glassmorphic device
   mockups — matched to the supplied UI/UX reference layout.
   ========================================================================== */

:root {
  --bg: #FFFFFF;
  --bg-alt: #FFF3EA;
  --surface: #FFFFFF;
  --ink: #201A17;
  --ink-soft: #4A413C;
  --slate: #857A73;
  --coral: #FF6B45;
  --coral-2: #FF9166;
  --coral-3: #FFB98A;
  --coral-soft: #FFD9C2;
  --deep: #E8502B;
  --border: #F1E3D8;

  --font-display: 'Fraunces', 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  --radius: 18px;
  --shadow-card: 0 20px 40px rgba(232, 80, 43, 0.08);
  --shadow-card-hover: 0 28px 56px rgba(232, 80, 43, 0.16);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

section {
  position: relative;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--space-3);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0;
  font-weight: 650;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.14;
}

h3 {
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.3;
}

p {
  margin: 0;
  color: var(--slate);
}

.lede {
  font-size: 1.12rem;
  line-height: 1.65;
  color: var(--slate);
  max-width: 46ch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--deep);
  margin-bottom: var(--space-2);
}

.eyebrow::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--coral);
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  overflow: hidden;
  isolation: isolate;
  transition: color .45s var(--ease), border-color .45s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform .45s var(--ease);
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--deep));
  color: #fff;
  box-shadow: 0 14px 30px rgba(232, 80, 43, 0.32);
}

.btn-primary::before {
  background: var(--ink);
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover {
  color: #fff;
}

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

.btn-secondary::before {
  background: var(--ink);
}

.btn-secondary:hover::before {
  transform: translateX(0);
}

.btn-secondary:hover {
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  padding: 10px 0;
  border-radius: 0;
}

.btn-ghost svg {
  transition: transform .35s var(--ease);
}

.btn-ghost:hover svg {
  transform: translateX(5px);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-color: var(--border);
  box-shadow: 0 12px 30px rgba(232, 80, 43, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-logo-img {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  /* White background on header when scrolled — logo has white bg so mix-blend helps */
  display: block;
}

.brand-logo-img--footer {
  height: 52px;
}


.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--ink);
}

.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--deep);
  text-transform: uppercase;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
}

.main-nav ul {
  display: flex;
  gap: var(--space-4);
  align-items: center;
}

.main-nav a:not(.btn) {
  position: relative;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
}

.main-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--coral);
  transition: width .35s var(--ease);
}

.main-nav a:not(.btn):hover::after {
  width: 100%;
}

.main-nav a:not(.btn):hover {
  color: var(--ink);
}

/* ---------- Tiny Laptop Nav Icons ---------- */
.main-nav a:not(.btn) {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-laptop {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 18px;
  flex-shrink: 0;
  perspective: 80px;
  perspective-origin: center bottom;
  position: relative;
  vertical-align: middle;
}

/* Laptop LID (screen) */
.nl-lid {
  display: block;
  width: 16px;
  height: 11px;
  background: linear-gradient(135deg, var(--coral-soft), var(--coral-3));
  border: 1.5px solid var(--coral);
  border-radius: 2.5px 2.5px 0 0;
  border-bottom: none;
  transform-origin: bottom center;
  transform: rotateX(-75deg);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

/* tiny screen dot / glow inside lid */
.nl-lid::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  opacity: 0;
  box-shadow: 0 0 6px 2px var(--coral-2);
  transition: opacity 0.2s ease 0.2s;
}

/* Laptop BASE (keyboard deck) */
.nl-base {
  display: block;
  width: 18px;
  height: 4px;
  background: var(--coral-soft);
  border: 1.5px solid var(--coral);
  border-radius: 0 0 2.5px 2.5px;
  position: relative;
  overflow: hidden;
}

/* keyboard lines on base */
.nl-base::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 3px;
  right: 3px;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    var(--coral) 0px,
    var(--coral) 2px,
    transparent 2px,
    transparent 4px
  );
  opacity: 0.5;
}

/* HOVER: open the lid */
.main-nav a:not(.btn):hover .nl-lid {
  transform: rotateX(-15deg);
}

/* screen glow appears after lid opens */
.main-nav a:not(.btn):hover .nl-lid::after {
  opacity: 1;
}

/* ACTIVE PAGE: laptop stays open, no hover needed */
.main-nav a.is-active .nl-lid {
  transform: rotateX(-15deg);
}

.main-nav a.is-active .nl-lid::after {
  opacity: 1;
}

/* menu glyph shown beside the brand, echoes the reference hamburger icon */
.menu-glyph {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
  margin-right: 2px;
}

.menu-glyph span {
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

.menu-glyph span:nth-child(1) {
  width: 100%;
}

.menu-glyph span:nth-child(2) {
  width: 70%;
}

.menu-glyph span:nth-child(3) {
  width: 100%;
}

/* ---------- Hero ---------- */
.hero {
  padding: calc(var(--space-8) + 20px) 0 var(--space-7);
  overflow: hidden;
}

.hero-blob-bg {
  position: absolute;
  inset: 0 -6% 0 auto;
  width: 64%;
  z-index: -1;
  pointer-events: none;
}

.hero-blob-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero .container.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
  align-items: center;
  min-height: 560px;
}

.hero-copy h1 {
  margin-bottom: var(--space-3);
}

.hero-copy h1 .line-soft {
  color: var(--coral-3);
  -webkit-text-stroke: 1px var(--coral);
}

.hero-copy .lede {
  margin-bottom: var(--space-4);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-bottom: var(--space-5);
}

.hero-line {
  display: block;
  overflow: hidden;
}

.hero-line span {
  display: block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}

.hero.is-ready .hero-line span {
  transform: translateY(0);
}

.hero-line:nth-child(1) span {
  transition-delay: .05s;
}

.hero-line:nth-child(2) span {
  transition-delay: .16s;
}

.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-row span.social-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-right: 6px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}

.social-row a svg {
  width: 16px;
  height: 16px;
}

.social-row a:hover {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  transform: translateY(-3px);
}

.stat-strip {
  display: flex;
  border-top: 1px solid var(--border);
  padding-top: var(--space-4);
  margin-top: var(--space-5);
}

.stat {
  padding-right: var(--space-5);
  margin-right: var(--space-5);
  border-right: 1px solid var(--border);
}

.stat:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  font-weight: 650;
}

.stat-num::after {
  content: attr(data-suffix);
  color: var(--coral);
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
}

/* ---------- Hero device mockups (glass) ---------- */
.hero-devices {
  position: relative;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.device {
  position: absolute;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.14));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 30px 60px rgba(200, 60, 20, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.hero.is-ready .device {
  opacity: 1;
  transform: translateY(0);
}

.device-laptop {
  width: 340px;
  height: 230px;
  left: 0;
  top: 52%;
  border-radius: 16px;
  padding: 14px;
  transition-delay: .1s;
}

.device-laptop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 80%;
  height: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.05));
  border-radius: 0 0 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: none;
}

.laptop-topbar {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.laptop-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(32, 26, 23, 0.25);
}

.laptop-screen {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 9px;
  padding: 14px;
  height: calc(100% - 22px);
}

.ls-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(32, 26, 23, 0.16);
  margin-bottom: 8px;
}

.ls-line.short {
  width: 55%;
}

.ls-line.med {
  width: 78%;
}

.ls-btn {
  margin-top: 10px;
  width: 64px;
  height: 16px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--coral), var(--deep));
}

.ls-cards {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.ls-cards span {
  flex: 1;
  height: 34px;
  border-radius: 6px;
  background: rgba(32, 26, 23, 0.08);
  border: 1px solid rgba(32, 26, 23, 0.08);
}

.device-phone {
  width: 196px;
  height: 400px;
  right: 6%;
  top: 6%;
  border-radius: 34px;
  padding: 16px 14px;
  transition-delay: .25s;
}

.phone-notch {
  width: 44px;
  height: 5px;
  border-radius: 4px;
  background: rgba(32, 26, 23, 0.22);
  margin: 0 auto 14px;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phone-badge {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.phone-ring {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(var(--coral) 0turn 0.86turn, rgba(32, 26, 23, 0.12) 0.86turn 1turn);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phone-ring::before {
  content: "86%";
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--ink);
}

.phone-badge-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.phone-badge-text b {
  font-size: 0.72rem;
  color: var(--ink);
}

.phone-badge-text span {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

.phone-wave {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 12px;
}

.phone-wave span.eyebrow-mini {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--deep);
}

.phone-wave svg {
  width: 100%;
  height: 38px;
  margin-top: 6px;
}

.phone-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.phone-list-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  padding: 8px 10px;
}

.phone-list-row .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  flex-shrink: 0;
}

.phone-list-row span {
  font-size: 0.6rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.phone-cta {
  margin-top: 2px;
  text-align: center;
  background: linear-gradient(135deg, var(--coral), var(--deep));
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 10px;
  padding: 9px;
}

.floating-badge {
  position: absolute;
  left: 6%;
  top: 8%;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(200, 60, 20, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-16px) scale(.94);
  transition: opacity .8s var(--ease) .5s, transform .8s var(--ease) .5s;
}

.hero.is-ready .floating-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.floating-badge .fb-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.floating-badge .fb-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--deep);
}

.floating-badge b {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
}

.floating-badge span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.floating-badge--lower {
  left: auto;
  right: 30%;
  top: auto;
  bottom: 6%;
  transition-delay: .65s;
}

/* ---------- Stack marquee band ---------- */
.stack-band {
  position: relative;
  padding: var(--space-4) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  overflow: hidden;
}

.stack-band-label {
  flex-shrink: 0;
  padding-left: var(--space-3);
  padding-right: var(--space-4);
  border-right: 1px dashed var(--border);
  white-space: nowrap;
}

.marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.stack-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  white-space: nowrap;
}

.stack-chip--sm {
  font-size: 0.66rem;
  padding: 5px 12px;
  background: var(--bg-alt);
}

/* ---------- Section shells ---------- */
.section {
  padding: var(--space-7) 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 640px;
  margin-bottom: var(--space-6);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 64px;
  background: var(--border);
}

.divider .diamond {
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}

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

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

/* ---------- About / spec sheet ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-6);
  align-items: start;
}

.about-copy p+p {
  margin-top: var(--space-2);
}

.spec-sheet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  position: relative;
  box-shadow: var(--shadow-card);
}

.spec-sheet .crosshair {
  position: absolute;
  width: 14px;
  height: 14px;
  opacity: .7;
}

.spec-sheet .crosshair {
  border: 1px solid var(--coral);
}

.spec-sheet .crosshair.tl {
  top: -7px;
  left: -7px;
  border-right: none;
  border-bottom: none;
}

.spec-sheet .crosshair.br {
  bottom: -7px;
  right: -7px;
  border-left: none;
  border-top: none;
}

.spec-title {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: var(--slate);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px dashed var(--border);
}

.spec-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px dashed var(--border);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: .05em;
  white-space: nowrap;
}

.spec-value {
  font-size: 0.95rem;
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

/* ---------- Why choose us grid (bento) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: var(--space-3);
  grid-auto-flow: dense;
}

.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--coral-3);
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--coral-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep);
}

.feature-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 650;
  margin-bottom: 6px;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.feature-card .mark {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  color: var(--border);
}

.feature-card--lead {
  grid-column: span 2;
  grid-row: span 2;
  padding: var(--space-5) var(--space-4);
  background:
    radial-gradient(420px 220px at 100% 0%, rgba(255, 107, 69, 0.12), transparent 70%),
    var(--surface);
  display: flex;
  flex-direction: column;
}

.feature-card--lead .feature-icon {
  width: 56px;
  height: 56px;
}

.feature-card--lead .feature-icon svg {
  width: 26px;
  height: 26px;
}

.feature-card--lead h4 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 650;
  line-height: 1.2;
  max-width: 22ch;
  margin-bottom: 12px;
}

.feature-card--lead p {
  font-size: 0.98rem;
  max-width: 42ch;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: var(--space-3);
}

.feature-card--link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: linear-gradient(150deg, var(--coral), var(--deep));
  border-color: transparent;
}

.feature-card--link-text {
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  line-height: 1.35;
}

.feature-card--link-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-3);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}

.feature-card--link-arrow svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.feature-card--link:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.feature-card--link:hover .feature-card--link-arrow {
  background: #fff;
  border-color: #fff;
  transform: translateX(4px);
}

.feature-card--link:hover .feature-card--link-arrow svg {
  stroke: var(--deep);
}

/* ---------- Sub-page header ---------- */
.page-hero {
  padding: calc(var(--space-8) + 10px) 0 var(--space-6);
  text-align: center;
  overflow: hidden;
}

.page-hero-blob {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 50%;
  height: 120%;
  z-index: -1;
  pointer-events: none;
}

.page-hero-blob svg {
  width: 100%;
  height: 100%;
}

.page-hero-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-hero-inner .lede {
  margin-top: var(--space-2);
}

.main-nav a.is-active {
  color: var(--ink);
}

.main-nav a.is-active::after {
  width: 100%;
}

/* ---------- Metallic peach bento theme (services + work) ---------- */
:root {
  --metal-1: #FFF3E8;
  --metal-2: #FFDDBC;
  --metal-3: #FFC192;
  --metal-4: #FFA968;
  --metal-edge: rgba(255,255,255,.75);
  --metal-text: #12100E;
}

.bento-card-base {
  position: relative;
  border-radius: 22px;
  isolation: isolate;
  overflow: hidden;
  cursor: pointer;
  background:
    linear-gradient(122deg, rgba(255,255,255,.85) 0%, rgba(255,255,255,0) 34%),
    linear-gradient(158deg, var(--metal-1) 0%, var(--metal-2) 38%, var(--metal-3) 68%, var(--metal-4) 100%);
  border: 1px solid var(--metal-edge);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.85),
    inset 0 -14px 26px -14px rgba(150,60,15,.28),
    0 16px 30px -14px rgba(150,60,15,.30),
    0 2px 6px rgba(60,25,5,.06);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.bento-card-base::before {
  /* brushed-metal diagonal grain */
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg,
    rgba(255,255,255,.5) 0px, rgba(255,255,255,.5) 1px,
    transparent 1px, transparent 9px);
  mix-blend-mode: overlay;
  opacity: .35;
  pointer-events: none;
}

.bento-card-base::after {
  /* moving light glint on hover */
  content: "";
  position: absolute;
  top: -40%;
  left: -60%;
  width: 45%;
  height: 180%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.75), transparent);
  transform: translateX(-40%) rotate(8deg);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.bento-card-base:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.9),
    inset 0 -14px 26px -14px rgba(150,60,15,.32),
    0 26px 44px -16px rgba(150,60,15,.38),
    0 4px 10px rgba(60,25,5,.08);
}

.bento-card-base:hover::after {
  opacity: 1;
  animation: metalGlint 1.1s var(--ease);
}

@keyframes metalGlint {
  0%   { transform: translateX(-40%) rotate(8deg); }
  100% { transform: translateX(340%) rotate(8deg); }
}

/* ---------- Services bento grid ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 20px;
  padding: var(--space-5) 0 var(--space-6);
}

.service-card {
  grid-column: span 2;
  grid-row: span 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 26px 24px;
  text-align: left;
  color: var(--metal-text);
}

.service-card:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.service-card:nth-child(3),
.service-card:nth-child(4) {
  grid-column: span 1;
}

.service-card .mark {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: rgba(18,16,14,.38);
  letter-spacing: .08em;
}

.service-card .feature-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  background: rgba(255,255,255,.55);
  border: 1px solid rgba(18,16,14,.14);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.9), 0 2px 6px rgba(150,60,15,.14);
}

.service-card .feature-icon svg {
  stroke: var(--metal-text);
}

.service-card h3 {
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 1.12rem;
  margin-bottom: 6px;
  background: linear-gradient(180deg, #2b2b2b 0%, #000 45%, #3d3d3d 65%, #000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--metal-text);
  transition: transform .35s var(--ease);
}

.service-card > p {
  font-size: 0.85rem;
  color: rgba(18,16,14,.78);
  max-width: 34ch;
  margin: 0;
}

.service-card .service-includes {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  transition: opacity .4s var(--ease), max-height .5s var(--ease), margin .4s var(--ease), padding .4s var(--ease);
}

.service-card .service-includes .eyebrow {
  color: rgba(18,16,14,.6);
}

.service-card:nth-child(1) .service-includes,
.service-card:hover .service-includes {
  opacity: 1;
  max-height: 220px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgba(18,16,14,.2);
}

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

.check-list li {
  color: rgba(18,16,14,.85);
}

.check-list li::before {
  background: rgba(18,16,14,.75);
  border-color: var(--metal-text);
}

/* ---------- Work page: 3D laptop mockups with live site / case study toggle ---------- */
.work-laptop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6) var(--space-4);
  padding: var(--space-6) 0 var(--space-7);
}

.work-laptop-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: grid-column 0.4s var(--ease), width 0.4s var(--ease);
}

/* Expanded/active laptop card takes up full width in grid */
@media (min-width: 901px) {
  .work-laptop-card.is-case-active {
    grid-column: span 2;
  }
}

/* -- 3D laptop shell -- */
.laptop-mock {
  --shell: #FF6B45;
  --shell-dark: #C64A28;
  --shell-light: #FF9166;
  width: 100%;
  max-width: 340px;
  perspective: 1400px;
  transition: max-width 0.4s var(--ease);
}

.work-laptop-card.is-case-active .laptop-mock {
  max-width: 760px;
}

.laptop-mock--coral    { --shell: #FF6B45; --shell-dark: #C6431F; --shell-light: #FFA377; }
.laptop-mock--graphite { --shell: #2B2622; --shell-dark: #16130F; --shell-light: #4E463E; }
.laptop-mock--gold     { --shell: #C9975A; --shell-dark: #9C7038; --shell-light: #E6BE8A; }
.laptop-mock--blush    { --shell: #FFD9C2; --shell-dark: #E8AF8C; --shell-light: #FFF0E4; }

.laptop-lid {
  position: relative;
  border-radius: 16px 16px 5px 5px;
  padding: 12px 12px 8px;
  background: linear-gradient(155deg, var(--shell-light) 0%, var(--shell) 45%, var(--shell-dark) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.35),
    inset 0 -8px 16px -8px rgba(0,0,0,.35),
    0 26px 44px -18px rgba(20,14,10,.55);
  transform: rotateX(7deg);
  transform-origin: bottom center;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.work-laptop-card:hover .laptop-lid {
  transform: rotateX(3deg) translateY(-4px);
}

.laptop-cam {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  box-shadow: 0 0 0 2px rgba(255,255,255,.08);
}

.laptop-screen-viewport {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  background: #EFEFEF;
  aspect-ratio: 16 / 10.2;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.4);
}

.laptop-browser-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 20px;
  padding: 0 8px;
  background: #F4F1EE;
  border-bottom: 1px solid rgba(0,0,0,.08);
  position: relative;
  z-index: 3;
}

.laptop-browser-bar span:not(.laptop-bar-label) {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(18,16,14,.2);
}

.laptop-bar-label {
  margin-left: 6px;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  color: rgba(18,16,14,.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity .25s var(--ease);
}

.laptop-screen-body {
  position: relative;
  height: calc(100% - 20px);
  background: #fff;
}

.laptop-view {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}

.laptop-view--site {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.laptop-view--site iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.laptop-view--case {
  overflow-y: auto;
  background: linear-gradient(160deg, var(--metal-1), var(--metal-2));
  padding: 12px 14px;
  text-align: left;
}

.work-laptop-card.is-case-active .laptop-view--site {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.work-laptop-card.is-case-active .laptop-view--case {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.case-study-tag {
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: .06em;
  color: rgba(18,16,14,.55);
}

.case-study-body h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 650;
  margin: 4px 0 6px;
  color: var(--metal-text);
}

.case-study-body p {
  font-size: 0.66rem;
  line-height: 1.5;
  color: rgba(18,16,14,.8);
  margin: 0 0 6px;
}

.case-study-body p strong {
  color: var(--metal-text);
}

.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.case-stack span {
  font-family: var(--font-mono);
  font-size: 0.54rem;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.6);
  border: 1px solid rgba(18,16,14,.14);
  color: rgba(18,16,14,.75);
}

/* Scaled up case study design on expanded laptop card */
.work-laptop-card.is-case-active .laptop-view--case {
  padding: var(--space-4) var(--space-5);
}

.work-laptop-card.is-case-active .case-study-tag {
  font-size: 0.7rem;
}

.work-laptop-card.is-case-active .case-study-body h4 {
  font-size: 1.35rem;
  margin: 6px 0 12px;
}

.work-laptop-card.is-case-active .case-study-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 12px;
}

.work-laptop-card.is-case-active .case-stack {
  gap: 8px;
  margin-top: 12px;
}

.work-laptop-card.is-case-active .case-stack span {
  font-size: 0.68rem;
  padding: 4px 10px;
}

/* Scaled up browser chrome on active */
.work-laptop-card.is-case-active .laptop-browser-bar {
  height: 28px;
  gap: 6px;
}

.work-laptop-card.is-case-active .laptop-browser-bar span:not(.laptop-bar-label) {
  width: 8px;
  height: 8px;
}

.work-laptop-card.is-case-active .laptop-bar-label {
  font-size: 0.75rem;
  margin-left: 10px;
}

.work-laptop-card.is-case-active .laptop-screen-body {
  height: calc(100% - 28px);
}

.work-laptop-card.is-case-active .laptop-newtab-btn {
  font-size: 0.75rem;
  padding: 7px 14px;
  bottom: 12px;
  left: 12px;
}

.work-laptop-card.is-case-active .laptop-newtab-btn svg {
  width: 11px;
  height: 11px;
}

/* -- hinge + base (perspective keyboard deck) -- */
.laptop-hinge {
  height: 5px;
  margin: 0 6%;
  background: linear-gradient(90deg, var(--shell-dark), var(--shell), var(--shell-dark));
  border-radius: 0 0 2px 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,.3);
}

.laptop-base {
  position: relative;
  height: 14px;
  margin: 0 -2%;
  background: linear-gradient(180deg, var(--shell) 0%, var(--shell-dark) 100%);
  clip-path: polygon(4% 0, 96% 0, 100% 100%, 0% 100%);
  box-shadow: 0 18px 30px -10px rgba(20,14,10,.5);
}

.laptop-base::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 14%;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: rgba(0,0,0,.25);
}

/* -- floating "Open Site" new-tab button on each laptop -- */
.laptop-newtab-btn {
  position: absolute;
  bottom: 8px;
  left: 8px;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(18,16,14,.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  white-space: nowrap;
}

.laptop-newtab-btn svg {
  width: 9px;
  height: 9px;
  flex-shrink: 0;
}

/* Show button on laptop hover (in both site view and case study view) */
.work-laptop-card:hover .laptop-newtab-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.laptop-newtab-btn:hover {
  background: rgba(18,16,14,.92);
}

/* -- iframe-blocked fallback card -- */
.laptop-iframe-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #FFF8F2 0%, #FFF0E4 100%);
}

.laptop-iframe-fallback__inner {
  text-align: center;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.laptop-iframe-fallback__icon svg {
  width: 38px;
  height: 38px;
}

.laptop-iframe-fallback__name {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  color: #5C3A1E;
  margin: 0;
  letter-spacing: .03em;
}

.laptop-iframe-fallback__note {
  font-size: 0.54rem;
  color: rgba(92,58,30,.6);
  margin: 0;
  line-height: 1.4;
}

.laptop-iframe-fallback__cta {
  display: inline-block;
  margin-top: 4px;
  padding: 4px 12px;
  border-radius: 999px;
  background: #5C3A1E;
  color: #FFF8F2;
  font-size: 0.56rem;
  font-weight: 600;
  font-family: var(--font-body);
  text-decoration: none;
  letter-spacing: .04em;
  transition: background .2s;
}

.laptop-iframe-fallback__cta:hover {
  background: #3E2410;
}

/* -- info + floating toggle button -- */
.work-laptop-info {
  margin-top: var(--space-3);
}

.work-laptop-info .work-tag {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: .06em;
  color: var(--slate);
  display: block;
  margin-bottom: 4px;
}

.work-laptop-info h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.work-laptop-info p {
  font-size: 0.88rem;
  color: var(--ink-soft);
  max-width: 34ch;
  margin: 0 auto;
}

.work-toggle-btn {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.86rem;
  color: #fff;
  background: linear-gradient(135deg, var(--coral-2), var(--deep));
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  cursor: pointer;
  box-shadow: 0 14px 26px -10px rgba(232,80,43,.55), 0 2px 4px rgba(0,0,0,.06);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}

.work-toggle-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px -12px rgba(232,80,43,.65), 0 2px 4px rgba(0,0,0,.08);
}

.work-toggle-btn::after {
  content: "";
  width: 14px;
  height: 14px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2'%3E%3Cpath d='M5 12h14M13 6l6 6-6 6'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease);
}

.work-laptop-card.is-case-active .work-toggle-btn {
  background: linear-gradient(135deg, #3a332c, #17130f);
}

.work-laptop-card.is-case-active .work-toggle-btn::after {
  transform: rotate(180deg);
}

@media (max-width: 900px) {
  .work-laptop-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }

  .laptop-mock {
    max-width: 380px;
  }
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 10%;
  right: 10%;
  height: 1px;
  background-image: linear-gradient(90deg, var(--border) 0 6px, transparent 6px 12px);
  background-size: 12px 1px;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 0 var(--space-2);
}

.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0 auto var(--space-3);
  border: 1px solid var(--coral);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--deep);
  background: var(--bg-alt);
  position: relative;
  z-index: 1;
  transition: background .35s var(--ease), color .35s var(--ease);
}

.process-step:hover .process-num {
  background: linear-gradient(135deg, var(--coral), var(--deep));
  color: #fff;
}

.process-step h4 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.85rem;
  line-height: 1.55;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, #2A211D, #1A1512);
  border-radius: 24px;
  padding: var(--space-6) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 85% 0%, rgba(255, 107, 69, 0.28), transparent 70%);
}

.cta-band h2,
.cta-band p {
  color: #fff;
  position: relative;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

.cta-band .btn-primary {
  position: relative;
}

/* ---------- Footer ---------- */
.site-footer {
  padding: var(--space-6) 0 var(--space-4);
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-5);
  margin-bottom: var(--space-5);
}

.footer-brand p {
  margin-top: var(--space-2);
  max-width: 32ch;
  font-size: 0.9rem;
}

.footer-col h5 {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 0.7rem;
  color: var(--slate);
  margin-bottom: var(--space-2);
}

.footer-col li {
  margin-bottom: 9px;
}

.footer-col a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  transition: color .3s;
}

.footer-col a:hover {
  color: var(--coral);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--slate);
  font-family: var(--font-mono);
}

.footer-bottom-copy {
  display: flex;
  gap: var(--space-3, 24px);
}

/* ---------- Mobile nav ---------- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform .35s var(--ease), opacity .35s var(--ease);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero {
    /* desktop's 148px top padding was leaving a big empty gap under the
       fixed header on phones/tablets — trim it down to just clear the header */
    padding: 104px 0 var(--space-6);
  }

  .hero .container.hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-devices {
    order: -1;
    height: 380px;
    max-width: 440px;
    margin: 0 auto var(--space-3);
    overflow: hidden;
  }

  /* Tablet — fit phone height inside the container */
  .device-phone {
    height: 370px;
    width: 180px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .device-laptop {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  /* is-ready keeps the same vertical center, just fades in */
  .hero.is-ready .device-laptop {
    opacity: 1;
    transform: translateY(-50%);
  }
  .hero.is-ready .device-phone {
    opacity: 1;
    transform: translateY(-50%);
  }

  .hero-blob-bg {
    width: 100%;
    inset: -10% -20% auto auto;
  }

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

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

  .feature-card--lead {
    grid-column: span 2;
    grid-row: span 1;
  }

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

  .stack-band {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }

  .stack-band-label {
    border-right: none;
    padding-left: var(--space-3);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 210px;
    gap: 16px;
  }

  .service-card,
  .service-card:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .service-card:nth-child(1) .service-includes {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
  }

  .service-card:hover .service-includes {
    opacity: 1;
    max-height: 220px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed rgba(18,16,14,.2);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-5);
  }

  .process-timeline::before {
    display: none;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 760px) {
  .hero {
    padding: 88px 0 var(--space-5);
  }

  .hero-devices {
    height: 300px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    /* no margin-auto — full bleed on phones */
    margin: 0 0 var(--space-3);
  }

  /* Phone screens — scale both devices to fit 300px tall container */
  .device-laptop {
    width: 210px;
    height: 144px;
    left: 2%;
    top: 50%;
    transform: translateY(-50%);
  }

  .device-phone {
    width: 126px;
    height: 256px;
    right: 2%;
    top: 50%;
    transform: translateY(-50%);
  }

  /* is-ready: fade in, keep vertical center */
  .hero.is-ready .device-laptop {
    opacity: 1;
    transform: translateY(-50%);
  }
  .hero.is-ready .device-phone {
    opacity: 1;
    transform: translateY(-50%);
  }

  .main-nav ul {
    display: none;
  }

  .main-nav>.btn {
    display: none;
  }

  .menu-glyph {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .stat-strip {
    flex-wrap: wrap;
    gap: var(--space-3);
  }

  .stat {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    width: 45%;
  }

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

  .feature-card--lead {
    grid-column: span 1;
    grid-row: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

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

  .page-hero {
    padding-top: calc(var(--space-7) + 20px);
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer-bottom-copy {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }

  .floating-badge {
    display: none;
  }
}

/* ---------- Mobile drawer ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  transform: translateX(100%);
  transition: transform .5s var(--ease);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer a {
  font-family: var(--font-display);
  font-size: 1.8rem;
}

/* ==========================================================================
   ABOUT PAGE — Founder card, team grid, case studies
   ========================================================================== */

/* ---------- Intro / mission statement ---------- */
.about-intro {
  padding: calc(var(--space-8) + 10px) 0 var(--space-6);
  overflow: hidden;
  position: relative;
}

.about-intro-blob {
  position: absolute;
  inset: -25% -15% auto auto;
  width: 56%;
  height: 130%;
  z-index: -1;
  pointer-events: none;
}

.about-intro-blob svg {
  width: 100%;
  height: 100%;
}

.about-intro .container {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.about-intro h1 {
  margin-bottom: var(--space-3);
}

.about-intro h1 .line-soft {
  color: var(--coral-3);
  -webkit-text-stroke: 1px var(--coral);
}

.about-intro .lede {
  margin: 0 auto;
}

/* ---------- Founder section ---------- */
.founder-section {
  padding: var(--space-7) 0;
}

.founder-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-6);
  align-items: center;
}

.founder-photo-wrap {
  position: relative;
}

.founder-photo {
  position: relative;
  aspect-ratio: 1/1.05;
  border-radius: 28px;
  background: linear-gradient(160deg, var(--coral-2), var(--deep));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(232, 80, 43, 0.22);
}

.founder-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(220px 220px at 30% 20%, rgba(255, 255, 255, 0.25), transparent 60%),
    radial-gradient(280px 280px at 80% 90%, rgba(0, 0, 0, 0.18), transparent 60%);
}

.founder-monogram {
  font-family: var(--font-display);
  font-size: 7.5rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.92);
  position: relative;
  z-index: 1;
}

.founder-photo-caption {
  position: absolute;
  top: 16px;
  left: 16px;
  right: auto;
  bottom: auto;
  max-width: 62%;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: 6px 10px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  line-height: 1.4;
  z-index: 1;
}

/* Real founder photo */
.founder-real-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
  border-radius: 28px;
}

/* Small circular avatar in name-role card */
.founder-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
  border: 2px solid var(--coral-soft);
}

/* Founder signature quote */
.founder-quote {
  margin: var(--space-3) 0;
  padding: var(--space-3) var(--space-3);
  border-left: 3px solid var(--coral);
  background: linear-gradient(90deg, var(--bg-alt), transparent);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.5;
}


.founder-badge-card {
  position: absolute;
  z-index: 2;
  max-width: calc(100% - 24px);
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px rgba(200, 60, 20, 0.16);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.founder-badge-card .fb-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-badge-card .fb-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--deep);
}

.founder-badge-card b {
  display: block;
  font-size: 0.85rem;
  color: var(--ink);
}

.founder-badge-card span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.founder-badge-card--top {
  top: -18px;
  left: 12px;
}

.founder-badge-card--bottom {
  bottom: -18px;
  right: 12px;
}

.founder-copy .eyebrow {
  margin-bottom: var(--space-2);
}

.founder-copy h2 {
  margin-bottom: var(--space-3);
}

.founder-copy p+p {
  margin-top: 14px;
}

.founder-name-role {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: var(--space-4) 0 var(--space-3);
  padding: var(--space-3);
  background: var(--bg-alt);
  border-radius: 14px;
}

.founder-name-role b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.founder-name-role span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep);
}

.founder-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: var(--space-4) 0;
}

.founder-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--ink-soft);
  list-style: none;
}

.founder-checklist li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  stroke: #fff;
  background: linear-gradient(135deg, var(--coral), var(--deep));
  border-radius: 50%;
  padding: 3px;
}

/* ---------- Website details spec strip ---------- */
.detail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.detail-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-3);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}

.detail-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

.detail-card .detail-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-2);
  border-radius: 50%;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-card .detail-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--deep);
}

.detail-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.detail-card span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 4px;
  display: block;
}

/* ---------- Team grid ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4);
  text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--coral-3);
}

.team-avatar {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto var(--space-3);
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  background: var(--border);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.team-avatar:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-avatar-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 650;
  color: #fff;
  background: linear-gradient(160deg, var(--coral-2), var(--deep));
}

.team-card h4 {
  font-size: 1.02rem;
  margin-bottom: 2px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep);
  display: block;
  margin-bottom: 10px;
}

.team-card p {
  font-size: 0.86rem;
}

/* ---------- Case studies ---------- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.case-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--coral-3);
}

.case-thumb {
  height: 150px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.case-thumb svg {
  width: 100%;
  height: 100%;
}

.case-thumb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--deep);
  padding: 5px 10px;
  border-radius: 999px;
}

.case-body {
  padding: var(--space-3) var(--space-4) var(--space-4);
}

.case-body h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.case-body p {
  font-size: 0.88rem;
  margin-bottom: var(--space-2);
}

.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-2);
  border-top: 1px dashed var(--border);
}

.case-meta .case-stat {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--slate);
}

.case-meta .case-stat b {
  color: var(--deep);
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

.case-link svg {
  width: 14px;
  height: 14px;
  transition: transform .35s var(--ease);
}

.case-card:hover .case-link svg {
  transform: translateX(4px);
}

.case-note {
  margin-top: var(--space-3);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--slate);
}

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

  .founder-photo-wrap {
    max-width: 340px;
    margin: 0 auto var(--space-5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .founder-photo {
    order: 2;
    width: 100%;
  }

  .founder-photo-caption {
    display: none;
  }

  .founder-badge-card {
    position: static;
    order: 1;
    white-space: normal;
    max-width: none;
  }

  .founder-badge-card--bottom {
    order: 3;
  }

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

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

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

@media (max-width: 760px) {
  .detail-strip {
    grid-template-columns: 1fr 1fr;
  }

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

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

/* ==========================================================================
   Bento Tiffin Pricing Cards Style & Flip Animation
   ========================================================================== */
.bento-tiffin-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  padding: var(--space-5) 0 var(--space-6);
}

.bento-tiffin-card {
  perspective: 1200px;
  height: 590px;
  position: relative;
  cursor: pointer;
}

.bento-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: left;
  transition: transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

/* Rotate when active/flipped */
.bento-tiffin-card.is-flipped .bento-card-inner {
  transform: rotateY(180deg);
}

.bento-card-front, .bento-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(18,16,14,0.06);
  border: 1px solid rgba(18,16,14,0.09);
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.bento-tiffin-card:hover .bento-card-front {
  box-shadow: 0 16px 40px rgba(18,16,14,0.12);
  border-color: var(--tier-color);
}

/* Dark themed Back card for 'Why Me' reasoning */
.bento-card-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, #17130f 0%, #221c17 100%);
  color: #f7f5f2;
  border-color: rgba(255,255,255,0.12);
  justify-content: space-between;
}

/* Color Tier Themes */
.bento-tiffin-card--basic {
  --tier-color: #0e9f6e;
  --tier-bg-light: #f3faf7;
  --tier-bullet-bg: rgba(14,159,110,0.1);
}
.bento-tiffin-card--standard {
  --tier-color: #3f83f8;
  --tier-bg-light: #f0f5ff;
  --tier-bullet-bg: rgba(63,131,248,0.1);
}
.bento-tiffin-card--premium {
  --tier-color: #e8502b;
  --tier-bg-light: #fff5f2;
  --tier-bullet-bg: rgba(232,80,43,0.1);
}
.bento-tiffin-card--enterprise {
  --tier-color: #9061f9;
  --tier-bg-light: #f9f5ff;
  --tier-bullet-bg: rgba(144,97,249,0.1);
}

/* Highlight badge */
.bento-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--tier-color);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 99px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  z-index: 2;
}

/* Front Card Content Layout */
.bento-header {
  margin-bottom: var(--space-3);
  position: relative;
}

.bento-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--tier-bg-light);
  color: var(--tier-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.bento-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

.bento-header h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--ink);
  margin-bottom: 2px;
}

.bento-header .subtitle {
  font-size: 0.72rem;
  color: var(--slate);
  margin-bottom: 8px;
}

.bento-price {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--tier-color);
}

.bento-perfect-for {
  background: var(--tier-bg-light);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: var(--space-3);
}

.bento-perfect-for p {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
}

.bento-perfect-for .pills {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.bento-perfect-for .pill {
  font-size: 0.64rem;
  font-weight: 600;
  color: var(--ink);
  background: rgba(18,16,14,0.05);
  padding: 2px 6px;
  border-radius: 4px;
}

.bento-features-title {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  border-bottom: 1px dashed var(--border);
  padding-bottom: 4px;
}

.bento-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  overflow-y: auto;
  flex-grow: 1;
}

.bento-features-list li {
  font-size: 0.72rem;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-features-list li::before {
  content: "✓";
  color: var(--tier-color);
  font-weight: bold;
}

.bento-footer-hint {
  margin-top: auto;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(18,16,14,0.06);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  color: var(--slate);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bento-footer-hint span {
  color: var(--tier-color);
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

/* Back Card Content Layout */
.bento-back-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.bento-back-header h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--tier-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.bento-back-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 650;
  color: #fff;
}

.bento-reason-body {
  flex-grow: 1;
  overflow-y: auto;
}

.bento-reason-body p {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.bento-reason-body ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bento-reason-body ul li {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.9);
  padding-left: 18px;
  position: relative;
}

.bento-reason-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tier-color);
}

.bento-back-footer {
  margin-top: 15px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bento-back-footer .btn-back-action {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--tier-color);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.2s;
}

.bento-back-footer .btn-back-action:hover {
  transform: translateY(-2px);
}

.bento-back-footer .flip-back-link {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}

/* Asymmetric Bento Span for Enterprise (bottom container of Tiffin Box) */
@media (min-width: 992px) {
  .bento-tiffin-card--enterprise {
    grid-column: span 3;
    height: 390px;
  }
  
  .bento-tiffin-card--enterprise .bento-card-front {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: var(--space-4);
  }
  
  .bento-tiffin-card--enterprise .bento-card-front .bento-left-col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(18,16,14,0.06);
    padding-right: var(--space-4);
  }
  
  .bento-tiffin-card--enterprise .bento-card-front .bento-right-col {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  
  .bento-tiffin-card--enterprise .bento-card-front .bento-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    height: auto;
  }
  
  .bento-tiffin-card--enterprise .bento-card-back .bento-back-inner-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: var(--space-4);
    height: 100%;
  }

  .bento-tiffin-card--enterprise .bento-card-back .bento-back-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,0.1);
    padding-right: var(--space-4);
    height: 100%;
  }

  .bento-tiffin-card--enterprise .bento-card-back .bento-back-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-left: var(--space-3);
    height: 100%;
  }
  
  .bento-tiffin-card--enterprise .bento-card-back .bento-back-right h5 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 650;
    margin-bottom: 8px;
  }
  .bento-tiffin-card--enterprise .bento-card-back .bento-back-right p {
    font-size: 0.74rem;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
  }
}

/* Responsiveness fallback for grid */
@media (max-width: 991px) {
  .bento-tiffin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bento-tiffin-card {
    height: 580px;
  }
  .bento-tiffin-card--enterprise {
    grid-column: span 2;
    height: 580px;
  }
}

@media (max-width: 680px) {
  .bento-tiffin-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bento-tiffin-card {
    height: 560px;
  }
  .bento-tiffin-card--enterprise {
    grid-column: span 1;
    height: 580px;
  }
}

/* ==========================================================================
   Popup Modal: What We Are Offering (Center Banner after 10s)
   ========================================================================== */
.offering-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.offering-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.offering-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.offering-modal-content {
  position: relative;
  background: linear-gradient(145deg, #17130f 0%, #2c241e 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px var(--space-5) 35px;
  border-radius: 24px;
  max-width: 980px;
  width: 92%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
  z-index: 10;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-align: center;
}

.offering-modal-content::-webkit-scrollbar { width: 8px; }
.offering-modal-content::-webkit-scrollbar-track { background: transparent; }
.offering-modal-content::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 99px; }

.offering-modal.is-active .offering-modal-content {
  transform: scale(1) translateY(0);
}

.offering-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.offering-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.offering-modal-body h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin: 6px 0 10px;
  color: #fff;
  letter-spacing: -0.01em;
}

.offering-modal-tagline {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

/* ---------- Offering Bento Tiffin Box (4 equal-size pricing package cards) ---------- */
.offering-tiffin-box {
  position: relative;
  background: linear-gradient(150deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 26px;
  padding: 18px;
  margin: 4px 0 26px;
}

/* little "lid clasp" detail so it visually reads as a tiffin box */
.offering-tiffin-box::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 6px;
  border-radius: 99px;
  background: var(--deep);
  opacity: 0.85;
}

.offering-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
  text-align: left;
}

/* all 4 compartments forced to the exact same footprint */
.offering-bento-card {
  height: 540px;
  perspective: 1200px;
  cursor: pointer;
}

.offering-bento-card .bento-card-front,
.offering-bento-card .bento-card-back {
  padding: 20px 18px 16px;
  border-radius: 18px;
}

.offering-bento-card .bento-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.offering-bento-card .bento-header h3 {
  font-size: 1.08rem;
}

.offering-bento-card .bento-price {
  font-size: 1.4rem;
}

.offering-bento-card .bento-features-list {
  gap: 6px;
}

.offering-bento-card .bento-features-list li {
  font-size: 0.72rem;
}

.offering-bento-card .bento-footer-hint {
  font-size: 0.62rem;
}

.offering-bento-card .bento-back-header h3 {
  font-size: 1.05rem;
}

.offering-bento-card .bento-reason-body p {
  font-size: 0.75rem;
  line-height: 1.55;
  margin-bottom: 12px;
}

.offering-bento-card .bento-reason-body ul {
  gap: 9px;
}

.offering-bento-card .bento-reason-body ul li {
  font-size: 0.72rem;
  line-height: 1.4;
}

.offering-bento-card .btn-back-action {
  font-size: 0.68rem;
  padding: 7px 14px;
}

@media (max-width: 900px) {
  .offering-bento-card {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .offering-bento-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .offering-bento-card {
    height: 540px;
  }
  .offering-tiffin-box {
    padding: 12px;
  }
  .offering-modal-content {
    padding: 32px 20px 28px;
  }
}
/* ==================================================================
   OFFER BANNER — "What We Are Offering" popup (light pricing banner)
   ================================================================== */

.offering-modal-content.offer-banner-content {
  background: linear-gradient(160deg, #FFFDFB 0%, #FFE9DA 100%);
  color: var(--ink);
  border: 1px solid var(--border);
  padding: 34px 30px 30px;
  max-width: 1180px;
  width: 94%;
  text-align: left;
  border-radius: 26px;
}

.offering-modal-content.offer-banner-content::-webkit-scrollbar-thumb {
  background: var(--coral-soft);
}

.offer-banner-content .offering-modal-close {
  background: rgba(232, 80, 43, 0.08);
  border: 1px solid rgba(232, 80, 43, 0.14);
  color: var(--deep);
}

.offer-banner-content .offering-modal-close:hover {
  background: var(--coral);
  color: #fff;
}

/* ---------- Top: brand / heading / delivery badge ---------- */
.offer-banner-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.offer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.offer-brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.offer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.1;
}

.offer-brand-name span {
  color: var(--deep);
}

.offer-heading {
  flex: 1 1 340px;
  text-align: center;
  min-width: 260px;
}

.offer-heading-pill {
  display: inline-block;
  background: linear-gradient(120deg, var(--coral-2), var(--deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 99px;
  margin-bottom: 10px;
}

.offer-heading-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.offer-heading-title .accent {
  color: var(--deep);
}

.offer-heading-sub {
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
}

.offer-delivery-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px 16px;
  box-shadow: var(--shadow-card);
  flex: 0 0 auto;
}

.offer-delivery-badge svg {
  width: 26px;
  height: 26px;
  color: var(--deep);
  flex-shrink: 0;
}

.offer-delivery-badge b {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.offer-delivery-badge span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--deep);
}

/* ---------- Pricing cards ---------- */
.offer-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.offer-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 18px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.offer-card--popular {
  border: 2px solid var(--coral);
  overflow: hidden;
}

.offer-card-ribbon {
  position: absolute;
  top: 14px;
  right: -34px;
  transform: rotate(45deg);
  background: linear-gradient(120deg, var(--coral-2), var(--deep));
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 40px;
}

.offer-card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.offer-card-icon svg {
  width: 26px;
  height: 26px;
}

.offer-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep);
  margin: 0 0 4px;
}

.offer-card-desc {
  font-size: 0.74rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
  line-height: 1.4;
  min-height: 32px;
}

.offer-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: linear-gradient(120deg, var(--coral-2), var(--deep));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  padding: 8px 22px;
  border-radius: 10px;
  margin-bottom: 18px;
  box-shadow: 0 10px 20px rgba(232, 80, 43, 0.25);
}

.offer-price-tag span {
  font-size: 1.05rem;
}

.offer-feature-list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}

.offer-feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.offer-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--coral-soft);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.6);
}

.offer-feature-list li::after {
  content: '';
  position: absolute;
  left: 4.5px;
  top: 5.5px;
  width: 6px;
  height: 3.5px;
  border-left: 2px solid var(--deep);
  border-bottom: 2px solid var(--deep);
  transform: rotate(-45deg);
}

.offer-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(120deg, var(--coral-2), var(--deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 12px 10px;
  border-radius: 12px;
  text-decoration: none;
  margin-top: auto;
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}

.offer-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

/* ---------- Trust strip ---------- */
.offer-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 10px;
  margin-bottom: 18px;
}

.offer-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 0 8px;
  border-right: 1px solid var(--border);
}

.offer-trust-item:last-child {
  border-right: none;
}

.offer-trust-item svg {
  width: 24px;
  height: 24px;
  color: var(--deep);
  flex-shrink: 0;
}

.offer-trust-item b {
  display: block;
  font-size: 0.72rem;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.3;
}

.offer-trust-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--deep);
  font-weight: 600;
}

/* ---------- WhatsApp CTA banner ---------- */
.offer-wa-banner {
  display: flex;
  align-items: stretch;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.offer-wa-banner:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

.offer-wa-left {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 26px;
  flex: 0 0 auto;
}

.offer-wa-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-wa-icon svg {
  width: 26px;
  height: 26px;
}

.offer-wa-copy {
  display: flex;
  flex-direction: column;
}

.offer-wa-label {
  font-size: 0.7rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.offer-wa-cta {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
  font-weight: 700;
}

.offer-wa-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(120deg, var(--coral-2), var(--deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.4;
  padding: 14px 20px;
}

.offer-wa-right .accent {
  color: #FFE4CF;
}

/* ---------- Bottom feature strip ---------- */
.offer-bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.offer-bottom-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 110px;
}

.offer-bottom-item svg {
  width: 22px;
  height: 22px;
  color: var(--deep);
  flex-shrink: 0;
}

.offer-bottom-item span {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.3;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .offer-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .offer-trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .offer-trust-item:nth-child(2) {
    border-right: none;
  }
  .offer-trust-item {
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 720px) {
  .offering-modal-content.offer-banner-content {
    padding: 28px 16px 24px;
  }
  .offer-banner-top {
    flex-direction: column;
    text-align: center;
  }
  .offer-wa-banner {
    flex-direction: column;
  }
  .offer-wa-left {
    justify-content: center;
  }
  .offer-bottom-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .offer-cards-grid {
    grid-template-columns: 1fr;
  }
  .offer-trust-strip {
    grid-template-columns: 1fr;
  }
  .offer-trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .offer-trust-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
}

/* ---------- Team photo lightbox ---------- */
.team-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 10, 6, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease), visibility .3s var(--ease);
}

.team-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.team-lightbox img {
  max-width: min(520px, 92vw);
  max-height: 82vh;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.team-lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.team-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: scale(1.05);
}
