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

:root {
  --bg: #FAFAF7;
  --bg-alt: #F3F1ED;
  --text: #1a1a2e;
  --text-secondary: #5a5a6e;
  --accent: #2d6a6a;
  --accent-light: #e4eeee;
  --accent-dark: #1e4f4f;
  --white: #ffffff;
  --border: #e2e0db;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 20px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.08);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Source Serif 4', Georgia, serif;
  --transition: 0.3s ease;
  --container: 1100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, p, span, a, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

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

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

a:hover {
  color: var(--accent-dark);
}

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

/* ===== Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }

/* ===== Hero Entrance Animation ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-anim {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-anim:nth-child(1) { animation-delay: 0.15s; }
.hero-anim:nth-child(2) { animation-delay: 0.3s; }
.hero-anim:nth-child(3) { animation-delay: 0.45s; }
.hero-anim:nth-child(4) { animation-delay: 0.6s; }
.hero-anim:nth-child(5) { animation-delay: 0.75s; }

.hero-anim-photo {
  opacity: 0;
  animation: fadeInScale 1s ease forwards;
  animation-delay: 0.3s;
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 450;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

/* Active nav state */
.nav-links a.active:not(.nav-cta) {
  color: var(--accent);
}

.nav-links a.active:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.nav-cta {
  background: var(--text);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background var(--transition), transform var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  letter-spacing: 0.15em;
  font-weight: 400;
  margin-bottom: 32px;
}

.hero-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 40px;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--text);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image-frame {
  width: 380px;
  height: 380px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== About ===== */
.about {
  background: var(--white);
}

.about-content {
  max-width: 720px;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.about-content p {
  margin-bottom: 16px;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-content strong {
  color: var(--text);
  font-weight: 600;
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.about-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.about-stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 450;
}

.about-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ===== Experience (Dark Section) ===== */
.experience {
  background: #1a1a2e;
  color: rgba(255,255,255,0.85);
}

.experience .section-label {
  color: #5ed4c8;
}

.experience .section-title {
  color: #fff;
}

.experience .section-desc {
  color: rgba(255,255,255,0.55);
}

/* Filter tabs — dark */
.exp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.exp-filter {
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}

.exp-filter:hover {
  border-color: #5ed4c8;
  color: #5ed4c8;
}

.exp-filter.active {
  background: #5ed4c8;
  border-color: #5ed4c8;
  color: #1a1a2e;
  font-weight: 600;
}

.exp-domains {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-domain {
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.exp-domain:first-child {
  padding-top: 0;
}

.exp-domain:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.exp-domain.hidden {
  display: none;
}

.exp-domain-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.exp-domain-title {
  flex: 1;
}

/* USA flag on Government domain */
.usa-flag {
  width: 56px;
  height: auto;
  flex-shrink: 0;
  border-radius: 3px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform var(--transition);
  align-self: center;
}

.usa-flag:hover {
  transform: scale(1.08) rotate(-2deg);
}

.exp-domain-icon {
  width: 44px;
  height: 44px;
  color: #5ed4c8;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.exp-domain-icon svg {
  width: 100%;
  height: 100%;
}

.exp-domain-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}

.exp-domain-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
  font-style: italic;
}

.exp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 16px;
}

.exp-card {
  background: rgba(255,255,255,0.04);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.07);
  transition: background var(--transition), transform var(--transition);
}

.exp-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.exp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
}

.exp-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.exp-role {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: #fff;
}

.exp-org {
  display: block;
  font-size: 0.85rem;
  color: #5ed4c8;
  font-weight: 500;
  margin-bottom: 10px;
}

.exp-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.exp-card-compact .exp-org {
  margin-bottom: 0;
}

/* Tech industry compact layout — dark */
.exp-companies {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.exp-company {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 20px 32px 20px 0;
  position: relative;
}

.exp-company-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
  box-sizing: content-box;
}

.exp-company:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.12);
}

.exp-company:not(:last-child) {
  margin-right: 32px;
}

.exp-company-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.exp-company-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* ===== Speaking & Media ===== */
.speaking {
  background: var(--white);
}

/* Media previews */
.media-previews {
  margin-bottom: 64px;
}

.media-previews-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.media-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.media-preview-card {
  display: flex;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  color: inherit;
}

.media-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  color: inherit;
}

.media-preview-thumb {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.media-preview-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(0,0,0,0.12) 100%);
  pointer-events: none;
}

.media-preview-thumb[data-source="coindesk"] {
  background: #F6B900;
}

.media-preview-thumb[data-source="aei"] {
  background: #8B1A1A;
}

.media-preview-thumb[data-source="filecoin"] {
  background: #0090FF;
}

.media-preview-thumb[data-source="atlantic"] {
  background: #002856;
}

.media-preview-brand {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 1;
}

.media-preview-thumb[data-source="coindesk"] .media-preview-brand {
  color: #1a1a2e;
}

.media-preview-body {
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.media-preview-source {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.media-preview-body h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  margin: 2px 0 auto 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.media-preview-link {
  margin-top: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
}

.media-preview-card:hover .media-preview-link {
  color: var(--accent);
}

.media-preview-link .arrow {
  transition: transform var(--transition);
  display: inline-block;
}

.media-preview-card:hover .media-preview-link .arrow {
  transform: translateX(4px);
}

.speaking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}

.speaking-block h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.speaking-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.speaking-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.speaking-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.speaking-detail {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* Redesigned media logos — editorial style */
.media-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 12px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #999;
  letter-spacing: 0.01em;
  transition: color var(--transition);
  border-bottom: 1px solid var(--border);
}

.media-logo:nth-child(odd) {
  border-right: 1px solid var(--border);
}

.media-logo:nth-last-child(-n+2) {
  border-bottom: none;
}

.media-logo:hover {
  color: var(--text);
}

.affiliations-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.affiliations-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.aff-role {
  font-weight: 600;
  font-size: 0.9rem;
}

.aff-org {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ===== Pullquote ===== */
.pullquote-section {
  background: var(--bg);
  padding: 80px 0;
}

.pullquote {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.pullquote p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  line-height: 1.6;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
}

.pullquote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ===== Awards ===== */
.awards {
  background: var(--white);
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.award {
  padding: 28px;
  background: var(--bg);
  border-radius: var(--radius);
  transition: transform var(--transition);
}

.award:hover {
  transform: translateY(-2px);
}

.award-name {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 4px;
}

.award-org {
  display: block;
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}

.award p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== Education ===== */
.education {
  background: var(--bg);
  padding: 80px 0;
}

.education .section-label {
  text-align: center;
  margin-bottom: 40px;
}

.education-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.edu-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.edu-crest {
  width: 88px;
  height: 88px;
  margin-bottom: 16px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  transition: transform var(--transition);
}

.edu-crest:hover {
  transform: scale(1.05) rotate(-3deg);
}

.edu-crest svg {
  width: 100%;
  height: 100%;
}

.edu-degree {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.edu-school {
  font-size: 0.9rem;
  color: var(--text-secondary);
  max-width: 220px;
}

.edu-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  align-self: center;
}

/* ===== Contact ===== */
.contact {
  background: var(--white);
  padding: 100px 0;
}

.contact-inner {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.contact-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  margin-bottom: 12px;
}

.contact-inner p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-link {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text-secondary);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* ===== Footer ===== */
.footer {
  padding: 24px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: center;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content {
    order: 2;
  }

  .hero-image {
    order: 1;
  }

  .hero-image-frame {
    width: 280px;
    height: 280px;
  }

  .hero-quote {
    border-left: none;
    padding-left: 0;
    border-top: 3px solid var(--accent);
    padding-top: 20px;
  }

  .hero-actions {
    justify-content: center;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .about-stat-divider {
    display: none;
  }

  .speaking-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .media-preview-grid {
    grid-template-columns: 1fr;
  }

  .awards-grid {
    grid-template-columns: 1fr;
  }

  .education-grid {
    flex-direction: column;
    gap: 40px;
  }

  .edu-divider {
    width: 60px;
    height: 1px;
  }

  .usa-flag {
    width: 48px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    box-shadow: -4px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-image-frame {
    width: 220px;
    height: 220px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .exp-cards {
    grid-template-columns: 1fr;
  }

  .media-preview-card {
    flex-direction: column;
  }

  .media-preview-thumb {
    width: 100%;
    height: 100px;
  }

  .exp-companies {
    flex-direction: column;
  }

  .exp-company:not(:last-child)::after {
    display: none;
  }

  .exp-company:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 16px;
  }

  .exp-filters {
    gap: 6px;
  }

  .exp-filter {
    padding: 6px 14px;
    font-size: 0.8rem;
  }

  .about-stats {
    gap: 20px;
  }

  .btn {
    padding: 12px 24px;
  }

  .media-logos {
    grid-template-columns: 1fr 1fr;
  }

  .pullquote-section {
    padding: 60px 0;
  }

  .container,
  .hero-inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .exp-card {
    padding: 20px;
  }

  .award {
    padding: 22px;
  }

  .exp-domain-header {
    gap: 12px;
  }

  .exp-domain-header h3 {
    font-size: 1.15rem;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.1rem;
  }

  .container,
  .hero-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .exp-filter {
    padding: 6px 12px;
    font-size: 0.75rem;
  }
}
