@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-color: #E7E7E7;
  --bg-surface: #ffffff;
  --bg-glass: rgba(255, 255, 255, 0.75);
  
  --border-color: #D1D1D1;
  --border-highlight: #FFFFFF;
  
  --text-main: #1d1d1f;
  --text-muted: #9B9B9B;
  --text-dark: #515154;
  
  --accent-blue: #9B9B9B;
  --gradient-blue: linear-gradient(135deg, #9B9B9B 0%, #D1D1D1 100%);
  --gradient-glow: conic-gradient(from 180deg at 50% 50%, #9B9B9B 0deg, #D1D1D1 180deg, #B6B6B6 360deg);
  
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Inter', -apple-system, sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-base: 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-float: 0 24px 60px rgba(0, 0, 0, 0.08);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { 
  font-family: var(--font-sans); 
  background-color: var(--bg-color); 
  color: var(--text-main); 
  line-height: 1.6; 
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: 
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position: center;
  z-index: -2;
  pointer-events: none;
}

/* ── FILM GRAIN TEXTURE ── */
body::after {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: overlay;
}

/* ── MOUSE INTERACTION SYSTEM ── */
.mouse-label {
  position: fixed; top: 0; left: 0;
  padding: 0.5rem 1rem; background: var(--text-main); color: #fff;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px;
  border-radius: 50px; pointer-events: none; z-index: 10001;
  opacity: 0; transform: translate(-50%, -50%) scale(0.5);
  transition: opacity 0.3s, transform 0.3s;
}
.custom-cursor-active .mouse-label.active {
  opacity: 1; transform: translate(-50%, -50%) scale(1);
}

/* ── SYSTEM LOGS OVERLAY ── */
.system-logs {
  position: fixed; bottom: 2rem; left: 2rem;
  width: 280px; background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px); border-radius: 12px;
  padding: 1rem; border: 1px solid rgba(255,255,255,0.1);
  color: #34c759; font-family: "JetBrains Mono", monospace;
  font-size: 0.65rem; z-index: 99; pointer-events: none;
  opacity: 0; transform: translateY(20px);
  transition: all 0.5s ease;
}
.system-logs.active { opacity: 0.8; transform: translateY(0); }
.log-entry { margin-bottom: 0.25rem; white-space: nowrap; overflow: hidden; }

/* ── SCROLL PROGRESS LINE ── */
.scroll-progress-line {
  position: fixed; top: 0; left: 1rem; width: 1px; height: 100vh;
  background: rgba(0,0,0,0.05); z-index: 100;
}
.scroll-progress-fill {
  position: absolute; top: 0; left: 0; width: 100%; height: 0%;
  background: var(--text-main); transition: height 0.1s linear;
}

/* Advanced Parallax Backgrounds */
.bg-blobs {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}
.blob {
  position: absolute;
  filter: blur(80px);
  opacity: 0.5;
  border-radius: 50%;
  animation: float 20s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
}
.blob-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: rgba(0, 102, 204, 0.15); animation-delay: 0s; }
.blob-2 { bottom: -20%; right: -10%; width: 60vw; height: 60vw; background: rgba(168, 83, 186, 0.1); animation-delay: -5s; }

@keyframes float {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(5%, 10%) scale(1.1); }
  100% { transform: translate(-5%, 5%) scale(0.9); }
}

a { color: var(--accent-blue); text-decoration: none; transition: var(--transition); }
a:hover { opacity: 0.7; }
img { max-width: 100%; height: auto; display: block; border-radius: var(--radius-md); }

h1, h2, h3, h4, h5, h6 { 
  font-family: var(--font-display); 
  font-weight: 700; 
  line-height: 1.1; 
  color: var(--text-main); 
  letter-spacing: -0.03em;
}

/* ── LAYOUT UTILS ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1;}
.section { padding: 8rem 0; position: relative; z-index: 1; }

.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-base);
  position: relative;
  overflow: hidden;
}

/* Interactive Glow Card */
.glow-card {
  position: relative;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
  overflow: hidden;
}

/* Dynamic Spotlight Glare */
.glow-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(
    800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
    rgba(255,255,255,0.8),
    transparent 40%
  );
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
  z-index: 1;
}

.glow-card > * {
  position: relative;
  z-index: 2;
}

.glow-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-float);
}
.glow-card:hover::before { opacity: 0.4; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.nav-logo { font-size: 1.25rem; font-weight: 800; letter-spacing: -0.5px; display: flex; align-items: center; gap: 0.5rem; color: var(--text-main); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.95rem; font-weight: 600; color: var(--text-dark); transition: var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--text-main); }
.nav-actions { display: flex; align-items: center; gap: 1rem; }

/* ── BUTTONS & LIQUID SWEEP ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease-out, opacity 0.6s ease-out;
  border-radius: 50%;
}
.btn:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.btn-primary {
  background: var(--text-main);
  color: #fff;
  border: 1px solid var(--text-main);
}
.btn-primary:hover {
  background: #000;
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-color);
}
.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(0,0,0,0.02);
}
.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.85rem; }

/* ── HERO & TYPOGRAPHY ── */
.page-header { padding: 10rem 0 6rem; text-align: center; }
.page-desc { font-size: 1.25rem; color: var(--text-muted); max-width: 800px; margin: 0 auto; line-height: 1.6; }
.page-title, .hero-title {
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text-main);
}

.reveal-word {
  background: linear-gradient(135deg, #1d1d1f 0%, #6e6e73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.section-title { font-size: clamp(2.5rem, 4vw, 4rem); letter-spacing: -0.03em; margin-bottom: 1rem; }

/* ── INFINITE MARQUEE ── */
.marquee-container {
  overflow: hidden; white-space: nowrap; position: relative; width: 100vw; margin-left: calc(-50vw + 50%); padding: 3rem 0;
  background: rgba(255,255,255,0.4); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color);
}
.marquee-content {
  display: inline-block; animation: marquee 30s linear infinite; font-size: 2rem; font-family: var(--font-display); font-weight: 800; color: rgba(0,0,0,0.1); text-transform: uppercase; letter-spacing: 2px;
}
.marquee-content span { margin: 0 2rem; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── TIMELINE ── */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; top: 0; bottom: 0; left: 20px; width: 4px;
  background: rgba(0, 0, 0, 0.05); border-radius: 4px;
}
.timeline-progress {
  position: absolute; top: 0; left: 20px; width: 4px;
  background: var(--gradient-blue);
  border-radius: 4px;
  height: 0%;
  z-index: 1;
}
.timeline-item { position: relative; margin-bottom: 3rem; padding-left: 60px; }
.timeline-dot {
  position: absolute; left: 14px; top: 0; width: 16px; height: 16px;
  background: #fff; border: 4px solid var(--accent-blue); border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(155, 155, 155, 0.1);
}
.timeline-content {
  background: var(--bg-glass); backdrop-filter: blur(20px); border: 1px solid var(--border-highlight);
  border-radius: var(--radius-md); padding: 2rem; box-shadow: var(--shadow-sm);
}

/* ── ADVANCED REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

.reveal-left { opacity: 0; transform: translateX(-40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-left.active { opacity: 1; transform: translateX(0); }

.reveal-right { opacity: 0; transform: translateX(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-right.active { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* Delay Utilities */
.d-1 { transition-delay: 0.1s; } .d-2 { transition-delay: 0.2s; }
.d-3 { transition-delay: 0.3s; } .d-4 { transition-delay: 0.4s; }

/* Miscellaneous Utilities */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.form-control { width: 100%; padding: 1.25rem; background: rgba(255, 255, 255, 0.6); border: 1px solid #d1d1d1; border-radius: var(--radius-sm); font-size: 1.05rem; font-family: var(--font-sans); transition: var(--transition); }
.form-control:focus { outline: none; border-color: var(--accent-blue); background: #fff; box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05); }
.cta-banner { background: var(--text-main); border-radius: var(--radius-lg); padding: 6rem 3rem; text-align: center; color: #fff; box-shadow: var(--shadow-float); }
.cta-banner h2 { color: #fff; margin-bottom: 1.5rem; }
.cta-banner p { color: #a1a1a6; font-size: 1.25rem; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* Admin Base Override */
.admin-layout { display: flex; min-height: 100vh; padding-top: 72px; }
.admin-sidebar { width: 260px; background: rgba(255, 255, 255, 0.8); backdrop-filter: blur(30px); border-right: 1px solid var(--border-color); padding: 2rem 1rem; position: sticky; top: 72px; height: calc(100vh - 72px); }
.admin-content { flex: 1; padding: 3rem; max-width: 1200px; margin: 0 auto; }
table { width: 100%; border-collapse: separate; border-spacing: 0; }
th { background: rgba(0, 0, 0, 0.02); color: var(--text-muted); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid #e7e7e7; }
td { padding: 1.25rem 1.5rem; border-bottom: 1px solid #e7e7e7; font-size: 1rem; color: var(--text-main); }
.badge { padding: 0.35rem 0.85rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 992px) {
  .nav-links, .nav-actions { display: none; }
  
  .section { padding: 4rem 0; }
  .page-header { padding: 8rem 0 4rem; }
  
  .grid { grid-template-columns: 1fr; gap: 1.5rem; }
  
  /* Mobile Admin Layout */
  .admin-layout { flex-direction: column; }
  .admin-sidebar { 
    width: 100%; 
    height: auto; 
    position: relative; 
    top: 0; 
    border-right: none; 
    border-bottom: 1px solid var(--border-color);
    padding: 1rem;
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .sidebar-nav { display: flex; gap: 1rem; }
  .sidebar-link { padding: 0.5rem 1rem !important; margin: 0 !important; }
  .admin-content { padding: 2rem 1rem; }
  
  .timeline::before, .timeline-progress { left: 10px; }
  .timeline-dot { left: 4px; }
  .timeline-item { padding-left: 40px; }
  
  .cta-banner { padding: 4rem 1.5rem; }
  
  .hide-mobile { display: none !important; }
  .admin-role-label { display: none !important; }
  .admin-user-info { margin-right: 0.5rem !important; }

  /* Capabilities Responsive Fixes */
  .vertical-sector { 
    flex-direction: column !important; 
    gap: 2rem !important; 
    text-align: center !important; 
  }
  .sector-content { text-align: center !important; }
  .sector-spacer { display: none !important; }
  
  .delivery-flow {
    flex-direction: column !important;
    overflow-x: visible !important;
  }
  .delivery-flow > div {
    min-width: 100% !important;
    clip-path: none !important; /* Remove chevrons on mobile for better space */
    padding: 2.5rem 1.5rem !important;
    border-radius: 12px !important;
  }
  
  .topology-compute {
    grid-template-columns: 1fr !important;
  }

  /* Architecture Responsive Fixes */
  .stack-grid {
    grid-template-columns: 1fr !important;
    gap: 3rem !important;
  }
  .stats-container {
    flex-direction: column !important;
    gap: 2rem !important;
  }
  .vision-mission-container {
    flex-direction: column !important;
  }
  .values-spec-table {
    grid-template-columns: 1fr !important;
  }
  .values-spec-table > div {
    border-right: none !important;
    border-bottom: 1px solid var(--border-color);
  }
  .values-spec-table > div:last-child { border-bottom: none; }

  /* Tech Stack Table to Cards */
  .tech-header { display: none !important; }
  .tech-row {
    grid-template-columns: 1fr !important;
    padding: 2rem !important;
    text-align: center;
  }
  .tech-layer, .tech-names, .tech-role {
    padding: 1rem 0 !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }
  .tech-role { border-bottom: none; }
  .tech-names { font-size: 1.25rem !important; }

  /* Contact Responsive Fixes */
  .contact-form-card {
    padding: 2rem !important;
  }
  .form-row {
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .contact-info-list {
    gap: 1.5rem !important;
  }
  .contact-item {
    padding: 1.5rem;
    background: rgba(0,0,0,0.02);
    border-radius: 12px;
  }
}

/* ── MOBILE NAVIGATION OVERLAY ── */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  padding: 0.5rem;
  cursor: pointer;
  z-index: 3001; /* Higher than overlay */
  position: relative;
  transition: transform 0.3s ease;
}

.mobile-nav-toggle svg line {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.mobile-nav-toggle.active #line1 { transform: translateY(6px) rotate(45deg); }
.mobile-nav-toggle.active #line2 { opacity: 0; }
.mobile-nav-toggle.active #line3 { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 992px) {
  .mobile-nav-toggle { display: block; }
}

.mobile-menu-overlay {
  position: fixed;
  top: 0; right: 0; width: 100%; height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateX(100%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.active { transform: translateX(0); }

.mobile-menu-links {
  list-style: none;
  text-align: center;
}

.mobile-menu-links li { margin-bottom: 2rem; }

.mobile-menu-links a {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -1px;
}

/* ── TOAST MESSAGES ── */
.toast {
  position: fixed;
  bottom: -150px; /* Increased to ensure complete hiding */
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-main);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-float);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3000; /* Higher z-index to stay above everything */
  white-space: nowrap;
}
.toast.show {
  bottom: 40px;
}

@media (max-width: 768px) {
  .toast {
    width: calc(100% - 2rem);
    bottom: auto;
    top: -150px;
    white-space: normal;
    text-align: center;
    justify-content: center;
    left: 1rem;
    transform: none;
  }
  .toast.show {
    top: 20px;
    bottom: auto;
  }
}

/* ── ULTRA-ADVANCED INTERACTIVITY ── */
body.custom-cursor-active, 
body.custom-cursor-active a, 
body.custom-cursor-active button, 
body.custom-cursor-active .btn, 
body.custom-cursor-active .glass-panel { cursor: none !important; }

/* Hide custom cursor on mobile */
@media (max-width: 992px) {
  .cursor-dot, .cursor-outline { display: none !important; }
  body.custom-cursor-active, 
  body.custom-cursor-active a, 
  body.custom-cursor-active button, 
  body.custom-cursor-active .btn, 
  body.custom-cursor-active .glass-panel { cursor: auto !important; }
}

.cursor-dot {
  position: fixed; top: 0; left: 0; width: 12px; height: 20px;
  background-color: white;
  border-radius: 2px;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 99999;
  transition: width 0.3s, height 0.3s, background-color 0.3s, opacity 0.2s;
  animation: cursor-blink 1s step-end infinite;
  mix-blend-mode: difference;
}

.cursor-outline {
  position: fixed; top: 0; left: 0; width: 40px; height: 40px;
  border: 1.5px dashed white;
  border-radius: 8px;
  transform: translate(-50%, -50%);
  pointer-events: none; z-index: 99998;
  transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.1s;
  mix-blend-mode: difference;
}

.cursor-outline.hovering {
  width: 60px; height: 60px;
  border-color: white;
  border-style: solid;
  transform: translate(-50%, -50%) rotate(45deg);
}
.cursor-dot.hovering {
  width: 20px; height: 20px;
  background-color: transparent;
  border: 3px solid white;
  border-radius: 50%;
  animation: none;
}

@keyframes cursor-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

/* Card Icon Hover Animation */
.card-animated {
  position: relative;
  overflow: hidden;
}

/* Premium Glass Shimmer Sweep */
.card-animated::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-25deg);
  transition: none;
  z-index: 10;
  pointer-events: none;
}

.card-animated:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.card-animated:hover .icon-container {
  transform: translateY(-8px) scale(1.1) !important;
  color: var(--text-main) !important;
  background: var(--bg-color) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Fix Lenis scrolling jumping on html */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

/* Table Responsiveness Utility */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
