.founder {
  background: linear-gradient(135deg, #080B16, #0E1425, #1a2444, #0E1425, #080B16);
  background-size: 400% 400%;
  animation: founderGradient 60s linear infinite;
}

@keyframes founderGradient {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.founder__title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #ffffff;
  text-align: center;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  position: relative;
  animation: glitch 3s ease-in-out infinite alternate;
  text-shadow: 0 0 10px rgba(60, 215, 255, 0.3);
}

@keyframes glitch {
  0%, 90%, 100% { text-shadow: 0 0 10px rgba(60, 215, 255, 0.3); transform: none; }
  92% { text-shadow: -2px 0 #ff00ff, 2px 0 #00ffff; transform: skewX(-1deg); }
  94% { text-shadow: 2px 0 #ff00ff, -2px 0 #00ffff; transform: skewX(1deg); }
  96% { text-shadow: 0 0 10px rgba(60, 215, 255, 0.5); transform: none; }
}

@keyframes militaryType {
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

.founder__subtitle {
  font-family: 'Space Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-top: 0;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--tertiary), var(--primary-container));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  overflow: hidden;
  border-right: 2px solid var(--tertiary);
  white-space: nowrap;
  width: 0;
  animation: subtitleLoop 12s steps(60) infinite, blink 0.7s step-end infinite;
}

.founder__name {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes subtitleLoop {
  0%   { width: 0; }
  15%  { width: 100%; }
  90%  { width: 100%; }
  100% { width: 0; }
}

@keyframes hideCursor {
  to { border-color: transparent; }
}

.founder__trust {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 2.5rem;
  max-width: 1100px;
}

.founder__photo {
  max-width: 500px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid rgba(60, 215, 255, 0.25);
  flex-shrink: 0;
  display: block;
  animation: founderPhotoGlow 4s ease-in-out infinite;
}

@keyframes founderPhotoGlow {
  0%, 100% { box-shadow: 0 0 12px rgba(60, 215, 255, 0.15); }
  50% { box-shadow: 0 0 24px rgba(60, 215, 255, 0.35); }
}

.founder__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.founder__eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--tertiary);
  overflow: hidden;
  border-right: 2px solid var(--tertiary);
  white-space: nowrap;
  width: 0;
  animation: militaryType 2.5s steps(48) 0.5s forwards, blink 0.7s step-end infinite;
}

.founder__statement {
  font-size: 1rem;
  color: var(--on-surface);
  line-height: 1.7;
}

.founder__history {
  font-size: 0.9rem;
  color: var(--on-surface-variant);
  line-height: 1.6;
}

.founder__proof {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 1100px;
  text-align: left;
}

.founder__proof li {
  font-size: 0.8125rem;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

.founder__proof li::before {
  content: '✓ ';
  color: var(--tertiary);
  font-size: 0.7rem;
}

.founder__cta {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: 'Space Mono', monospace;
  font-size: 0.8125rem;
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.founder__cta:hover {
  color: var(--tertiary);
}

.founder__certs {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  margin-top: 2rem;
  width: 100%;
  max-width: 1100px;
}

.founder__cert {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(60, 215, 255, 0.06);
  border: 1px solid rgba(60, 215, 255, 0.15);
  border-radius: 4px;
  font-size: 0.8125rem;
  color: var(--on-surface-variant);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
}

.founder__cert:hover {
  border-color: rgba(60, 215, 255, 0.4);
  background: rgba(60, 215, 255, 0.1);
}

.founder__cert-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Contact micro block */
.founder-micro {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1rem;
  background: rgba(60, 215, 255, 0.06);
  border: 1px solid rgba(60, 215, 255, 0.2);
  border-radius: 4px;
  max-width: 480px;
}

.founder-micro__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-micro__text {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  line-height: 1.4;
}

.founder-micro__text strong {
  color: var(--tertiary);
}

@media (min-width: 1920px) {
  .founder { padding-left: 1rem; padding-right: 1rem; }
  .founder__title { font-size: 2.5rem; margin-bottom: 0.5rem; }
  .founder__subtitle { margin-top: 0; margin-bottom: 1.5rem; }
  .founder__trust { max-width: 1400px; gap: 3.5rem; }
  .founder__photo { max-width: 600px; }
  .founder__statement { font-size: 1.3rem; line-height: 1.8; }
  .founder__eyebrow { font-size: 1rem; }
  .founder__proof { margin-top: 2.5rem; gap: 0.75rem; }
  .founder__proof li { font-size: 1.05rem; }
  .founder__certs { gap: 1rem; margin-top: 1.5rem; }
  .founder__cert { font-size: 1rem; padding: 0.75rem 1.25rem; }
  .founder__cta { font-size: 1rem; margin-top: 1rem; }
}

@media (max-width: 1366px) {
  .founder__title { margin-bottom: 2rem; }
  .founder__trust { max-width: 960px; }
  .founder__photo { max-width: 380px; }
}

@media (max-width: 1024px) {
  .founder__title { font-size: 1.25rem; }
  .founder__proof { display: none; }
  .founder__trust { flex-direction: column; align-items: center; text-align: center; max-width: 460px; gap: 1.5rem; }
  .founder__content { align-items: center; }
  .founder__certs { flex-direction: column; gap: 0.5rem; }
  .founder__cert { font-size: 0.7rem; padding: 0.4rem 0.5rem; }
  .founder__cta { align-self: center; }
  .founder__photo { width: 100%; max-width: 260px; }
  .founder-micro { max-width: 100%; }
}

@media (max-width: 480px) {
  .founder { padding: 2.5rem 1.25rem; }
  .founder__title { margin-top: 2rem; animation: pixelIn 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards; opacity: 0; }
  .founder__subtitle { white-space: normal; width: auto; overflow: visible; border-right: none; animation: none; font-size: 0.75rem; }
  .founder__photo { max-width: 200px; }
  .founder__eyebrow { display: none; }
  .founder__cta { display: none; }
  .founder__statement { font-size: 0.9rem; }
  .founder__history { font-size: 0.8125rem; }
  .founder__proof li { font-size: 0.75rem; }
  .founder__cert { font-size: 0.75rem; }
}
