/* =========================================================================
   HISHAM OMARA - EPIC PERSONAL BRAND AESTHETIC
   ========================================================================= */

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

:root {
  /* High Contrast Epic Palette */
  --bg-primary: #FFFFFF;
  --bg-light: #F4F4F4;
  --bg-dark: #111111;
  --bg-darker: #000000;
  
  --text-primary: #0A0A0A;
  --text-secondary: #555555;
  --text-light: #FFFFFF;
  --text-muted: #A0A0A0;
  
  --accent-primary: #FF5A00; /* Vibrant Flame Orange */
  --accent-hover: #CC4800;
  
  --border-light: #E5E5E5;
  --border-dark: #222222;
  
  /* Typography */
  --font-display: 'Montserrat', sans-serif;
  --font-sans: 'Inter', sans-serif;
  
  /* Layout & Effects - Sharp and Brutalist/Epic */
  --max-width: 1400px;
  --shadow-sm: none;
  --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 40px rgba(0,0,0,0.2);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 0px; /* Sharp edges */
  --radius-md: 0px;
  --radius-lg: 0px;
}

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--accent-primary);
  transition: var(--transition);
}

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* Background utilities */
.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--bg-dark); color: var(--text-light); }
.bg-darker { background-color: var(--bg-darker); color: var(--text-light); }
.light-text { color: var(--text-light) !important; }

/* =========================================================================
   TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-primary);
  line-height: 1.1;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-darker h1, .bg-darker h2, .bg-darker h3, .bg-darker h4 {
  color: var(--text-light);
}

.section-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.section-title.center {
  text-align: center;
  display: block;
}

.section-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text-secondary);
  text-transform: none;
  max-width: 800px;
  margin-bottom: 4rem;
  line-height: 1.5;
}

.bg-dark .section-subtitle, .bg-darker .section-subtitle {
  color: var(--text-muted);
}

.section-header.center .section-subtitle {
  margin: 0 auto 4rem auto;
  text-align: center;
}

.content-prose p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  color: var(--text-secondary);
}

.bg-dark .content-prose p, .bg-darker .content-prose p {
  color: var(--text-muted);
}

/* =========================================================================
   COMPONENTS
   ========================================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #000;
  color: #fff;
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.bg-dark .btn-primary:hover, .bg-darker .btn-primary:hover {
  background-color: #fff;
  color: #000;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--text-primary);
  color: var(--text-primary);
}

.btn-outline:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.bg-dark .btn-outline, .bg-darker .btn-outline, .hero-section .btn-outline {
  border-color: var(--text-light);
  color: var(--text-light);
}

.bg-dark .btn-outline:hover, .bg-darker .btn-outline:hover, .hero-section .btn-outline:hover {
  background-color: var(--text-light);
  color: var(--bg-dark);
}

.btn-text {
  background: none;
  border: none;
  color: var(--accent-primary);
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-text:hover {
  color: var(--text-primary);
}
.bg-dark .btn-text:hover { color: var(--text-light); }

.full-width {
  width: 100%;
}

/* =========================================================================
   HEADER & NAVIGATION
   ========================================================================= */
#site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

#site-header.scrolled {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 6rem;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--text-light);
  text-transform: uppercase;
}

#desktop-nav {
  display: none;
}

@media (min-width: 992px) {
  #desktop-nav {
    display: flex;
    gap: 3rem;
  }
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-light);
}

.menu-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-line {
  width: 30px;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition);
}

@media (min-width: 992px) {
  .menu-btn { display: none; }
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background-color: var(--bg-darker);
  z-index: 2000;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-overlay.active { opacity: 1; visibility: visible; }

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

.close-btn {
  background: none;
  border: none;
  font-size: 3rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  flex-grow: 1;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-light);
}

.drawer-footer {
  border-top: 1px solid var(--border-dark);
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 1rem;
}

/* =========================================================================
   PAGE HEADER (Subpages)
   ========================================================================= */
.page-header {
  padding: 12rem 0 6rem 0;
  background-color: var(--bg-darker);
  text-align: left;
  border-bottom: 1px solid var(--border-dark);
}

.page-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  color: var(--text-light);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--text-muted);
  max-width: 800px;
  text-transform: none;
}

/* =========================================================================
   SECTIONS
   ========================================================================= */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section { padding: 8rem 0; }
}

@media (min-width: 992px) {
  .section { padding: 12rem 0; }
}

/* Hero Section - 100vh Immersive */
.hero-section {
  height: 100vh;
  min-height: 800px;
  background-color: var(--bg-darker);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: 120px;
}

.hero-content {
  max-width: 900px;
  position: relative;
  z-index: 10;
}

.eyebrow {
  color: var(--accent-primary);
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 1rem;
  margin-bottom: 2rem;
  display: block;
}

.hero-title {
  font-size: clamp(2.5rem, 10vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 2rem;
  max-width: 700px;
  text-transform: none;
}

.hero-description {
  display: none; /* Hide long description in epic hero */
}

.hero-tagline {
  display: none; /* Hide tagline in epic hero */
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.image-frame {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Gradient overlay to blend image into background */
.image-frame::after {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, var(--bg-darker) 0%, rgba(0,0,0,0) 50%);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .hero-image-wrapper {
    width: 100%;
    opacity: 0.4;
  }
  .image-frame::after {
    background: linear-gradient(0deg, var(--bg-darker) 0%, rgba(0,0,0,0) 100%);
  }
}

/* Social Proof Bar (Infinite Marquee) */
.social-proof-bar {
  background-color: var(--accent-primary);
  padding: 1.5rem 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.marquee-container {
  display: flex;
  width: 100vw;
  position: relative;
}
.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}
.social-proof-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 900;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-right: 1rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-33.33%); } /* Since we have 3 identical spans */
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5rem;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-wrapper {
  background-color: var(--bg-light);
  padding: 4rem;
}

.timeline-title {
  font-size: 2rem;
  margin-bottom: 3rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  border-left: 4px solid var(--bg-darker);
}

.timeline-year {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--accent-primary);
  margin-bottom: 0.5rem;
}

.timeline-role {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.timeline-company {
  font-family: var(--font-sans);
  color: var(--text-secondary);
}

/* Perspective Section */
.perspective-columns {
  column-count: 1;
  column-gap: 4rem;
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: var(--font-display);
  font-weight: 700;
}

@media (min-width: 992px) {
  .perspective-columns { column-count: 2; }
}

/* Cards Grids */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Epic Cards */
.focus-card {
  background-color: var(--bg-darker);
  color: var(--text-light);
  padding: 4rem 3rem;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-dark);
}

.bg-light .focus-card {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  border-color: var(--border-light);
}

.focus-card:hover {
  background-color: var(--accent-primary);
  color: #fff;
  border-color: var(--accent-primary);
  transform: translateY(-10px);
}

.bg-light .focus-card:hover {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  border-color: var(--text-primary);
}

.card-icon {
  margin-bottom: 2rem;
  color: var(--accent-primary);
}

.focus-card:hover .card-icon {
  color: #fff;
}

.bg-light .focus-card:hover .card-icon {
  color: var(--accent-primary);
}

.card-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  color: inherit;
}

.card-subtitle {
  display: none; /* Hide for cleaner look */
}

.card-desc {
  font-family: var(--font-sans);
  color: inherit;
  opacity: 0.8;
  margin-bottom: 2.5rem;
  flex-grow: 1;
  font-size: 1.125rem;
}

.card-link {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  margin-top: auto;
}

.card-link svg {
  transition: transform 0.3s ease;
}

.focus-card:hover .card-link svg {
  transform: translateX(10px);
}

/* INSIGHTS CARDS (Editorial Style) */
.insight-card {
  display: flex;
  flex-direction: column;
  padding: 4rem 0;
  background-color: transparent;
  border-top: 4px solid var(--accent-primary);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
  height: 100%;
}

.insight-card:hover {
  border-top-color: var(--accent-primary);
}

.bg-light .insight-card {
  border-top-color: var(--text-primary);
}

.insight-card .card-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.insight-card .card-desc {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 1.25rem;
  flex: 1;
  margin-bottom: 3rem;
}

.insight-card .card-link {
  align-self: flex-start;
  color: var(--text-primary);
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--bg-primary);
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}

@media (min-width: 992px) {
  .modal-content {
    width: 90%;
    height: 90vh;
    max-width: 1200px;
  }
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 3rem;
  color: var(--text-primary);
  cursor: pointer;
  z-index: 10;
}

.modal-body-container {
  padding: 4rem;
  height: 100%;
  overflow-y: auto;
}

.modal-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  margin-bottom: 2rem;
  max-width: 900px;
}

/* List Grid (Selected Work) */
.list-grid {
  display: flex;
  flex-direction: column;
}

.work-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 4rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  margin-bottom: -1px;
}

@media (min-width: 768px) {
  .work-item {
    grid-template-columns: 100px 1fr;
    gap: 4rem;
  }
}

.work-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-muted);
}

.work-item:hover .work-number {
  color: var(--accent-primary);
}

.work-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.work-desc {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 1.25rem;
  max-width: 800px;
}

/* Speaking Layout */
.speaking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem;
}

@media (min-width: 992px) {
  .speaking-layout { 
    grid-template-columns: 1fr 1fr; 
    align-items: start;
  }
  .speaking-content {
    position: sticky;
    top: 150px;
  }
}

.speaking-content {
  /* Removed sticky position for mobile */
}

.speaking-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 3rem 0;
  color: var(--accent-primary);
  text-transform: uppercase;
  border-left: 4px solid var(--accent-primary);
  padding-left: 2rem;
}

.topics-title {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  line-height: 1;
}

.topics-list { 
  display: flex; 
  flex-direction: column; 
  gap: 5rem; 
}

.topic-item {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
}

.topic-title { 
  font-size: clamp(1.5rem, 2.5vw, 2rem); 
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem; 
  color: var(--text-light);
}

.topic-desc { 
  font-family: var(--font-sans); 
  font-size: 1.25rem; 
  color: var(--text-muted); 
  line-height: 1.6;
}

/* =========================================================================
   MEDIA KIT (EPIC UPGRADE)
   ========================================================================= */
.media-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 4rem;
}

@media (min-width: 992px) {
  .media-layout {
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
  }
}

.commentary-label {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3rem;
  color: var(--text-primary);
}

.commentary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
}

@media (min-width: 768px) {
  .commentary-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.commentary-grid li {
  background-color: #ffffff;
  padding: 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-primary);
  color: var(--text-primary);
  display: flex;
  align-items: center;
}

.media-downloads {
  background-color: var(--bg-darker);
  padding: 4rem;
  display: flex;
  flex-direction: column;
}

.downloads-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.downloads-desc {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.downloads-actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: auto;
}

.btn.light-outline {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text-light);
}

.btn.light-outline:hover {
  background-color: var(--text-light);
  color: var(--bg-darker);
}

/* Form Styles */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .full-span { grid-column: 1 / -1; }
}

.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  border: 2px solid var(--border-light);
  background-color: var(--bg-light);
  transition: var(--transition);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--text-primary);
  background-color: var(--bg-primary);
}

/* Footer */
.site-footer {
  background-color: var(--bg-darker);
  color: var(--text-light);
  padding: 6rem 0;
  border-top: 1px solid var(--border-dark);
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 1rem;
  text-align: left;
}

@media (min-width: 768px) {
  .footer-legal { text-align: right; }
}

/* Toast */
.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: -100%;
  background-color: var(--accent-primary);
  color: #fff;
  padding: 1.5rem 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notification.show { right: 2rem; }

/* Utilities */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
