/* Profolio — cosmic theme, mobile-first, Instagram CTAs */

:root {
  --bg-base: #030305;
  --bg-glass: rgba(10, 15, 30, 0.55);
  --bg-glass-strong: rgba(8, 12, 26, 0.82);
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #94a3b8;
  --cyan: #00f3ff;
  --magenta: #bc13fe;
  --cyan-soft: rgba(0, 243, 255, 0.15);
  --magenta-soft: rgba(188, 19, 254, 0.12);
  --border-cyan: rgba(0, 243, 255, 0.2);
  --border-cyan-strong: rgba(0, 243, 255, 0.45);
  --glow-cyan: 0 0 24px rgba(0, 243, 255, 0.35);
  --glow-card: 0 0 30px rgba(0, 243, 255, 0.12), inset 0 0 20px rgba(0, 243, 255, 0.04);
  --glow-card-hover: 0 0 40px rgba(0, 243, 255, 0.25), inset 0 0 24px rgba(0, 243, 255, 0.08);
  --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.55);
  --ig-start: #f58529;
  --ig-mid: #dd2a7b;
  --ig-end: #8134af;
  --radius: 18px;
  --radius-lg: 24px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Space Grotesk", "DM Sans", system-ui, sans-serif;
  --header-h: 4rem;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
}

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

::selection {
  background: #06b6d4;
  color: #fff;
}

/* ── Scroll progress + mobile journey (aminajaved-style) ── */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--cyan));
  background-size: 200% 100%;
  z-index: 9999;
  box-shadow: 0 0 8px rgba(0, 243, 255, 0.6);
  transition: width 0.08s linear;
  pointer-events: none;
}

#scroll-journey {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 140;
  padding: 0.4rem 0.75rem calc(0.4rem + var(--safe-bottom));
  background: linear-gradient(to top, rgba(3, 3, 5, 0.95) 70%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(0, 243, 255, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

#scroll-journey.visible {
  transform: translateY(0);
  pointer-events: auto;
}

.journey-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  max-width: 28rem;
  margin-inline: auto;
}

.journey-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}

.journey-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0, 243, 255, 0.25);
  background: rgba(0, 243, 255, 0.04);
  color: var(--text-muted);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.journey-icon-btn svg {
  width: 0.95rem;
  height: 0.95rem;
}

.journey-icon-btn.active {
  background: rgba(0, 243, 255, 0.16);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 10px rgba(0, 243, 255, 0.35);
  transform: scale(1.05);
}

.journey-icon-btn.done {
  color: rgba(0, 243, 255, 0.65);
  border-color: rgba(0, 243, 255, 0.35);
}

.journey-count {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--cyan);
  flex-shrink: 0;
  min-width: 2rem;
  text-align: right;
}

#scroll-hint {
  display: none;
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  z-index: 20;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#scroll-hint.hidden-hint {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}

#scroll-hint span {
  font-family: ui-monospace, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(0, 243, 255, 0.75);
}

#scroll-hint svg {
  color: var(--cyan);
  animation: scroll-hint-bounce 2s ease-in-out infinite;
}

@keyframes scroll-hint-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* ── Space background ── */

#webgl-container {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: var(--bg-base);
}

.hud-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 243, 255, 0.05);
}

.hud-overlay::before,
.hud-overlay::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
}

.hud-overlay::before {
  top: 16px;
  left: 16px;
  border-top: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  opacity: 0.45;
}

.hud-overlay::after {
  bottom: 16px;
  right: 16px;
  border-bottom: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.45;
}

.hud-corner-tr {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-top: 2px solid var(--cyan);
  border-right: 2px solid var(--cyan);
  opacity: 0.45;
}

.hud-corner-bl {
  position: absolute;
  bottom: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  border-bottom: 2px solid var(--cyan);
  border-left: 2px solid var(--cyan);
  opacity: 0.45;
}

.scanline {
  width: 100%;
  height: 2px;
  background: rgba(0, 243, 255, 0.1);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  animation: scan 4s linear infinite;
  pointer-events: none;
}

@keyframes scan {
  0% { top: -10%; }
  100% { top: 110%; }
}

.page-shell {
  position: relative;
  z-index: 1;
}

.wrap {
  width: min(1080px, calc(100% - 1.5rem));
  margin-inline: auto;
}

/* ── Header ── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(3, 3, 5, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-cyan);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
  text-shadow: var(--glow-cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s, text-shadow 0.2s;
}

.site-nav a:hover {
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.5);
}

.nav-cta {
  background: linear-gradient(135deg, var(--ig-start), var(--ig-mid), var(--ig-end)) !important;
  color: #fff !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(221, 42, 123, 0.35);
  text-shadow: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cyan);
  border-radius: 2px;
  margin-inline: auto;
  box-shadow: 0 0 6px rgba(0, 243, 255, 0.5);
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-instagram {
  background: linear-gradient(135deg, var(--ig-start), var(--ig-mid), var(--ig-end));
  color: #fff;
  box-shadow: 0 4px 24px rgba(221, 42, 123, 0.35);
}

.btn-instagram:hover {
  box-shadow: 0 6px 32px rgba(221, 42, 123, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(0, 243, 255, 0.08);
  color: var(--cyan);
  border-color: var(--border-cyan-strong);
  box-shadow: 0 0 16px rgba(0, 243, 255, 0.12);
}

.btn-secondary:hover {
  background: rgba(0, 243, 255, 0.15);
  box-shadow: var(--glow-cyan);
  transform: translateY(-2px);
}

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

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

.btn-lg {
  min-height: 52px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.btn-compact {
  min-height: 42px;
  padding: 0.55rem 0.7rem;
  font-size: 0.78rem;
  gap: 0.35rem;
  justify-content: center;
}

.btn-compact svg {
  flex-shrink: 0;
}

.btn-compact span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Hero ── */

.hero {
  padding: clamp(2rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 3.5rem);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.open-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #86efac;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.open-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px #22c55e;
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.75rem;
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.45);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  font-weight: 600;
}

.hero h1 .gradient {
  background: linear-gradient(120deg, var(--cyan) 0%, #e879f9 55%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 243, 255, 0.25));
}

.hero-lead {
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: var(--text-secondary);
  max-width: 32rem;
  margin: 0 0 1.5rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

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

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

.trust-item {
  text-align: center;
  padding: 0.85rem 0.5rem;
  border-radius: 14px;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--cyan);
  text-shadow: 0 0 12px rgba(0, 243, 255, 0.4);
  line-height: 1.1;
}

.trust-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
  line-height: 1.3;
}

.hero-visual {
  display: flex;
  justify-content: center;
  padding: 0 0.5rem;
}

.hero-phone-stack {
  position: relative;
  width: min(300px, 88vw);
  height: min(440px, 115vw);
  margin-inline: auto;
  flex-shrink: 0;
}

.phone-frame {
  background: #050508;
  padding: 0.65rem 0.65rem 0;
  border-radius: 28px;
  border: 1px solid rgba(0, 243, 255, 0.15);
  box-shadow: var(--shadow-deep), 0 0 30px rgba(0, 243, 255, 0.1);
  overflow: hidden;
}

.phone-frame::before {
  content: "";
  display: block;
  width: 32%;
  height: 4px;
  background: rgba(0, 243, 255, 0.35);
  border-radius: 99px;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 8px rgba(0, 243, 255, 0.4);
}

.phone-screen {
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border-radius: 4px 4px 0 0;
  background: #f5f5f4;
  line-height: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.phone-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  max-width: 100%;
  background: #f5f5f4;
}

.phone-back {
  position: absolute;
  right: -8%;
  top: 8%;
  width: 78%;
  opacity: 0.55;
  transform: rotate(6deg);
  z-index: 0;
}

.phone-front {
  position: relative;
  z-index: 1;
  width: 88%;
  margin: 0 auto;
}

/* ── Sections ── */

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-lead {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── Work ── */

.work {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.featured-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.25rem 0 1rem;
}

.featured-scroll::-webkit-scrollbar { display: none; }

.work-card {
  flex: 0 0 min(300px, 82vw);
  scroll-snap-align: start;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glow-card-hover);
  border-color: var(--border-cyan-strong);
}

.work-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f4;
  border-bottom: 1px solid var(--border-cyan);
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f5f5f4;
}

.work-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.work-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  background: var(--magenta-soft);
  border: 1px solid rgba(188, 19, 254, 0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
}

.work-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 0.4rem;
}

.work-card-body p {
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

.work-cta {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cyan);
}

.work-note {
  text-align: center;
  color: var(--text-muted);
  margin: 2rem 0 1rem;
  font-size: 0.9rem;
}

.hint-swipe {
  color: var(--cyan);
  font-weight: 600;
}

/* ── Carousel ── */

.marquee-wrap { position: relative; }

.marquee-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  touch-action: pan-y;
  padding: 0.25rem 0;
}

.marquee-viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  will-change: transform;
}

.marquee-card {
  flex: 0 0 auto;
  width: min(260px, 72vw);
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(10, 15, 30, 0.78);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-cyan);
  transition: border-color 0.25s, transform 0.25s;
}

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

.marquee-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 1px solid var(--border-cyan);
  background: #f5f5f4;
}

.marquee-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
  background: #f5f5f4;
}

.marquee-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.marquee-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 600;
}

.marquee-card-body strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
}

.marquee-card-cta {
  font-size: 0.82rem;
  color: var(--cyan);
  margin-top: 0.1rem;
}

/* ── Services ── */

.services {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(180deg, transparent, rgba(0, 243, 255, 0.03) 50%, transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--glow-card-hover);
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--cyan-soft);
  color: var(--cyan);
  margin-bottom: 0.85rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.service-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-banner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-cyan-strong);
  box-shadow: var(--glow-card-hover);
  position: relative;
  overflow: hidden;
}

.pricing-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 243, 255, 0.06), rgba(188, 19, 254, 0.06));
  pointer-events: none;
}

.pricing-banner > * { position: relative; z-index: 1; }

.pricing-label {
  margin: 0 0 0.25rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
}

.pricing-banner h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  margin: 0 0 0.5rem;
}

.pricing-banner h3 strong {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}

.pricing-note {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-banner .btn-instagram { align-self: flex-start; }

/* ── About ── */

.about {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

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

.about-showcase-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid var(--border-cyan);
  box-shadow: var(--glow-card);
  display: block;
  max-width: 100%;
  background: #f5f5f4;
}

.about-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2.2rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
}

.about-copy p {
  color: var(--text-secondary);
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.about-tech {
  margin-top: 1.25rem !important;
  font-size: 0.88rem;
}

.about-tech a {
  color: var(--cyan);
  font-weight: 600;
  text-shadow: 0 0 8px rgba(0, 243, 255, 0.35);
}

/* ── Contact ── */

.contact {
  padding: clamp(3rem, 8vw, 5rem) 0;
  padding-bottom: calc(clamp(3rem, 8vw, 5rem) + 4rem + var(--safe-bottom));
}

.contact-box {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-glass-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--border-cyan-strong);
  box-shadow: var(--glow-card-hover);
}

.contact-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.contact-actions .btn {
  flex: 1;
  min-width: 0;
  max-width: 9.5rem;
}

/* ── Footer ── */

.site-footer {
  padding: 1.75rem 0 calc(5.5rem + var(--safe-bottom));
  border-top: 1px solid var(--border-cyan);
  background: rgba(2, 2, 3, 0.6);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: center;
}

.footer-inner p { margin: 0; }

.footer-links a {
  color: var(--cyan);
  text-decoration: none;
}

.footer-links a:hover { text-decoration: underline; }

/* ── Floating + mobile bar ── */

.float-contact {
  display: none;
  position: fixed;
  right: 1rem;
  bottom: calc(5rem + var(--safe-bottom));
  z-index: 150;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ig-start), var(--ig-mid), var(--ig-end));
  color: #fff;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(221, 42, 123, 0.45);
  transition: transform 0.2s;
}

.float-contact:hover { transform: scale(1.06); }

@media (max-width: 719px) {
  #scroll-hint { display: flex; }

  #scroll-journey { display: block; }

  .hero {
    min-height: 88svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .float-contact {
    display: flex;
    bottom: calc(3.25rem + var(--safe-bottom));
  }

  .site-footer {
    padding-bottom: calc(3.25rem + var(--safe-bottom));
  }

  .featured-scroll .work-card {
    flex: 0 0 86vw;
    scroll-snap-align: center;
  }

  .contact-actions .btn-compact span {
    display: none;
  }

  .contact-actions .btn-compact {
    padding: 0.55rem;
    max-width: 3.25rem;
  }
}

@media (min-width: 720px) {
  #scroll-hint,
  #scroll-journey {
    display: none !important;
  }
}

/* ── Desktop ── */

@media (min-width: 720px) {
  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hero-actions .btn { width: auto; }

  .trust-strip { gap: 1rem; }

  .trust-item { padding: 1rem; }

  .trust-item strong { font-size: 1.5rem; }

  .trust-item span { font-size: 0.75rem; }

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

  .pricing-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }

  .about-inner {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
  }

  .contact-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .contact-actions .btn {
    max-width: 8.5rem;
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .float-contact { display: flex; }

  .site-footer { padding-bottom: 2rem; }

  .contact {
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }
}

@media (min-width: 960px) {
  .featured-scroll {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: visible;
    gap: 1.25rem;
  }

  .work-card { flex: unset; }

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

  .hero-phone-stack {
    width: 320px;
    height: 460px;
  }

  .phone-back {
    right: -6%;
    top: 6%;
    width: 72%;
  }

  .phone-front {
    width: 84%;
  }
}

@media (max-width: 719px) {
  .nav-toggle { display: flex; }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg-glass-strong);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--border-cyan);
    box-shadow: var(--shadow-deep);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 0.75rem 0.5rem;
    text-align: center;
  }

  .nav-cta { margin-top: 0.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .scanline,
  .open-pill::before {
    animation: none;
  }

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

  .marquee-track {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  html { scroll-behavior: auto; }
}
