/* 
   GovJob.site - Creative Day Theme (Paper & Glass)
   Theme: Light, Clean, High Readability
*/

@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap");

:root {
  /* --- Color Palette: Paper & Glass --- */
  --bg-deep: #ffffff;
  --bg-noise: #f8fafc; /* Subtle off-white for texture/sections */

  --glass-surface: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.06);
  --glass-highlight: rgba(255, 255, 255, 0.9);

  --primary: #0f172a;
  --secondary: #222222;
  --tertiary: #333333;

  /* Accents - Retaining vibrancy but calibrated for light mode */
  --neon-blue: #2563eb; /* Blue 600 */
  --neon-purple: #7c3aed; /* Violet 600 */
  --neon-cyan: #0891b2; /* Cyan 600 */
  --accent-glow: 0 4px 20px rgba(37, 99, 235, 0.2);

  /* Gradients */
  --grad-mesh: radial-gradient(
      at 0% 0%,
      hsla(210, 100%, 96%, 1) 0,
      transparent 50%
    ),
    radial-gradient(at 100% 0%, hsla(260, 100%, 96%, 1) 0, transparent 50%);

  --grad-text: linear-gradient(135deg, #0f172a 0%, #334155 100%);

  /* --- Typography --- */
  --font-display: "Syne", sans-serif;
  --font-heading: "Space Grotesk", sans-serif;
  --font-body: "Plus Jakarta Sans", sans-serif;

  /* --- Spacing & Layout --- */
  --container-width: 1200px; /* Standard width for better readability */
  --dock-height: 70px;
  --radius-sm: 4px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  /* --- Shadows --- */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-float: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* --- Transitions --- */
  --ease-elastic: cubic-bezier(0.68, -0.6, 0.32, 1.6);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-deep);
  background-image: var(--grad-mesh);
  background-attachment: fixed;
  color: var(--primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.2s var(--ease-smooth);
}

ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  color: var(--secondary);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

/* --- Layout Utilities --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Floating Glass Dock (Menu) --- */
.dock-wrapper {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
  max-width: 90%;
}

.glass-dock {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  transition: 0.4s var(--ease-smooth);
}

.dock-item {
  position: relative;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.2s var(--ease-smooth);
}

.dock-item svg {
  width: 18px;
  height: 18px;
  opacity: 0.6;
  transition: 0.2s;
}

.dock-item:hover {
  color: var(--neon-blue);
  background: rgba(37, 99, 235, 0.05);
  transform: translateY(-1px);
}

.dock-item:hover svg {
  opacity: 1;
  stroke: var(--neon-blue);
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  width: max-content;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--primary);
}

.mobile-menu-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 80px;
}

.mobile-menu-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.mobile-menu-content {
  position: relative;
  width: 90%;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-float);
  transform: translateY(-20px);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu-popup.active .mobile-menu-content {
  transform: translateY(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.close-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--secondary);
  padding: 4px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.mobile-nav-item:hover {
  background: rgba(37, 99, 235, 0.05);
  color: var(--neon-blue);
}

.mobile-nav-item svg {
  width: 20px;
  height: 20px;
  opacity: 0.7;
}

/* Hide mobile nav on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

.dock-items-container {
  display: flex;
  width: max-content;
}

@media (max-width: 768px) {
  .dock-items-container {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

.dock-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.4rem;
  padding: 0 20px 0 12px;
  color: var(--primary);
  letter-spacing: -0.03em;
  border-right: 1px solid var(--glass-border);
  margin-right: 4px;
}

.dock-logo span {
  color: var(--neon-blue);
}

/* --- Hero: Centered Clean Layout --- */
.hero-section {
  padding-top: 160px;
  padding-bottom: 80px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-headline {
  font-family: var(--font-body);
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0f172a 0%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.25rem;
  color: var(--secondary);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Centered Search */
.search-container {
  max-width: 600px;
  margin: 0 auto 60px auto;
  position: relative;
}

.glass-input {
  width: 100%;
  background: white;
  border: 1px solid var(--glass-border);
  padding: 20px 24px;
  padding-right: 70px;
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  outline: none;
  box-shadow: var(--shadow-lg);
  transition: 0.3s;
}

.glass-input::placeholder {
  color: var(--tertiary);
}

.glass-input:focus {
  border-color: var(--neon-blue);
  box-shadow: var(--shadow-float), 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--neon-blue);
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s var(--ease-elastic);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.search-btn:hover {
  transform: translateY(-50%) scale(1.05);
  background: #1d4ed8;
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--secondary);
  margin-top: 4px;
}

/* --- Dashboard Cards (Data Layout) --- */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  /* Removed border-bottom */
}

.view-all {
  font-weight: 600;
  color: var(--neon-blue);
  font-size: 0.95rem;
}

.view-all:hover {
  text-decoration: underline;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
  margin-bottom: 80px;
}

.dash-card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: 0.3s;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.dash-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.dash-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border: 1px solid transparent;
  color: var(--secondary);
  width: max-content;
}

.dash-tag.vacancy {
  color: #0891b2;
  background: #ecfeff;
}
.dash-tag.result {
  color: #7c3aed;
  background: #f5f3ff;
}
.dash-tag.admit-card {
  color: #ea580c;
  background: #fff7ed;
}

/* New Tag */
.dash-tag-new {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--neon-blue);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 10;
}

.dash-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  line-height: 1.4;
  color: var(--primary);
  flex-grow: 1;
}

.highlight-word {
  color: var(--neon-blue);
  font-weight: 800;
}

.dash-meta {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--tertiary);
  margin-top: 16px;
  padding-top: 0; /* Removed padding */
  border-top: none; /* Removed border */
}

/* --- Post Page --- */
.post-dashboard {
  margin-top: 140px;
  margin-bottom: 80px;
}

.post-header-dash {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero-headline {
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
}

.hero-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.hero-logo span {
  color: var(--neon-blue);
}

.india-flag-text {
  background: linear-gradient(90deg, #ffc312 0%, #cccccc 50%, #2ecc71 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
}

.post-title-large {
  font-family: "Syne", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.organization-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 24px;
  margin-top: 0;
}

.raised-tags-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
  margin-top: 12px;
  justify-content: center;
}

.raised-tag {
  background: white;
  border: 1px solid var(--glass-border);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 4px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.raised-tag:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.raised-tag span {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  color: var(--tertiary);
  letter-spacing: 0.05em;
}

.raised-tag-value {
  font-size: 1.1rem;
}

.seo-content {
  position: relative;
  margin-bottom: 32px;
}

.seo-text {
  font-size: 1.05rem;
  color: var(--secondary);
  line-height: 1.7;
  max-width: 80%; /* Max 80% width */
  margin-bottom: 16px;
}

.seo-text.collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--neon-blue);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.info-card {
  background: white;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.info-card h3 {
  font-size: 0.9rem;
  color: var(--secondary);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.info-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-family: var(--font-display);
}

/* Data Tables / Grids */

.data-grid-container > .data-row {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--glass-border);
}
.data-grid-container > .data-row > .data-label {
  margin: 2px 0;
}
.data-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--glass-border);
  overflow: hidden;
  background: white;
}

.data-row {
  margin-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 12px;
}

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

.data-label {
  font-size: 0.85rem;
  color: var(--secondary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  font-weight: 600;
}

.data-content {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 500;
  line-height: 1.6;
}

/* Link Buttons */
.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

/* --- Phase 2: Refactored Inline Styles --- */

/* Data Grid Container (Tables) */
.data-grid-container {
  overflow-x: auto;
  margin-top: 12px;
  margin-bottom: 24px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
}

.header-grid {
  display: grid;
  background: var(--bg-noise);
  border-bottom: 1px solid var(--glass-border);
}

.grid-header {
  font-weight: 700;
  padding: 12px;
  color: var(--tertiary);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.row-grid {
  display: grid;
  /* Borders removed per Update 3 */
}

.grid-cell {
  padding: 12px;
  color: var(--primary);
  word-break: break-word;
}

/* Smart Grid / Sections (Leftovers) */
.smart-grid-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.smart-section {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--glass-border);
}

.smart-section:last-child {
  border-bottom: none;
}

.smart-key {
  font-size: 0.9rem;
  color: var(--tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  font-weight: 600;
}

.smart-value {
  font-size: 1rem;
  color: var(--primary);
}

/* Section Blocks (Top Level) */
.section-block {
  margin-bottom: 32px;
}

.section-block h3 {
  margin-bottom: 16px;
  font-size: 1.1rem;
  color: var(--primary);
  border-left: 4px solid var(--neon-blue);
  padding-left: 12px;
}

/* Post Header Specifics */
.post-org {
  font-size: 1rem;
  color: var(--tertiary);
  margin-top: 8px;
  font-weight: 600;
}

.post-h2-tag {
  font-size: 1rem;
  color: var(--secondary);
  margin-top: 12px;
  margin-bottom: 8px;
}

.post-last-date {
  font-weight: 600;
  color: var(--neon-blue);
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: white;
  border: 1px solid var(--glass-border);
  border-left: 4px solid var(--neon-blue);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.link-btn span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon-blue);
}

.link-btn-pdf {
  border-left-color: #ef4444; /* Red for PDF */
}

.link-btn-doc {
  border-left-color: var(--neon-blue); /* Blue for Doc/Link */
}

.link-btn-pdf:hover {
  background: rgba(225, 29, 72, 0.1) !important;
}

.link-btn-doc {
  border-left: 4px solid #3b82f6;
}
.link-btn-apply {
  border-left: 4px solid #10b981;
}

/* --- Phase 2.1: Final Cleanup (New Helper Classes) --- */

.info-list-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-tag-chip {
  background: #f1f5f9;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
}

.grid-cell-label {
  background: #f8fafc;
  font-weight: 600;
  color: var(--tertiary);
}

.data-grid-transparent {
  border: none;
  background: transparent;
}

.data-label-highlight {
  font-size: 1.1rem;
  color: var(--neon-blue);
  font-weight: 700;
}

.logo-text-link {
  text-decoration: none;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.logo-dot {
  color: var(--neon-blue);
}
.logo-dot.tertiary {
  color: var(--tertiary);
}

.section-margin-bottom {
  margin-bottom: 80px;
}

.main-padding-top {
  padding-top: 120px;
}

.sitemap-list {
  margin-top: 40px;
}

.sitemap-item {
  margin-bottom: 16px;
}

.sitemap-link {
  color: var(--primary);
  font-weight: 500;
}
.sitemap-link:hover {
  text-decoration: underline;
}

.sitemap-date {
  color: var(--tertiary);
  font-size: 0.9em;
}

.grid-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.btn-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #f1f5f9;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--secondary);
}

.btn-small:hover {
  background: #e2e8f0;
  color: var(--primary);
}

/* Footer */
.site-footer {
  background: white;
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 3 Columns */
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-brand .logo-dot {
  color: var(--neon-blue);
}

.link-group h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.link-group a {
  display: block;
  color: var(--secondary);
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.link-group a:hover {
  color: var(--neon-blue);
  transform: translateX(4px);
}

.copyright {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--glass-border);
  color: var(--tertiary);
  font-size: 0.9rem;
}

/* --- Mobile --- */
/* Mobile Header & Layout */
@media (max-width: 768px) {
  .hero-logo {
    font-size: 1.8rem;
  }

  .dock-item span {
    display: none;
  }

  .dock-item {
    padding: 10px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .data-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .data-label {
    font-size: 0.85rem;
    color: var(--secondary);
    letter-spacing: 0.05em;
  }

  .seo-text {
    max-width: 100%;
  }
}
