/* Mobile baseline: makes layouts behave predictably */
* { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }

html, body { width: 100%; overflow-x: hidden; }
body { margin: 0; line-height: 1.5; }

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

/* Responsive typography */
h1 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h2 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
p  { font-size: clamp(1rem, 2.4vw, 1.1rem); }
h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.2px; }

/* Mobile layout overrides */
@media (max-width: 768px) {
  .grid, .columns, .row { 
    display: grid !important; 
    grid-template-columns: 1fr !important; 
    gap: 0.5rem !important;
  }

  header { padding: 28px 0 !important; }

  /* kill common fixed-width problems */
  [style*="width:"] { max-width: 100% !important; }
}
:root{
  --bg: #070b12;
  --panel: rgba(255,255,255,0.06);
  --panel2: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.72);
  --muted2: rgba(255,255,255,0.58);
  --blue: #2ea8ff;
  --blue2:#0b3bff;
  --accent: #f6c27a;
  --danger:#ff4d4d;
  --ok:#36d399;
  --shadow: 0 18px 50px rgba(0,0,0,0.45);
  --font-display: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  --font-body: "Source Sans 3", "IBM Plex Sans", "Segoe UI", system-ui, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family: var(--font-body); }
body {
  position: relative;
  min-height: 100%;
  animation: breathePage 12s ease-in-out infinite;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: -20% -10%;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(35% 35% at 15% 10%, rgba(46,168,255,0.22), transparent 70%),
    radial-gradient(30% 30% at 85% 15%, rgba(246,194,122,0.12), transparent 70%),
    radial-gradient(40% 40% at 70% 85%, rgba(11,59,255,0.18), transparent 75%);
  opacity: 0.6;
}

body::after {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.04), transparent 50%),
    linear-gradient(200deg, rgba(255,255,255,0.03), transparent 55%);
  opacity: 0.5;
}

.spotlight-overlay {
  position: fixed;
  inset: -25% -15%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(45% 45% at var(--spotlight-x, 20%) var(--spotlight-y, 20%), rgba(255,255,255,0.25), rgba(255,255,255,0.04) 40%, transparent 70%);
  mix-blend-mode: screen;
  opacity: var(--spotlight-opacity, 0.5);
  filter: blur(1px);
}

.matrix-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  mix-blend-mode: screen;
}

main,
.topbar,
.footer {
  position: relative;
  z-index: 2;
}

@keyframes breathePage {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.995;
  }
}
@media (max-width: 768px){
  body{ font-size: 15px; }
}
a{ color: inherit; text-decoration:none; }
a:hover{ text-decoration: underline; text-decoration-color: rgba(46,168,255,0.55); }

.container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }
.grid{ display:grid; gap:0.75rem; }
@media (min-width: 900px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: 1fr 1fr 1fr; }
}

.topbar{
  position: sticky; top:0; z-index:50;
  background: rgba(7,11,18,0.70);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.topbar .container.nav{
  position: relative;
}

.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
  text-decoration: none;
  color: inherit;
  font-family: var(--font-display);
}
.brand:hover {
  text-decoration: none;
}
.brand img{
  width: 36px; 
  height: 36px; 
  border-radius: 12px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
  background: transparent;
}
/* Show broken image indicator for debugging */
.brand img[src=""] {
  display: none;
}
.brand small{ display:block; font-weight:600; color:var(--muted2); letter-spacing:0.15px; margin-top:2px; }

.main-nav{ display:none; }
.main-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a{
  position: relative;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  padding: 6px 2px;
  transition: color 0.18s ease;
}
/* Active (current page) nav link */
.main-nav a.active{
  color: var(--text);
  text-shadow: 0 0 10px rgba(46,168,255,0.45);
}

.main-nav a.active::after{
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(46,168,255,1),
    rgba(46,168,255,0.55)
  );
}

.main-nav a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(46,168,255,0.9),
    rgba(46,168,255,0.4)
  );
  border-radius: 2px;
  transition: width 0.18s ease;
}

.main-nav a:hover{
  color: var(--text);
  text-shadow: 0 0 8px rgba(46,168,255,0.35);
}

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

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

/* Desktop navigation */
@media (min-width: 900px){
  .main-nav{ 
    display: block; 
  }
  .main-nav ul{
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .menu-toggle{ 
    display: none; 
  }
  .mobile-nav{ 
    display: none !important; 
  }
}

/* Mobile navigation — global */
@media (max-width: 899px) {
  .main-nav {
    display: none;
  }
  
  .main-nav.open {
    display: block;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
}

/* Menu toggle button */
.menu-toggle{
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}
.menu-toggle span{
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){
  transform: rotate(45deg) translate(7px, 7px);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2){
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3){
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile navigation */
.mobile-nav{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 100;
}
.mobile-nav.active{
  display: block;
}
.mobile-nav ul{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav a{
  display: block;
  color: var(--muted);
  font-weight: 600;
  font-size: 17px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.18s ease;
}
.mobile-nav a:hover,
.mobile-nav a.active{
  color: var(--text);
  text-decoration: none;
}
.mobile-nav a.btn{
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin-top: 8px;
}

.btn{
  position: relative;
  overflow: hidden;
  display:inline-flex; align-items:center; justify-content:center;
  padding: 10px 14px; border-radius:14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-weight:700;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.btn::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
}
.btn:hover::after{
  transform: translateX(120%);
}
.btn:hover{ background: rgba(255,255,255,0.09); text-decoration:none; }
.btn.primary{
  background: linear-gradient(135deg, rgba(46,168,255,0.95), rgba(11,59,255,0.72));
  border: 1px solid rgba(46,168,255,0.55);
}
.btn.primary:hover{
  filter: brightness(1.08);
  box-shadow: 0 10px 28px rgba(46,168,255,0.45);
}

.hero {
  padding: clamp(32px, 4vw, 48px) 0 clamp(40px, 5vw, 56px);
  position: relative;
  overflow: hidden;
  animation: breathe 8s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -200px -120px auto -120px;
  height: 460px;
  background: radial-gradient(closest-side, rgba(46,168,255,0.22), rgba(46,168,255,0.00) 70%);
  pointer-events: none;
  animation: breatheGradient 6s ease-in-out infinite;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -180px -180px -180px;
  height: 420px;
  background: radial-gradient(closest-side, rgba(11,59,255,0.14), rgba(11,59,255,0.00) 70%);
  pointer-events: none;
  animation: breatheGradient 7s ease-in-out infinite reverse;
}

@media (max-width: 768px) {
  .hero::before {
    inset: -150px -80px auto -80px;
    height: 320px;
    opacity: 0.8;
  }
  .hero::after {
    inset: auto -120px -120px -120px;
    height: 280px;
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 1rem 3rem;
  }
  .hero .h1 {
    margin-bottom: 0.5rem;
  }
  .hero .lead {
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .hero .actions {
    margin-top: 1rem;
    gap: 0.5rem;
  }
  .hero .note {
    margin-top: 0.75rem;
  }
}

/* Services section spacing */
.section-services {
  padding-top: 1.5rem;
}

@media (max-width: 768px) {
  .section-services {
    padding-top: 1.5rem;
  }
}

.kicker{
  display:inline-flex; gap:10px; align-items:center;
  color:var(--muted);
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  padding: 8px 12px; border-radius: 999px;
  font-weight:700; font-size:13px;
  font-family: var(--font-display);
}
.dot{
  width:8px; height:8px; border-radius:50%;
  background: var(--blue);
  box-shadow: 0 0 0 6px rgba(46,168,255,0.14);
}
.h1{
  font-size: clamp(36px, 5.5vw, 58px);
  line-height:1.12;
  letter-spacing:-0.9px;
  margin: 12px 0 0.5rem;
  font-weight: 800;
  font-family: var(--font-display);
  animation: breatheTitle 6s ease-in-out infinite;
}

@keyframes breatheTitle {
  0%, 100% {
    transform: scale(1);
    letter-spacing: -0.9px;
  }
  50% {
    transform: scale(1.01);
    letter-spacing: -0.85px;
  }
}
.lead{
  font-size: 16px;
  line-height:1.45;
  color: var(--muted);
  max-width: 62ch;
  margin-bottom: 1rem;
}
.actions{ display:flex; flex-wrap:wrap; gap:10px; margin-top:1.25rem; }
@media (max-width: 768px) {
  .actions {
    gap: 0.5rem;
    margin-top: 1rem;
  }
  .actions .btn {
    padding: 0.75rem 1rem;
    font-size: 14px;
  }
}
.note{ color: var(--muted2); font-size:13px; margin-top:10px; }
@media (max-width: 768px) {
  .note {
    margin-top: 0.75rem;
    font-size: 12px;
  }
}

.card{
  position: relative;
  overflow: hidden;
  border:1px solid rgba(255,255,255,0.18);
  background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.58), 0 0 0 1px rgba(255,255,255,0.08);
  transform: translateY(-3px);
  margin-bottom: 3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: breatheCard 10s ease-in-out infinite;
  animation-delay: calc(var(--card-index, 0) * 0.5s);
}
.card.is-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.card::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 55%);
  opacity: 0.5;
  pointer-events: none;
}
.card > *{
  position: relative;
  z-index: 1;
}
.card:hover{
  transform: translateY(-5px) scale(1.002);
  box-shadow: 0 24px 70px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.12);
  animation-play-state: paused;
}
.card h3{ margin: 0 0 0.75rem; font-size: 16px; }
.card p{ margin:0; color: var(--muted); line-height:1.4; }

@media (max-width: 768px) {
  .card {
    padding: 1rem;
    transform: translateY(-1px);
    margin-bottom: 0.5rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.50), 0 0 0 1px rgba(255,255,255,0.08);
  }
  .card h3 {
    margin-bottom: 0.6rem;
    font-size: 15px;
  }
  .card p {
    line-height: 1.35;
    font-size: 14px;
  }
  .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.12);
  }
  .badge {
    padding: 4px 8px;
    font-size: 11px;
    margin-bottom: 0.5rem;
  }
}
.badge{
  display:inline-flex; align-items:center; gap:6px;
  font-size:12px; font-weight:800;
  padding: 6px 10px;
  margin-bottom: 0.6rem;
  border-radius: 999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}
.badge .card-icon {
  margin-right: 0;
}

.section{ 
  padding: 1.5rem 1rem; 
  position: relative;
}
@media (min-width: 768px){
  .section{ padding: 3rem 2rem; }
}
@media (max-width: 768px) {
  .section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  }
}
.section h2{
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing:-0.4px;
  font-family: var(--font-display);
}
.section .sub{ color:var(--muted); max-width: 78ch; line-height:1.65; margin:0 0 16px; }

@media (max-width: 768px) {
  .section h2 {
    font-size: 20px;
    margin-bottom: 0.5rem;
  }
  .section .sub {
    line-height: 1.5;
    margin-bottom: 1rem;
  }
}

.list{ margin: 0; padding-left: 18px; color: var(--muted); line-height:1.7; }
.list li{ margin: 6px 0; }

@media (max-width: 768px) {
  .list {
    padding-left: 16px;
    line-height: 1.6;
  }
  .list li {
    margin: 4px 0;
  }
}

.split{
  display:grid;
  gap:18px;
}
@media (min-width: 900px){
  .split{ grid-template-columns: 1.25fr 0.75fr; align-items: start; }
}

.footer{
  padding: 26px 0 44px;
  border-top:1px solid var(--border);
  color: var(--muted2);
}
.footer .footgrid{
  display:grid; gap:14px;
}
@media (min-width: 900px){
  .footer .footgrid{ grid-template-columns: 1.3fr 0.7fr 0.7fr; }
}
.footer a{ color: var(--muted); }
.small{ font-size: 13px; }
hr.sep{ border:none; border-top:1px solid var(--border); margin: 18px 0; }

.form{
  display:grid; gap:10px;
}
label{ font-size:13px; font-weight:800; color:var(--muted); }
input, textarea{
  width:100%;
}

@media (max-width: 768px) {
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-top: 1.25rem;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

/* ========================================
   CUTTING-EDGE VISUAL ENHANCEMENTS
   ======================================== */

/* Animated grid pattern overlay for hero */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(46,168,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,168,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  opacity: 0.4;
  animation: gridMove 20s linear infinite;
}

/* Hero reveal on load */
.hero .kicker,
.hero .h1,
.hero .lead,
.hero .actions,
.hero .note {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero .kicker { transition-delay: 0.05s; }
.hero .h1 { transition-delay: 0.12s; }
.hero .lead { transition-delay: 0.18s; }
.hero .actions { transition-delay: 0.24s; }
.hero .note { transition-delay: 0.3s; }

body.is-ready .hero .kicker,
body.is-ready .hero .h1,
body.is-ready .hero .lead,
body.is-ready .hero .actions,
body.is-ready .hero .note {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gridMove {
  0% { transform: translate(0, 0); }
  100% { transform: translate(40px, 40px); }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after {
    display: none;
  }
  .hero-grid-overlay {
    animation: none;
  }
  .hero .kicker,
  .hero .h1,
  .hero .lead,
  .hero .actions,
  .hero .note {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Image loading states */
img.loading {
  opacity: 0.3;
  filter: blur(5px);
  transition: opacity 0.3s, filter 0.3s;
}

img.loaded {
  opacity: 1;
  filter: blur(0);
}

img.error {
  opacity: 0.5;
  background: rgba(255,255,255,0.05);
}

/* Card icon enhancements */
.card-icon {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
  filter: brightness(0) saturate(100%) invert(67%) sepia(96%) saturate(1234%) hue-rotate(182deg) brightness(101%) contrast(101%);
  transition: transform 0.2s ease, filter 0.2s ease;
  flex-shrink: 0;
}

.card:hover .card-icon {
  transform: scale(1.1);
  filter: brightness(0) saturate(100%) invert(67%) sepia(96%) saturate(1234%) hue-rotate(182deg) brightness(120%) contrast(101%);
}

.card svg {
  width: 48px;
  height: 48px;
  margin: 0;
  color: var(--blue);
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(46,168,255,0.3));
}

.card:hover svg {
  filter: drop-shadow(0 0 12px rgba(46,168,255,0.5));
}

.card-illustration {
  color: var(--blue);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.35rem;
}

.card-header .card-illustration {
  flex-shrink: 0;
  margin-top: 2px;
}

.card-heading {
  margin: 0;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.panel-header h2 {
  margin: 0;
}

.panel-icon {
  width: 28px;
  height: 28px;
  color: var(--accent);
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(246,194,122,0.35));
}

/* Pulse animation for badges and indicators */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  @keyframes pulse {
    0%, 100% { opacity: 1; }
  }
}

/* Scroll fade-in support */
.card {
  will-change: opacity, transform;
}

/* Form validation states */
.form input.valid,
.form textarea.valid {
  border-color: rgba(54,211,153,0.4);
  box-shadow: 0 0 0 2px rgba(54,211,153,0.1);
}

.form input.invalid,
.form textarea.invalid {
  border-color: rgba(255,77,77,0.4);
  box-shadow: 0 0 0 2px rgba(255,77,77,0.1);
}

.form input:focus,
.form textarea:focus {
  outline: none;
  border-color: rgba(46,168,255,0.5);
  box-shadow: 0 0 0 2px rgba(46,168,255,0.15);
}

/* Enhanced card border glow on hover */
.card:hover {
  border-color: rgba(255,255,255,0.22);
}

/* Service-specific visual accents */
.card[data-service="security"] {
  border-left: 3px solid var(--blue);
}

.card[data-service="healthcare"] {
  border-left: 3px solid var(--ok);
}

.card[data-service="ai"] {
  border-left: 3px solid var(--blue2);
}

.card[data-service="remote-maintenance"] {
  border-left: 3px solid var(--accent);
}

.card[data-service="remote-deployment"] {
  border-left: 3px solid var(--blue);
}

.card[data-service="remote-audit"] {
  border-left: 3px solid var(--danger);
}

.card[data-service="security"] .card-illustration {
  color: var(--blue);
}

.card[data-service="healthcare"] .card-illustration {
  color: var(--ok);
}

.card[data-service="ai"] .card-illustration {
  color: var(--blue2);
}

.card[data-service="remote-maintenance"] .card-illustration {
  color: var(--accent);
}

.card[data-service="remote-deployment"] .card-illustration {
  color: var(--blue);
}

.card[data-service="remote-audit"] .card-illustration {
  color: var(--danger);
}

.card[data-service="resilience"] .card-illustration {
  color: var(--accent);
}

.card[data-service="compliance"] .card-illustration {
  color: #e2e8f0;
}

.card[data-service="it"] .card-illustration {
  color: #7dd3fc;
}

.card[data-service="response"] .card-illustration {
  color: var(--danger);
}

/* Loading skeleton (for future use) */
.skeleton {
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.05) 0%,
    rgba(255,255,255,0.08) 50%,
    rgba(255,255,255,0.05) 100%
  );
  background-size: 200% 100%;
  animation: skeletonLoad 1.5s ease-in-out infinite;
}

@keyframes skeletonLoad {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
    background: rgba(255,255,255,0.05);
  }
}

/* Breathing animation for page life */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.002);
    opacity: 0.98;
  }
}

@keyframes breatheGradient {
  0%, 100% {
    opacity: 0.22;
    transform: scale(1);
  }
  50% {
    opacity: 0.28;
    transform: scale(1.05);
  }
}

@keyframes breatheCard {
  0%, 100% {
    transform: translateY(-3px) scale(1);
  }
  50% {
    transform: translateY(-3.5px) scale(1.0015);
  }
}

@media (prefers-reduced-motion: reduce) {
  body,
  .hero,
  .hero::before,
  .hero::after,
  .card,
  .h1 {
    animation: none;
  }
}
