/* MyFile.ge — Static Promo Site */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700,900&display=swap");

:root {
  --background: #050816;
  --foreground: #f1f5f9;
  --brand-blue: #5b8cff;
  --brand-violet: #7a5cff;
  --brand-purple: #a855f7;
  --surface: #0a0f1e;
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --max-w: 80rem;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

.font-display { font-family: "Satoshi", "Manrope", system-ui, sans-serif; }

a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { font: inherit; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* Utilities */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
}

.glow-border {
  position: relative;
  isolation: isolate;
}
.glow-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}
.glow-border > * { position: relative; z-index: 1; }

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 40%, var(--brand-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-brand {
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.bg-gradient-brand {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
}

.section { padding: 6rem 0; position: relative; }
@media (min-width: 1024px) { .section { padding: 8rem 0; } }

.section-heading { text-align: center; max-width: 48rem; margin: 0 auto 3rem; }
@media (min-width: 1024px) { .section-heading { margin-bottom: 4rem; } }
.section-heading .badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--brand-blue);
  border: 1px solid rgba(91, 140, 255, 0.3);
  background: rgba(91, 140, 255, 0.1);
  border-radius: 9999px;
}
.section-heading h2 {
  font-family: "Satoshi", "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}
.section-heading p { margin-top: 1rem; font-size: 1.125rem; color: var(--slate-400); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: "Satoshi", "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: scale(1.02); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  box-shadow: 0 10px 40px rgba(122, 92, 255, 0.25);
}
.btn-primary:hover { box-shadow: 0 10px 40px rgba(91, 140, 255, 0.4); }
.btn-outline {
  color: #e2e8f0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.05); border-color: rgba(91, 140, 255, 0.5); }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.5s, border 0.5s, backdrop-filter 0.5s;
}
.site-header.scrolled {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.logo { font-family: "Satoshi", "Manrope", sans-serif; font-size: 1.25rem; font-weight: 700; }
.nav-desktop { display: none; gap: 2rem; }
.nav-desktop a { font-size: 0.875rem; color: var(--slate-400); transition: color 0.2s; }
.nav-desktop a:hover { color: #fff; }
.header-cta { display: none; gap: 0.625rem; flex-shrink: 0; }
.btn-share { font-family: inherit; cursor: pointer; white-space: nowrap; }
.menu-toggle {
  display: flex;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  border-radius: 0.5rem;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.1); }
.menu-toggle svg { width: 24px; height: 24px; }
@media (min-width: 768px) {
  .nav-desktop, .header-cta { display: flex; align-items: center; }
  .menu-toggle { display: none; }
}
@media (min-width: 768px) and (max-width: 900px) {
  .header-cta .btn { padding: 0.625rem 1rem; font-size: 0.8125rem; }
}

.share-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(1rem);
  z-index: 200;
  padding: 0.75rem 1.25rem;
  font-size: 0.875rem;
  color: #fff;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(91, 140, 255, 0.4);
  border-radius: 0.75rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.share-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 90;
}
.mobile-nav-backdrop.open { display: block; }
.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 1rem; right: 1rem;
  z-index: 95;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.125rem; color: #e2e8f0; }
.mobile-nav .btn { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  padding-top: calc(var(--header-h) + 1.5rem);
  padding-bottom: 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero {
    padding-top: calc(var(--header-h) + 1.75rem);
    padding-bottom: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .hero {
    padding-bottom: 3rem;
  }
}

/* პირველი სექცია Hero-ის შემდეგ — ნაკლები ცარიელი სივრცე */
#video.section {
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}
@media (min-width: 768px) {
  #video.section {
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
}
@media (min-width: 1024px) {
  #video.section {
    padding-top: 3.5rem;
    padding-bottom: 6rem;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(91, 140, 255, 0.35), transparent),
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(122, 92, 255, 0.25), transparent),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(168, 85, 247, 0.2), transparent);
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(5, 8, 22, 0.5), var(--background));
}
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  border-radius: 50%;
  background: rgba(91, 140, 255, 0.4);
  animation: float 6s ease-in-out infinite;
}
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: pulse-glow 4s ease-in-out infinite;
  pointer-events: none;
}
.glow-orb--blue { background: rgba(91, 140, 255, 0.3); width: 24rem; height: 24rem; }
.glow-orb--violet { background: rgba(122, 92, 255, 0.3); width: 16rem; height: 16rem; }
.glow-orb--purple { background: rgba(168, 85, 247, 0.3); width: 8rem; height: 8rem; }

.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.hero-content { text-align: center; }
@media (min-width: 1024px) { .hero-content { text-align: left; } }

.hero h1 {
  font-family: "Satoshi", "Manrope", sans-serif;
  font-size: clamp(1.625rem, 4.2vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero-desc {
  margin-top: 1.25rem;
  max-width: 36rem;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  color: var(--slate-400);
  line-height: 1.7;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  .hero-desc { margin-left: 0; margin-right: 0; }
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
}
@media (min-width: 1024px) {
  .hero-cta { justify-content: flex-start; margin-top: 2.5rem; gap: 1rem; }
}

/* Hero mockup */
.mockup-wrap { position: relative; max-width: 32rem; margin: 0 auto; }
@media (min-width: 1024px) { .mockup-wrap { max-width: none; } }
.float-card {
  position: absolute;
  z-index: 20;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #cbd5e1;
  animation: float 4s ease-in-out infinite;
}
.float-card--tr { top: 2rem; right: -1rem; animation-delay: 0s; }
.float-card--bl { bottom: 6rem; left: -0.5rem; animation-delay: 1s; animation-direction: alternate-reverse; }
@media (max-width: 639px) {
  .float-card { display: none; }
  .mockup-wrap { margin-top: 0.5rem; }
}
.mockup-card { overflow: hidden; padding: 0 !important; border-radius: 1rem; }
.mockup-upload { padding: 1rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mockup-upload-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.mockup-filename {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--slate-400);
  min-width: 0;
  flex: 1;
}
.mockup-filename span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mockup-status {
  display: flex; align-items: center; gap: 0.375rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  color: var(--brand-violet);
  background: rgba(122, 92, 255, 0.2);
  border-radius: 9999px;
  animation: pulse-opacity 2s ease infinite;
}
.progress-bar { margin-top: 0.75rem; height: 6px; background: rgba(255,255,255,0.1); border-radius: 9999px; overflow: hidden; }
.progress-fill {
  height: 100%;
  width: 78%;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  animation: progress-grow 2s ease-out forwards;
}
.waveform-wrap { padding: 1.5rem 1rem; }
.waveform {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 2px;
  height: 4rem;
}
.waveform-bar {
  width: 4px;
  border-radius: 9999px;
  background: linear-gradient(to top, var(--brand-violet), var(--brand-blue));
  transform-origin: bottom;
  animation: wave-bar 1.2s ease-in-out infinite;
}
.waveform-times { display: flex; justify-content: space-between; margin-top: 0.5rem; font-size: 10px; color: var(--slate-500); }
.timeline-markers { display: flex; gap: 4px; padding: 0 1rem 0.5rem; }
.timeline-markers span { flex: 1; height: 4px; border-radius: 9999px; background: rgba(255,255,255,0.2); }
.timeline-markers span.active { flex: 2; background: var(--brand-blue); }
.transcript-preview { padding: 1rem; border-top: 1px solid rgba(255,255,255,0.1); }
.transcript-line { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.transcript-line time { font-family: monospace; font-size: 10px; color: var(--brand-blue); flex-shrink: 0; }
.speaker-tag {
  display: inline-flex; align-items: center; gap: 0.25rem;
  padding: 0.125rem 0.375rem;
  font-size: 10px; font-weight: 500;
  border-radius: 0.25rem;
  margin-bottom: 0.125rem;
}
.speaker-tag--judge { background: rgba(122,92,255,0.2); color: var(--brand-violet); }
.speaker-tag--witness { background: rgba(91,140,255,0.2); color: var(--brand-blue); }
.transcript-line p { font-size: 0.75rem; color: var(--slate-400); line-height: 1.5; }
.mockup-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.5rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.02);
  font-size: 10px;
  color: var(--slate-500);
}
.mockup-footer .export { color: var(--brand-blue); }

/* Video */
.video-player-wrap { max-width: 56rem; margin: 0 auto; }
.video-player {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 1.5rem;
  overflow: hidden;
}
.video-poster {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(91,140,255,0.2), rgba(122,92,255,0.1), rgba(168,85,247,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s;
}
.video-poster.hidden { opacity: 0; pointer-events: none; }
.video-poster .grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(91,140,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,140,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.play-btn-ring {
  position: relative;
  width: 5rem; height: 5rem;
  display: flex; align-items: center; justify-content: center;
}
.play-btn-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(91, 140, 255, 0.3);
  animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.play-btn {
  position: relative;
  width: 5rem; height: 5rem;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(122, 92, 255, 0.4);
  transition: transform 0.2s;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 2rem; height: 2rem; margin-left: 4px; }
.video-native,
.video-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: none;
  object-fit: cover;
  background: #000;
}
.video-native.active,
.video-iframe.active { display: block; }

/* Features grid */
.features-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(122, 92, 255, 0.1);
}
.feature-icon {
  width: 3rem; height: 3rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: rgba(91, 140, 255, 0.15);
  color: var(--brand-blue);
  margin-bottom: 1rem;
  transition: background 0.3s, color 0.3s;
}
.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  color: #fff;
}
.feature-card h3 {
  font-family: "Satoshi", "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.feature-card p { font-size: 0.875rem; color: var(--slate-500); line-height: 1.6; }

/* How it works */
.steps-grid {
  display: grid;
  gap: 3rem;
  position: relative;
}
@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.steps-line {
  display: none;
  position: absolute;
  top: 4rem;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
}
@media (min-width: 1024px) { .steps-line { display: block; } }
.steps-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-violet), var(--brand-purple));
  transition: width 1s ease;
}
.steps-line-fill.animated { width: 100%; }
.step-item { text-align: center; position: relative; }
.step-icon-wrap {
  position: relative;
  width: 4rem; height: 4rem;
  margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 1rem;
}
.step-num {
  position: absolute;
  top: -0.5rem; right: -0.5rem;
  width: 1.75rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  border-radius: 50%;
}
.step-item h3 { font-family: "Satoshi", "Manrope", sans-serif; font-size: 1.25rem; font-weight: 600; color: #fff; }
.step-item p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--slate-400); max-width: 18rem; margin-left: auto; margin-right: auto; }

/* Use cases */
.usecases-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .usecases-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usecases-grid { grid-template-columns: repeat(3, 1fr); } }
.usecase-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  transition: transform 0.2s;
}
.usecase-card:hover { transform: translateY(-4px); }
.usecase-icon {
  width: 3.5rem; height: 3.5rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 1rem;
  background: rgba(91, 140, 255, 0.15);
  color: var(--brand-blue);
  transition: background 0.3s, color 0.3s;
}
.usecase-card:hover .usecase-icon {
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
  color: #fff;
}
.usecase-card h3 { font-family: "Satoshi", "Manrope", sans-serif; font-size: 1.125rem; font-weight: 600; color: #fff; }

/* CTA */
.cta-box {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  text-align: center;
  padding: 4rem 2rem;
}
.cta-inner {
  position: relative;
  z-index: 1;
  padding: 4rem 2rem;
}
.cta-box h2 {
  font-family: "Satoshi", "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
}
.cta-box p { margin-top: 1rem; max-width: 36rem; margin-left: auto; margin-right: auto; color: var(--slate-400); }
.cta-box .btn { margin-top: 2.5rem; padding: 1rem 2rem; font-size: 1rem; }

/* Footer */
.site-footer {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #030510;
  padding: 4rem 0 2rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(122, 92, 255, 0.05), transparent);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  gap: 3rem;
  position: relative;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }
.footer-grid h3 { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-400); margin-bottom: 1rem; }
.footer-grid ul li { margin-bottom: 0.75rem; }
.footer-grid a { font-size: 0.875rem; color: var(--slate-500); transition: color 0.2s; }
.footer-grid a:hover { color: #fff; }
.footer-desc { margin-top: 1rem; font-size: 0.875rem; color: var(--slate-500); max-width: 20rem; }
.social-links { display: flex; gap: 1rem; }
.social-link {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  color: var(--slate-400);
  transition: color 0.2s;
}
.social-link:hover { color: var(--brand-blue); }
.footer-bottom {
  position: relative;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-bottom p { font-size: 0.875rem; color: var(--slate-500); }
.footer-bottom .meta { font-size: 0.75rem; color: #475569; }

/* Contact page */
.contact-hero { text-align: center; padding-top: calc(var(--header-h) + 3rem); padding-bottom: 4rem; position: relative; }
.contact-hero h1 { font-family: "Satoshi", "Manrope", sans-serif; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.contact-info {
  max-width: 28rem;
  margin: 0 auto;
  padding-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card { padding: 1.5rem; }
.contact-card-row { display: flex; gap: 1rem; align-items: flex-start; }
.contact-card-icon {
  width: 3rem; height: 3rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.75rem;
  background: rgba(91, 140, 255, 0.2);
  color: var(--brand-blue);
}
.contact-card h3 { font-family: "Satoshi", "Manrope", sans-serif; font-weight: 600; color: #fff; }
.contact-card a { display: block; margin-top: 0.25rem; font-size: 0.875rem; color: var(--brand-blue); }
.contact-card a:hover { color: var(--brand-violet); }
/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Spin icon */
.spin { animation: spin 1s linear infinite; }
.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }

/* Keyframes */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(10px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}
@keyframes pulse-opacity {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes progress-grow { from { width: 0; } to { width: 78%; } }
@keyframes wave-bar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(1.3); }
}

.features-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(122, 92, 255, 0.05), transparent);
  pointer-events: none;
}

/* ——— Responsive polish (mobile · tablet · laptop · desktop) ——— */

/* Smartphone */
@media (max-width: 479px) {
  :root { --header-h: 64px; }

  .section { padding: 3.5rem 0; }
  .section-heading { margin-bottom: 2.5rem; }
  .section-heading p { font-size: 0.9375rem; }

  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; min-height: 3rem; }

  .glow-orb--blue { width: 14rem; height: 14rem; }
  .glow-orb--violet { width: 10rem; height: 10rem; }
  .glow-orb--purple { width: 6rem; height: 6rem; }

  .cta-inner { padding: 2.5rem 1.25rem !important; }
  .cta-box .btn { width: 100%; }

  .contact-hero { padding-top: calc(var(--header-h) + 2rem); padding-bottom: 2.5rem; }
  .contact-info { padding-bottom: 4rem; }
}

/* Smartphone landscape & small tablet */
@media (min-width: 480px) and (max-width: 767px) {
  .section { padding: 4.5rem 0; }
  .hero-grid { gap: 2.5rem; }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 40rem;
    margin: 0 auto;
  }
  .hero-content { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .mockup-wrap { max-width: 36rem; }

  .section-heading { margin-bottom: 3rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Laptop / desktop */
@media (min-width: 1024px) {
  .hero-grid { align-items: center; }
}

/* Large desktop */
@media (min-width: 1280px) {
  .hero h1 { font-size: 3.5rem; }
}

/* Touch-friendly targets */
@media (hover: none) and (pointer: coarse) {
  .btn { min-height: 2.75rem; padding: 0.875rem 1.5rem; }
  .social-link { width: 2.75rem; height: 2.75rem; }
  .menu-toggle { min-width: 2.75rem; min-height: 2.75rem; }
}

/* Prevent horizontal overflow */
.hero .container,
.section .container,
.site-footer .container {
  overflow-x: clip;
}
