:root {
  --bg: #120F0F;
  --bg-hero: #150F0F;
  --primary: #FFCE1B;
  --secondary: #FB1650;
  --card-bg: rgba(52, 32, 31, 0.40);
  --border: rgba(255, 255, 255, 0.10);
  --border-mid: rgba(255, 255, 255, 0.20);
  --border-half: rgba(255, 255, 255, 0.50);
  --text-white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.60);
  --text-dimmer: rgba(255, 255, 255, 0.40);
  --text-nav: rgba(255, 255, 255, 0.70);
  --font-head: 'Sora', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --font-body: 'DM Sans', sans-serif;
  --max-w: 1376px;
  --px: 64px;
  --radius-card: 12px;
}

/* ─────────────────────────────────────────────────────────────
   PHILOSOPHY2.CSS — Kompact AI Talks Event Landing Page
   Page-scoped navbar overrides, timeline alignment, and mobile containment
───────────────────────────────────────────────────────────── */

/* ==========================================
   0. MOBILE OVERFLOW & CONTAINER RESET
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box !important;
}

html, body {
  width: 100% !important;
  max-width: 100% !important;
  overflow-x: hidden !important;
  margin: 0;
  padding: 0;
}

img, svg, video, iframe {
  max-width: 100% !important;
  height: auto;
}

/* Navbar styling is unified sitewide via navbar-unified.css */

/* ==========================================
   2. TOKENS & DESIGN SYSTEM
   ========================================== */
:root {
  --bg: #120F0F;
  --bg-elevated: #16100f;
  --accent-warm: #c2452b;
  --border: rgba(255, 255, 255, 0.12);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --text-primary: #f5f5f5;
  --text-secondary: #9a9aa5;
  --accent-yellow: #FFCE1B;
  --font-sora: "Sora", sans-serif;
  --font-mono: "JetBrains Mono", "Space Mono", monospace;
  --font-sans: "DM Sans", "Inter", -apple-system, sans-serif;
  --font-btn: "JetBrains Mono", "DM Sans", monospace, sans-serif;
  --container-max: 1376px;
  --gutter: clamp(24px, 4vw, 48px);
  --radius: 8px;
}

/* ==========================================
   3. GLOBAL LAYOUTS & CONTAINERS
   ========================================== */
/* Desktop default pass-through for phil2-mobile-page-wrapper */
@media (min-width: 768px) {
  .phil2-mobile-page-wrapper {
    display: contents !important;
  }
}

.phil2-highlight-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 550px;
  max-width: 65%;
  height: auto;
  opacity: 0.70 !important;
  filter: brightness(1.25) contrast(1.1) !important;
  pointer-events: none;
  z-index: 1;
}

.phil2-protocol-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  max-width: 90%;
  height: auto;
  opacity: 0.95 !important;
  filter: brightness(1.4) contrast(1.15) !important;
  pointer-events: none;
  z-index: 1;
}

.phil2-section {
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.phil2-container {
  max-width: var(--container-max);
  width: min(100%, var(--container-max));
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

.phil2-text-accent {
  color: var(--accent-yellow);
}

.phil2-section-title {
  font-family: var(--font-sora);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 300;
  text-align: center;
  margin-bottom: clamp(32px, 5vw, 60px);
  color: var(--text-primary);
  letter-spacing: -0.5px;
  word-break: break-word;
}

/* Reveal animations */
.reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================
   4. HERO SECTION
   ========================================== */
.phil2-hero-section {
  position: relative;
  background: linear-gradient(180deg, rgba(18, 15, 15, 0.05) 0%, rgba(18, 15, 15, 0.28) 50%, rgba(18, 15, 15, 0.90) 100%), url('../../public/assets/philosophy2/main.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  min-height: clamp(600px, 88vh, 960px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(140px, 16vw, 240px);
  padding-bottom: clamp(24px, 3.5vw, 48px);
  margin-top: 80px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.phil2-hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: flex-end;
  width: 100%;
  box-sizing: border-box;
}

.phil2-hero-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}

.phil2-event-badge {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1.1vw, 11px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: clamp(16px, 2.5vw, 24px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent !important;
  letter-spacing: 1px;
  max-width: 100%;
  box-sizing: border-box;
}

.phil2-dot-red {
  display: inline-block;
  width: 6px;
  height: 6px;
  min-width: 6px;
  background-color: var(--accent-warm);
  border-radius: 50%;
}

.phil2-hero-title {
  font-family: var(--font-sora);
  font-size: clamp(28px, 5.5vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
  word-break: break-word;
  max-width: 100%;
}

.phil2-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: clamp(0px, 2vw, 20px);
  max-width: 100%;
}

.phil2-hero-desc {
  font-family: var(--font-sans);
  font-size: clamp(14px, 1.3vw, 16px);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: clamp(24px, 3vw, 32px);
  max-width: 520px;
  word-break: break-word;
}

.phil2-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.phil2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 clamp(16px, 2.5vw, 28px);
  font-family: var(--font-btn);
  font-size: clamp(11px, 1.1vw, 12px);
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  max-width: 100%;
  box-sizing: border-box;
}

.phil2-btn-primary {
  background-color: var(--accent-yellow);
  color: #000000;
}

.phil2-btn-primary:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 206, 27, 0.3);
}

.phil2-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.phil2-btn-secondary:hover {
  border-color: var(--accent-yellow);
  background: rgba(255, 206, 27, 0.1);
  transform: translateY(-2px);
}

/* ==========================================
   5. THE SYNTHESIS
   ========================================== */
.phil2-synthesis-card {
  background: transparent;
  border: none;
  padding: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.phil2-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  box-sizing: border-box;
}

.phil2-card {
  background: transparent;
  border: none;
  padding: 0 clamp(16px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
  box-sizing: border-box;
}

.phil2-card:not(:last-child) {
  border-right: 1px solid var(--border);
}

.phil2-card:first-child {
  padding-left: 0;
}

.phil2-card:last-child {
  padding-right: 0;
}

.phil2-card:hover {
  transform: translateY(-4px);
}

.phil2-card-icon-wrap {
  color: var(--accent-yellow);
  margin-bottom: clamp(20px, 3vw, 30px);
  display: flex;
  align-items: center;
}

.phil2-card-title {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.8vw, 20px);
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text-primary);
  word-break: break-word;
}

.phil2-card-text {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 32px;
  flex-grow: 1;
  word-break: break-word;
}

.phil2-card-label {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 11px);
  color: #FF3B30;
  letter-spacing: 1px;
  margin-top: auto;
}

/* ==========================================
   6. SESSION HIGHLIGHT
   ========================================== */
.phil2-event-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  width: 100%;
  box-sizing: border-box;
  background: rgba(22, 16, 15, 0.75) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px;
  padding: clamp(24px, 3.5vw, 44px);
}

.phil2-event-card-left {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0 clamp(20px, 3vw, 40px) 0 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.phil2-event-card-right {
  background: transparent;
  border: none;
  padding: 0 0 0 clamp(10px, 1.5vw, 20px);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 100%;
}

.phil2-event-card-badge {
  font-family: var(--font-mono);
  font-size: clamp(10px, 1vw, 11px);
  color: var(--text-primary);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: clamp(20px, 3vw, 28px);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
  background: rgba(22, 16, 15, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  word-break: break-word;
}

.phil2-event-header-title {
  font-family: var(--font-sora);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 300;
  margin-bottom: clamp(24px, 3.5vw, 36px);
  color: var(--text-primary);
  line-height: 1.25;
  word-break: break-word;
}

.phil2-speaker-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: clamp(20px, 2.5vw, 32px);
  padding-top: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 16px;
  width: 100%;
  box-sizing: border-box;
}

.phil2-speaker-avatar {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background-color: #221a1a;
  border: 1px solid var(--border);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.phil2-speaker-info {
  display: flex;
  flex-direction: column;
}

.phil2-speaker-name {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: 4px;
  word-break: break-word;
}

.phil2-speaker-title {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-secondary);
  word-break: break-word;
}

.phil2-speaker-bio {
  margin-bottom: 24px;
  width: 100%;
  box-sizing: border-box;
}

.phil2-bio-lead {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
  word-break: break-word;
  text-align: left;
}

.phil2-dot-bullet {
  color: var(--text-secondary);
  margin-right: 8px;
}

.phil2-speaker-achievements {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  margin-bottom: 8px;
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}

.phil2-achievement {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  text-align: left;
}

.phil2-dot-bullet-red {
  color: #FF3B30;
  margin-right: 8px;
  font-size: 14px;
}

.phil2-biography-footer {
  border-top: 1px solid var(--border);
  border-bottom: none;
  height: 54px;
  padding: 0 16px;
  margin-top: auto;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.phil2-speaker-link {
  font-family: var(--font-btn);
  font-size: 11px;
  color: var(--accent-yellow);
  text-decoration: none;
  letter-spacing: 1px;
  font-weight: 500;
  transition: opacity 0.2s;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
  text-align: center;
  margin: 0 auto;
}

.phil2-speaker-link:hover {
  opacity: 0.8;
}

/* Right card */
.phil2-event-card-right {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.phil2-logistics-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--text-primary);
  text-align: left;
  width: 100%;
}

.phil2-pin-icon {
  color: var(--accent-yellow);
}

.phil2-logistics-header h3 {
  font-family: var(--font-sora);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  text-align: left;
}

.phil2-logistics-card {
  background: #1E1717 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 30px);
  margin-bottom: 28px;
  width: 100%;
  box-sizing: border-box;
}

.phil2-logistics-grid {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  width: 100%;
  box-sizing: border-box;
}

.phil2-logistics-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.phil2-logistics-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 6px;
  text-align: left;
}

.phil2-logistics-value {
  font-family: 'JetBrains Mono', var(--font-mono, monospace);
  font-size: clamp(14px, 1.3vw, 15px);
  font-weight: 400;
  color: var(--text-primary);
  word-break: break-word;
  text-align: left;
}

.phil2-logistics-quote {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: center;
  max-width: 440px;
  align-self: center;
  word-break: break-word;
}

.phil2-logistics-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: auto;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
}

.phil2-logistics-btns .phil2-btn {
  flex: 1;
  width: 50%;
  height: 54px;
  padding: 0 16px;
  font-weight: 700;
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}



/* ==========================================
   7. SESSION STRUCTURE TIMELINE
   ========================================== */
.phil2-timeline-card {
  position: relative;
  overflow: hidden;
  background: #1B1414 !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 16px !important;
  padding: 40px !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  width: 100% !important;
  box-sizing: border-box;
}

.phil2-timeline {
  position: relative;
  z-index: 2;
  padding-left: 36px;
  width: 100%;
  box-sizing: border-box;
}

.phil2-timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  border-left: 2px dotted rgba(255, 255, 255, 0.25);
  z-index: 1;
}

.phil2-timeline-item {
  position: relative;
  margin-bottom: clamp(28px, 4vw, 40px);
  width: 100%;
  box-sizing: border-box;
}

.phil2-timeline-item:last-child {
  margin-bottom: 0;
}

.phil2-timeline-marker {
  position: absolute;
  left: -36px;
  top: 5px;
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.phil2-timeline-node {
  width: 12px;
  height: 12px;
  min-width: 12px;
  min-height: 12px;
  border-radius: 50%;
  background-color: var(--bg);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.phil2-timeline-node-active {
  border-color: var(--accent-yellow);
  background-color: var(--accent-yellow);
  box-shadow: 0 0 10px rgba(255, 206, 27, 0.6);
}

.phil2-timeline-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
}

.phil2-timeline-time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.phil2-timeline-title {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 16px);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  word-break: break-word;
}

.phil2-timeline-text {
  font-family: var(--font-sans);
  font-size: clamp(13px, 1.2vw, 14px);
  color: var(--text-secondary);
  line-height: 1.6;
  word-break: break-word;
}

/* ==========================================
   8. REQUEST INVITE FORM — Figma classes
   ========================================== */

/* Outer column wrapper */
.frame-parent {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
  font-size: 14px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  box-sizing: border-box;
}

/* Badge + heading group */
.frame-group {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* Badge pill */
.ellipse-parent {
  height: 32px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  gap: 10px;
  margin: 0 auto;
  align-self: center;
}

/* Red dot */
.frame-child {
  height: 6px;
  width: 6px;
  min-width: 6px;
  border-radius: 50%;
  background-color: #fb1650;
  flex-shrink: 0;
}

/* Badge text */
.kompact-ai-talks {
  line-height: 140%;
  text-transform: uppercase;
  flex-shrink: 0;
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  color: #fff;
}

/* Main heading */
.heading-1 {
  align-self: stretch;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 120%;
  font-weight: 300;
  font-family: 'Sora', sans-serif;
  margin: 0;
  color: #fff;
  text-align: center;
  width: 100%;
}

.request- {
  line-height: 120%;
  color: #fff;
}

.invite {
  color: #ffce1b;
  line-height: 120%;
}

/* Inner frame that holds form rows + footer */
.frame-container {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  font-size: 12px;
  color: #868484;
  width: 100%;
  box-sizing: border-box;
}

/* Input rows wrapper */
.frame-div {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  box-sizing: border-box;
}

/* Horizontal input row */
.input-variants-container-parent {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

/* Individual input column */
.input-variants-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

/* Label */
.filled-label {
  align-self: stretch;
  letter-spacing: 1px;
  line-height: 16px;
  text-transform: uppercase;
  display: block;
  color: #868484;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
}

/* Input box */
.filled-input-container {
  align-self: stretch;
  border-radius: 8px;
  background-color: rgba(52, 32, 31, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filled-input-container:focus-within {
  border-color: #ffce1b;
  box-shadow: 0 0 10px rgba(255, 206, 27, 0.15);
}

.filled-input-field {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 100%;
  min-width: 0;
}

/* Actual input element */
.filled-text {
  position: relative;
  letter-spacing: -0.25px;
  line-height: 24px;
  font-weight: 300;
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  min-width: 0;
  width: 100%;
}

.filled-text::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.interface {
  height: 24px;
  width: 24px;
  display: none;
  align-items: center;
  flex-shrink: 0;
}

/* Label + input group wrapper */
.filled-label-parent {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
}

/* Textarea box */
.filled-input-container5 {
  align-self: stretch;
  height: 110px;
  border-radius: 8px;
  background-color: rgba(52, 32, 31, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 16px;
  font-size: 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.filled-input-container5:focus-within {
  border-color: #ffce1b;
  box-shadow: 0 0 10px rgba(255, 206, 27, 0.15);
}

.filled-input-field5 {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

/* Actual textarea element */
.filled-text5 {
  flex: 1;
  letter-spacing: -0.25px;
  line-height: 24px;
  font-weight: 300;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  resize: none;
  width: 100%;
  min-width: 0;
}

.filled-text5::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.interface5 {
  height: 24px;
  width: 24px;
  display: none;
  align-items: center;
}

/* Checkbox + footer area */
.frame-parent2 {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  font-size: 16px;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  box-sizing: border-box;
}

.frame-wrapper {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.checksquare-parent {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}

.phil2-checkbox-input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background-color: rgba(52, 32, 31, 0.40);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
  margin: 0;
}

.phil2-checkbox-input:hover {
  border-color: var(--accent-yellow);
}

.phil2-checkbox-input:checked {
  border-color: var(--accent-yellow);
  background-color: var(--accent-yellow);
}

.phil2-checkbox-input:checked::after {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 3px;
  font-size: 13px;
  color: #000000;
  font-weight: bold;
}

.filled-text6 {
  letter-spacing: -0.25px;
  line-height: 24px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  cursor: pointer;
}

/* Footer row: mail info + submit button */
.frame-parent3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
  color: #868484;
  font-family: 'JetBrains Mono', monospace;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.filled-label-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.filled-label6 {
  align-self: stretch;
  line-height: 16px;
  font-weight: 600;
  font-size: 12px;
  color: #868484;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mail {
  line-height: 16px;
  font-size: 12px;
  color: #868484;
  font-family: 'JetBrains Mono', monospace;
}

.contactzirohcom {
  color: #868484;
  text-decoration: none;
  line-height: 16px;
}

.contactzirohcom:hover {
  color: #ffce1b;
}

.contactzirohcom2 {
  text-decoration: underline;
  line-height: 16px;
  color: #868484;
}

.contactzirohcom2:hover {
  color: #ffce1b;
}

/* Submit button */
.component-25 {
  height: 36px;
  border-radius: 4px;
  background-color: #ffce1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  box-sizing: border-box;
  font-size: 14px;
  color: #000;
  font-family: var(--font-btn);
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.component-25:hover {
  background-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 206, 27, 0.3);
}

.submit-request {
  font-family: var(--font-btn);
  line-height: 140%;
  text-transform: uppercase;
  font-weight: 500;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

/* No stacking on mobile — keep desktop layout for the invite form */

/* ==========================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================== */

/* Tablet Viewport (768px - 1023px) */
@media (max-width: 1023px) {
  .phil2-hero-section {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .phil2-hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
  }

  .phil2-hero-left,
  .phil2-hero-right {
    padding-left: 0;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .phil2-event-badge {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .phil2-hero-title {
    text-align: center;
    width: 100%;
  }

  .phil2-hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .phil2-btn-group {
    justify-content: center;
    align-items: center;
  }

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

  .phil2-event-card-left,
  .phil2-event-card-right {
    align-items: center;
    text-align: center;
  }

  .phil2-event-card-badge {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }

  .phil2-event-header-title {
    text-align: center;
    width: 100%;
  }

  .phil2-speaker-header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 16px;
  }

  .phil2-speaker-info {
    align-items: flex-start;
    text-align: left;
  }

  .phil2-speaker-bio {
    text-align: left;
    align-items: flex-start;
  }

  .phil2-bio-lead {
    text-align: left;
  }

  .phil2-speaker-achievements {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .phil2-biography-footer {
    width: 100%;
    margin-top: 24px;
    box-sizing: border-box;
    text-align: center;
    justify-content: center;
    display: flex;
    align-items: center;
    background: #1E1717;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    padding: 16px 20px;
    height: auto;
    min-height: 54px;
  }

  .phil2-speaker-link {
    text-align: center;
    margin: 0 auto;
  }

  .phil2-logistics-header {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
  }

  .phil2-grid-3 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .phil2-card {
    padding: 24px 0;
    border-right: none !important;
    border-bottom: 1px solid var(--border);
  }

  .phil2-card:last-child {
    border-bottom: none !important;
  }
}

/* Mobile Viewport (< 768px) — Strict Containment & Overflow Prevention */
@media (max-width: 767px) {
  /* Hide fixed page-margins sheet frame on real mobile devices */
  .page-margins {
    display: none !important;
  }

  .phil2-section {
    padding: 40px 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-hero-section {
    min-height: auto !important;
    padding-top: 100px !important;
    padding-bottom: 40px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-items: center !important;
  }

  .phil2-hero-left,
  .phil2-hero-right {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    box-sizing: border-box !important;
    align-items: center !important;
    text-align: center !important;
  }

  .phil2-event-badge {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .phil2-hero-title {
    text-align: center !important;
    width: 100% !important;
  }

  .phil2-hero-desc {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .phil2-btn-group {
    width: 100% !important;
    flex-direction: column !important;
    gap: 12px !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  .phil2-btn-group .phil2-btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    text-align: center !important;
  }

  .phil2-synthesis-card {
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-card {
    padding: 24px 0 !important;
    border-right: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-card:not(:last-child) {
    border-bottom: 1px solid var(--border) !important;
  }

  .phil2-card:first-child {
    padding-top: 0 !important;
  }

  .phil2-card:last-child {
    padding-bottom: 0 !important;
  }

  .phil2-event-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  .phil2-event-card-left,
  .phil2-event-card-right {
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    align-items: center !important;
    text-align: center !important;
  }

  .phil2-event-card-badge {
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .phil2-event-header-title {
    text-align: center !important;
    width: 100% !important;
  }

  .phil2-speaker-header {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 16px !important;
  }

  .phil2-speaker-info {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .phil2-speaker-bio {
    text-align: left !important;
    align-items: flex-start !important;
  }

  .phil2-bio-lead {
    text-align: left !important;
  }

  .phil2-speaker-achievements {
    justify-content: flex-start !important;
    align-items: flex-start !important;
    text-align: left !important;
  }

  .phil2-achievement {
    justify-content: flex-start !important;
    text-align: left !important;
  }

  .phil2-biography-footer {
    width: 100% !important;
    margin-top: 24px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 0 !important;
    box-sizing: border-box !important;
    text-align: center !important;
    justify-content: center !important;
    display: flex !important;
    align-items: center !important;
    background: #1E1717 !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    height: auto !important;
    min-height: 54px !important;
  }

  .phil2-speaker-link {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .phil2-logistics-header {
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
  }

  .phil2-logistics-card {
    padding: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  .phil2-logistics-grid {
    display: grid !important;
    grid-auto-flow: column !important;
    grid-template-rows: auto auto !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    justify-items: start !important;
  }

  .phil2-logistics-item {
    align-items: flex-start !important;
    text-align: left !important;
  }

  .phil2-logistics-quote {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .phil2-logistics-btns {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-logistics-btns .phil2-btn {
    width: 100% !important;
    height: 54px !important;
    padding: 0 16px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    justify-content: center !important;
    text-align: center !important;
    flex: none !important;
  }

  .phil2-timeline-card {
    padding: 0 !important;
    border: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-timeline {
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 28px !important;
  }

  .phil2-timeline-marker {
    left: -28px !important;
  }

  .phil2-timeline::before {
    left: 5px !important;
  }

  /* Request Invite form — keep desktop side-by-side layout on mobile */
  .frame-parent {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .frame-group {
    max-width: 100% !important;
    width: 100% !important;
  }

  .input-variants-container-parent {
    flex-direction: row !important;
    gap: 10px !important;
  }

  .input-variants-container {
    flex: 1 !important;
    min-width: 0 !important;
  }

  .filled-input-container,
  .filled-input-container5 {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .filled-text,
  .filled-text5 {
    width: 100% !important;
    min-width: 0 !important;
  }

  .frame-parent2 {
    width: 100% !important;
  }

  .frame-parent3 {
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
  }

  .component-25 {
    flex-shrink: 0 !important;
    width: auto !important;
  }
}

/* Extra small mobile (< 480px) */
@media (max-width: 480px) {
  .phil2-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .phil2-logistics-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================
   REQUEST INVITE FORM — RESPONSIVE STYLING
   ========================================== */
@media (min-width: 768px) {
  .frame-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    width: auto !important;
    max-width: 380px !important;
  }

  .ellipse-parent {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: auto !important;
    max-width: fit-content !important;
    margin: 0 0 12px 0 !important;
    align-self: flex-start !important;
    box-sizing: border-box !important;
  }

  .heading-1 {
    text-align: left !important;
    width: 100% !important;
  }
}

.filled-label-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 4px !important;
}

.phil2-system-ready {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0 !important;
  text-align: left !important;
  align-self: flex-start !important;
}

.phil2-mail-line {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  text-align: left !important;
  align-self: flex-start !important;
}

.phil2-mail-line .filled-label6 {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin: 0 !important;
}

.phil2-mail-line .mail,
.phil2-mail-line .mail a,
.phil2-mail-line .contactzirohcom,
.phil2-mail-line .contactzirohcom2 {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #ffce1b !important;
  text-decoration: none;
  margin: 0 !important;
}

@media (max-width: 767px) {
  #apply-section .frame-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  #apply-section .ellipse-parent {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto 12px auto !important;
    align-self: center !important;
  }

  #apply-section .heading-1 {
    text-align: center !important;
    width: 100% !important;
  }

  .phil2-logistics-btns {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .phil2-logistics-btns .phil2-btn {
    width: 100% !important;
    flex: none !important;
  }

  #apply-section .input-variants-container-parent {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    width: 100% !important;
  }

  #apply-section .input-variants-container {
    width: 100% !important;
    flex: none !important;
  }

  #apply-section .frame-parent3 {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: 100% !important;
  }

  #apply-section .filled-label-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
    width: 100% !important;
  }

  #apply-section .component-25 {
    display: flex !important;
    width: 100% !important;
    height: 48px !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    flex: none !important;
  }
}

/* ==========================================
   TABLET VIEWPORT ONLY (768px <= width <= 1024px)
   Matches Tablet (1).png reference 1-to-1 without affecting desktop (>1024px) or mobile (<768px)
   ========================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  /* 1. Outer Container & Continuous Border Frame (Fixes Bug 1 & 2) */
  .page-margins {
    display: none !important;
  }

  .phil2-mobile-page-wrapper {
    display: block !important;
    width: calc(100% - 48px) !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-sizing: border-box !important;
    position: relative !important;
    overflow: hidden !important;
  }

  main {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-hero-section,
  .phil2-section {
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  .phil2-container {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    box-sizing: border-box !important;
  }



  /* 3. Hero Section (Graphic contained inside border frame, centered layout) */
  .phil2-hero-section {
    min-height: 640px !important;
    padding-top: 130px !important;
    padding-bottom: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .phil2-hero-layout {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
    width: 100% !important;
    max-width: 680px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .phil2-hero-left,
  .phil2-hero-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .phil2-event-badge {
    align-self: center !important;
    margin: 0 auto 20px auto !important;
    display: inline-flex !important;
  }

  .phil2-hero-title {
    text-align: center !important;
    font-size: clamp(34px, 5vw, 44px) !important;
    line-height: 1.25 !important;
    width: 100% !important;
    margin: 0 auto 20px auto !important;
  }

  .phil2-hero-desc {
    text-align: center !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #FFFFFF !important;
    max-width: 560px !important;
    margin: 0 auto 32px auto !important;
  }

  .phil2-btn-group {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 auto !important;
  }

  .phil2-btn-group .phil2-btn {
    height: 48px !important;
    padding: 0 22px !important;
    font-size: 12px !important;
  }

  /* 4. The Synthesis 3-Card Grid */
  .phil2-grid-3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-card {
    padding: 24px 16px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: none !important;
    box-sizing: border-box !important;
  }

  .phil2-card:last-child {
    border-right: none !important;
  }

  /* 5. Subspaces in Linear Algebra & Access_Details Block */
  #session-details .phil2-event-card-badge {
    align-self: flex-start !important;
    margin: 0 0 16px 0 !important;
    display: inline-flex !important;
  }

  #session-details .phil2-event-header-title {
    text-align: left !important;
    font-size: clamp(32px, 4vw, 40px) !important;
    margin: 0 0 32px 0 !important;
  }

  .phil2-event-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 32px 28px !important;
    box-sizing: border-box !important;
    margin-bottom: 0 !important;
    background: rgba(22, 16, 15, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
  }

  .phil2-event-card-left {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 0 0 32px 0 !important;
    margin-bottom: 32px !important;
    width: 100% !important;
  }

  .phil2-event-card-right {
    padding: 0 !important;
    width: 100% !important;
  }

  .phil2-logistics-card {
    background: #1E1717 !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    padding: 24px 20px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-logistics-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 24px !important;
  }

  .phil2-logistics-quote {
    margin: 24px auto !important;
    text-align: center !important;
  }

  .phil2-logistics-btns {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
    margin-top: 28px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-logistics-btns .phil2-btn {
    flex: 1 !important;
    height: 52px !important;
    min-height: 52px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  /* 6. Session_Structure Timeline Section */
  #session-structure.phil2-section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  .phil2-timeline-card {
    padding: 32px 24px !important;
    background: #1B1414 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* 7. Request_Invite Form Section */
  #apply-section .input-variants-container-parent {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    width: 100% !important;
  }

  #apply-section .frame-parent3 {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
  }

  /* 8. Footer Section */
  

  
}

/* ==========================================
   MOBILE OUTER PAGE WRAPPER & 1-TO-1 ALIGNMENT (width <= 767px)
   ========================================== */
@media (max-width: 767px) {
  .phil2-mobile-page-wrapper {
    width: calc(100% - 32px) !important;
    margin: 0 auto !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-sizing: border-box !important;
    display: block !important;
  }

  .phil2-hero-section {
    padding-top: 100px !important;
    padding-bottom: 24px !important;
    min-height: auto !important;
  }

  .phil2-hero-layout,
  .phil2-hero-left,
  .phil2-hero-right {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  .phil2-event-badge {
    align-self: center !important;
    margin: 0 auto 16px auto !important;
    display: inline-flex !important;
  }

  .phil2-hero-title {
    text-align: center !important;
    font-size: clamp(24px, 6.5vw, 32px) !important;
    line-height: 1.25 !important;
    width: 100% !important;
    margin: 0 auto 12px auto !important;
  }

  .phil2-hero-desc {
    text-align: center !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    max-width: 100% !important;
    margin: 0 auto 24px auto !important;
    color: #FFFFFF !important;
  }

  .phil2-btn-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
  }

  .phil2-btn-group .phil2-btn {
    width: 100% !important;
    height: 52px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .phil2-section-title {
    text-align: center !important;
  }

  .phil2-event-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding: 24px 20px !important;
    background: rgba(22, 16, 15, 0.75) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 12px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-event-card-left {
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    padding: 0 0 28px 0 !important;
    width: 100% !important;
  }

  .phil2-event-card-right {
    padding: 0 !important;
    width: 100% !important;
  }

  .phil2-highlight-glow {
    top: -40px !important;
    left: -40px !important;
    width: 320px !important;
    max-width: 80vw !important;
    opacity: 0.65 !important;
  }

  .phil2-logistics-card {
    background: #1E1717 !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 12px !important;
    padding: 20px 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .phil2-timeline-card {
    padding: 24px 16px !important;
    background: #1B1414 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  .phil2-protocol-glow {
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
    width: 380px !important;
    max-width: 100% !important;
    opacity: 0.95 !important;
    filter: brightness(1.4) contrast(1.15) !important;
  }

  }

/* Footer inset padding inside wrapper */
  

  

  






/* ==========================================================================
   MIGRATED SHARED BASE & COMPONENT STYLES (Self-contained from technical-report.css)
   ========================================================================== */

/* 1. Global Reset & Body Dark Theme Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  background-color: var(--bg, #120F0F);
  color: var(--text-white, #ffffff);
  font-family: var(--font-body, 'DM Sans', sans-serif);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

/* 2. Desktop Page Margins Frame */
.page-margins {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - calc(var(--px, 64px) * 2));
  max-width: var(--max-w, 1376px);
  border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
  pointer-events: none;
  z-index: 99;
  box-sizing: border-box;
}

/* 3. Base / Desktop Navbar Component & Dropdown Hover Triggers */


/* 4. Primary CTA Button (.btn-primary & .nav-cta) */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary, #FFCE1B);
  color: #000000;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.1s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #e5b810;
}

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

/* 5. Complete Footer Component */


















































/* 6. Utility & Shared Component Badges */
.chip-dot-red {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FB1650;
  display: inline-block;
}

.desktop-tablet-cta {
  display: inline-flex;
}

.mobile-only-cta {
  display: none;
}

/* 7. Shared Responsive Media Queries from technical-report.css */
@media (max-width: 1100px) {
  

  

  

  
}

@media (max-width: 767px) {
  

  

  

  

  

  

  

  


}


/* ─────────────────────────────────────────────────────────────
   SITEWIDE STANDARD FOOTER (Verbatim Hackathon Reference)
   ───────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  z-index: 1;
  background: #140B0B;
  border-top: 0.1px solid rgba(255, 255, 255, 0.15);
}

.footer-inner {
  width: calc(100% - calc(var(--px) * 2));
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 40px 40px;
  box-sizing: border-box;
}

/* Top nav row */
.footer-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: 0.1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 48px;
}

.footer-nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.footer-nav-link {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-nav-link:hover {
  color: #ffffff !important;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0.5px solid rgba(255, 255, 255, 0.20);
  transition: border-color 0.18s, background 0.18s;
  text-decoration: none;
}

.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.60);
  background: rgba(255, 255, 255, 0.06);
}

/* Bottom row: Big K logo + addresses + ZIROHLabs */
.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-big-logo {
  flex-shrink: 0;
}

.big-k-square {
  width: 120px;
  height: 120px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace !important;
  font-size: 56px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  letter-spacing: -0.03em;
}

.footer-addresses {
  display: flex;
  gap: 60px;
  flex: 1;
  padding: 0 60px;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-city {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.80) !important;
  letter-spacing: 0.02em;
  margin: 0;
}

.footer-addr-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  line-height: 20px !important;
  margin: 0;
}

.footer-ziroh {
  flex-shrink: 0;
}

.ziroh-logo {
  height: 36px;
  width: auto;
  filter: none;
  transition: filter 0.18s;
}

.ziroh-logo:hover {
  filter: brightness(1.2);
}

/* Legal section */
.footer-legal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 0.1px solid rgba(255, 255, 255, 0.15);
}

.footer-legal-links {
  display: flex;
  gap: 32px;
}

.footer-legal-links a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-legal-links a:hover {
  color: #ffffff !important;
}

.footer-copyright {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 300 !important;
  color: rgba(255, 255, 255, 0.3) !important;
  margin: 0;
}

/* ── Tablet Footer (768px - 1024px) ── */
@media (min-width: 768px) and (max-width: 1024px) {
  .footer-bottom-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr auto !important;
    row-gap: 40px !important;
    align-items: start !important;
  }

  .footer-addresses {
    grid-column: 1 / 3 !important;
    padding: 0 !important;
  }

  .footer-address {
    margin-left: 0 !important;
    flex: 1 !important;
  }

  .footer-big-logo {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .footer-ziroh {
    grid-column: 3 !important;
    grid-row: 1 !important;
    align-self: center !important;
  }
}


/* ── Mobile Footer (<= 767px) ── */
@media (max-width: 767px) {
  .footer-inner {
    width: calc(100% - calc(var(--px, 24px) * 2)) !important;
    max-width: var(--max-w, 1376px) !important;
    margin: 0 auto !important;
    padding: 32px 20px !important;
    box-sizing: border-box !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 24px !important;
    margin-bottom: 32px !important;
    padding-bottom: 32px !important;
    width: 100% !important;
  }

  .footer-nav-links {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 16px !important;
    width: 100% !important;
    justify-content: flex-start !important;
  }

  .footer-socials {
    display: flex !important;
    align-items: center !important;
    gap: 20px !important;
  }

  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 32px !important;
    width: 100% !important;
  }

  .footer-addresses {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .footer-address:first-child {
    align-self: flex-start !important;
    text-align: left !important;
    width: auto !important;
  }

  .footer-address:last-child,
  .footer-address:nth-child(2) {
    align-self: flex-end !important;
    text-align: left !important;
    margin-left: auto !important;
    width: auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .footer-ziroh {
    order: 2 !important;
    align-self: flex-end !important;
    margin-left: auto !important;
  }

  .footer-big-logo {
    order: 3 !important;
    align-self: flex-start !important;
  }

  .footer-legal {
    display: flex !important;
    flex-direction: column-reverse !important;
    align-items: flex-start !important;
    gap: 16px !important;
    padding-top: 32px !important;
    margin-top: 32px !important;
    width: 100% !important;
  }

  .footer-legal-links {
    display: flex !important;
    gap: 32px !important;
  }
}



  /* ════════════════════════════════════════════════
     UPPER LINE REMOVAL & FOOTER LOWER LINE RESTORATION (<= 1024px)
  ════════════════════════════════════════════════ */
  /* 1. Restore Footer's own Top Border (Lower Line) */
  body .footer,
  body footer.footer,
  body footer#footer,
  body footer#footer-mobile,
  .footer,
  #footer,
  #footer-mobile {
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  }

  /* 2. Hide horizontal line dividers directly above footer */
  .line-horizontal,
  .line-horizontal:last-of-type,
  main > .line-horizontal:last-child {
    display: none !important;
    border: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  /* 3. Hide dummy/glow sections right above footer */
  .why-section[style*="min-height:0"],
  .get-started-section[style*="min-height:0"],
  .why-section:last-of-type,
  .get-started-section:last-of-type {
    border-top: none !important;
    border-bottom: none !important;
    display: none !important;
  }

  /* 4. Remove section bottom borders right above footer on mobile (Upper Line) */
  main > section:last-of-type,
  main > div:last-of-type,
  section:last-of-type,
  .models-section,
  .faq-accordion-list,
  .dev-section,
  .tribute-section,
  .community-section,
  .jobs-grid,
  .dynamic-jd-wrapper,
  .phil2-contact-section,
  .phil-status-contact,
  .related-videos,
  .event-detail-body,
  .gallery-large,
  .event-quote,
  .event-meta,
  .md-code-tablet,
  .session-header-row {
    border-bottom: none !important;
  }


/* ════════════════════════════════════════════════
   MOBILE FOOTER OVERRIDES (<= 1024px)
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  body .footer,
  body footer.footer,
  body footer#footer,
  body footer#footer-mobile,
  .footer,
  #footer,
  #footer-mobile {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    right: 0 !important;
    bottom: auto !important;
    width: 100% !important;
    margin: 32px 0 0 0 !important;
    padding: 0 !important;
    background: #1c1414 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-sizing: border-box !important;
    display: block !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    z-index: 10 !important;
  }

  
  /* Remove section bottom border right above footer on mobile to eliminate upper line */
  main > section:last-of-type,
  main > div:last-of-type,
  section:last-of-type,
  .phil2-mobile-page-wrapper > main > section:last-of-type,
  .phil-mobile-page-wrapper > main > section:last-of-type,
  .sbox-page section:last-of-type,
  .page-section:last-of-type,
  .faq-section,
  .get-started-section,
  .community-section,
  .related-videos,
  .phil2-contact-section {
    border-bottom: none !important;
  }

  body .footer .footer-inner,
  body footer#footer-mobile .footer-inner,
  .footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 32px 20px !important;
    box-sizing: border-box !important;
    border-left: none !important;
    border-right: none !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    height: auto !important;
  }

  /* Top Nav Row */
  body .footer .footer-nav-row,
  body footer#footer-mobile .footer-nav-row,
  .footer-nav-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-links,
  body footer#footer-mobile .footer-nav-links,
  .footer-nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 16px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-nav-link,
  body footer#footer-mobile .footer-nav-link,
  .footer-nav-link {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  /* Social Icons */
  body .footer .footer-socials,
  body footer#footer-mobile .footer-socials,
  .footer-socials {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 14px !important;
  }

  body .footer .social-icon,
  body footer#footer-mobile .social-icon,
  .social-icon {
    width: 32px !important;
    height: 32px !important;
    background: #ffffff !important;
    border-radius: 6px !important;
    border: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .footer .social-icon svg path,
  body .footer .social-icon svg circle,
  body footer#footer-mobile .social-icon svg path,
  body footer#footer-mobile .social-icon svg circle,
  .social-icon svg path,
  .social-icon svg circle {
    stroke: #000000 !important;
    fill: #000000 !important;
  }

  body .footer .social-icon svg path[fill="none"],
  body footer#footer-mobile .social-icon svg path[fill="none"],
  .social-icon svg path[fill="none"] {
    fill: none !important;
  }

  /* Middle Row: Addresses & Logos */
  body .footer .footer-bottom-row,
  body footer#footer-mobile .footer-bottom-row,
  .footer-bottom-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    padding-bottom: 24px !important;
    margin-bottom: 24px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Addresses: Left (Bengaluru) & Right (Palo Alto) */
  body .footer .footer-addresses,
  body footer#footer-mobile .footer-addresses,
  .footer-addresses {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    order: 1 !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-address:first-child,
  body footer#footer-mobile .footer-address:first-child,
  .footer-address:first-child {
    flex: 1 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-address:last-child,
  body .footer .footer-address:nth-child(2),
  body footer#footer-mobile .footer-address:last-child,
  body footer#footer-mobile .footer-address:nth-child(2),
  .footer-address:last-child,
  .footer-address:nth-child(2) {
    flex: 1 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
  }

  body .footer .footer-city,
  body footer#footer-mobile .footer-city,
  .footer-city {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    margin: 0 !important;
  }

  body .footer .footer-addr-text,
  body footer#footer-mobile .footer-addr-text,
  .footer-addr-text {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 11px !important;
    font-weight: 300 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    line-height: 1.5 !important;
    margin: 0 !important;
  }

  /* ZIROHLabs Logo: Below Addresses, Left Aligned */
  body .footer .footer-ziroh,
  body footer#footer-mobile .footer-ziroh,
  .footer-ziroh {
    order: 2 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    margin-bottom: 24px !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
    text-align: left !important;
  }

  body .footer .ziroh-logo,
  body footer#footer-mobile .ziroh-logo,
  .ziroh-logo {
    height: 28px !important;
    width: auto !important;
    display: block !important;
    margin-left: 0 !important;
    margin-right: auto !important;
  }

  /* Big K. Square Logo: Below ZIROHLabs Logo, Left Aligned */
  body .footer .footer-big-logo,
  body footer#footer-mobile .footer-big-logo,
  .footer-big-logo {
    order: 3 !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-right: auto !important;
    grid-column: auto !important;
    grid-row: auto !important;
    display: block !important;
  }

  body .footer .big-k-square,
  body footer#footer-mobile .big-k-square,
  .big-k-square {
    width: 72px !important;
    height: 72px !important;
    border-radius: 4px !important;
    display: block !important;
    margin-left: 0 !important;
  }

  /* Bottom Legal Section */
  body .footer .footer-legal,
  body footer#footer-mobile .footer-legal,
  .footer-legal {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    border-top: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  body .footer .footer-legal-links,
  body footer#footer-mobile .footer-legal-links,
  .footer-legal-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    gap: 24px !important;
    order: 1 !important;
    width: 100% !important;
  }

  body .footer .footer-legal-links a,
  body footer#footer-mobile .footer-legal-links a,
  .footer-legal-links a {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  body .footer .footer-copyright,
  body footer#footer-mobile .footer-copyright,
  .footer-copyright {
    font-family: 'DM Sans', sans-serif !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 !important;
    order: 2 !important;
    width: 100% !important;
    text-align: left !important;
  }
}


