:root {
  --ink: #111111;
  --muted: #666666;
  --paper: #ffffff;
  --soft: #f1f1f1;
  --header: #dedede;
  --acid: #eaff00;
  --max: 1420px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, .035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  overflow-x: hidden;
}

::selection {
  background: var(--acid);
  color: var(--ink);
}

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

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

mark {
  background: var(--acid);
  color: var(--ink);
  padding: 0 .08em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  min-height: 144px;
  padding: 30px clamp(24px, 3.6vw, 60px);
  border-top: 4px solid #a00088;
  background: rgba(222, 222, 222, .92);
  backdrop-filter: blur(14px);
}

.brand {
  display: grid;
  gap: 4px;
  min-width: 330px;
}

.brand strong {
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.05;
  font-weight: 700;
}

.brand > span:not(.socials) {
  justify-self: start;
  background: var(--acid);
  font-size: 15px;
  line-height: 1.2;
}

.socials {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 4px;
}

.linkedin {
  font-size: 25px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
}

.instagram {
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 7px;
  position: relative;
}

.instagram::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.instagram::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.main-nav {
  display: flex;
  align-items: flex-start;
  gap: clamp(28px, 3vw, 48px);
  padding-top: 12px;
}

.main-nav a {
  display: grid;
  gap: 14px;
  justify-items: center;
  min-width: 76px;
  font-size: 18px;
  white-space: nowrap;
}

.main-nav a span {
  width: 78px;
  height: 1px;
  background: var(--ink);
}

.main-nav a.active span,
.main-nav a:hover span {
  height: 6px;
}

.menu-toggle {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 550px);
  min-height: 555px;
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 42%, rgba(234, 255, 0, .28) 42% 42.5%, transparent 42.5%),
    radial-gradient(circle at 10% 80%, rgba(0, 174, 255, .13), transparent 28%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px clamp(28px, 8vw, 120px);
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(43px, 4vw, 58px);
  line-height: 1.18;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 700;
  transition: transform .24s ease, background .24s ease, color .24s ease;
}

.hero-actions a + a {
  background: var(--acid);
  color: var(--ink);
}

.hero-actions a:hover {
  transform: translateY(-3px);
}

.hero h1 span,
.hero h1 strong,
.hero h1 em {
  display: inline;
}

.hero h1 strong {
  font-weight: 500;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
}

.not-obvious {
  position: relative;
}

.not-obvious::after {
  content: "não é";
  position: absolute;
  left: 4px;
  top: 4px;
  color: #ec8e8e;
  opacity: .7;
  font-weight: 400;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 555px;
  object-fit: cover;
}

.signal-strip {
  display: flex;
  gap: 18px;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--acid);
  white-space: nowrap;
}

.signal-strip span {
  flex: 0 0 auto;
  padding: 14px 22px;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 300;
  animation: slideSignal 18s linear infinite;
}

@keyframes slideSignal {
  from { transform: translateX(0); }
  to { transform: translateX(-420px); }
}

.authority,
.formation-feature,
.library-hero,
.agents-preview {
  padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 72px);
}

.authority {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 90px);
  align-items: start;
  background: white;
}

.authority h2,
.formation-feature h2,
.library-card h1 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.authority-grid article {
  min-height: 320px;
  padding: 28px;
  background: #f4f4f4;
  transition: background .24s ease, transform .24s ease;
}

.authority-grid article:hover {
  background: var(--acid);
  transform: translateY(-6px);
}

.authority-grid span {
  display: block;
  margin-bottom: 92px;
  font-family: Georgia, serif;
  font-size: 18px;
}

.authority-grid h3 {
  margin: 0 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.authority-grid p,
.formation-list span,
.library-card p,
.agents-preview p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
  font-weight: 300;
}

.formation-feature {
  display: grid;
  grid-template-columns: minmax(280px, 520px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 80px);
  background: #111;
  color: white;
}

.formation-feature .eyebrow,
.formation-list strong {
  color: var(--acid);
}

.formation-list {
  display: grid;
  gap: 1px;
  align-self: stretch;
  background: rgba(255, 255, 255, .24);
  border: 1px solid rgba(255, 255, 255, .24);
}

.formation-list article {
  display: grid;
  gap: 8px;
  padding: 24px;
  background: #111;
}

.formation-list strong {
  font-size: 20px;
}

.formation-list span {
  color: #d9d9d9;
}

.about {
  padding: 48px clamp(28px, 4vw, 56px) 78px;
}

.about h2 {
  margin: 0 0 72px;
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: 1.12;
  font-weight: 700;
}

.about h2 mark {
  font-weight: 300;
  padding: 12px;
}

.about-text {
  max-width: 960px;
  margin-inline: auto;
}

.about-text p,
.resume-item p,
.education-list p,
.course-panel li,
.tool-panel li {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
  font-weight: 300;
}

.about-text strong,
.resume-item strong,
.education-list strong,
.course-panel strong,
.tool-panel strong {
  color: var(--ink);
  font-weight: 600;
}

.topics {
  padding: 58px clamp(28px, 4vw, 56px) 88px;
}

.topic-cloud {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 24px;
}

.topic-cloud span {
  display: inline-block;
  padding: 0 8px;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.28;
  font-weight: 300;
}

.topic-cloud .dark {
  background: var(--ink);
  color: white;
}

.topic-cloud .soft {
  background: #dedede;
}

.topic-cloud .neon {
  background: var(--acid);
}

.topic-cloud .neon-text {
  color: var(--acid);
}

.clients {
  padding-bottom: 74px;
}

.clients h2 {
  width: min(1200px, 100%);
  margin: 0 0 16px;
  padding: 18px clamp(28px, 4vw, 56px);
  background: var(--acid);
  text-align: right;
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: 1.1;
  font-weight: 300;
}

.clients h2 strong {
  font-weight: 800;
}

.clients img {
  width: min(1470px, calc(100% - 48px));
  margin: 0 auto;
  background: #000;
}

.newsletter {
  padding: 74px 24px 132px;
  background: #111;
  color: white;
}

.newsletter form {
  max-width: 864px;
  margin: 0 auto;
}

.newsletter h2 {
  margin: 0 0 28px;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.18;
  font-weight: 800;
}

.newsletter label {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  font-size: 25px;
}

.newsletter label span {
  color: var(--acid);
}

.newsletter input {
  width: 100%;
  height: 54px;
  margin-bottom: 18px;
  border: 1px solid white;
  background: transparent;
  color: white;
  font: inherit;
  padding: 0 16px;
}

.newsletter button {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: var(--acid);
  color: var(--ink);
  font: italic 22px Georgia, serif;
  cursor: pointer;
}

.site-footer {
  padding: 28px;
  text-align: center;
  background: #111;
  color: #bdbdbd;
  font-size: 13px;
}

.page-main {
  padding: 56px clamp(20px, 4vw, 44px) 0;
}

.resume {
  max-width: 760px;
  padding-bottom: 44px;
}

.resume-item {
  margin-bottom: 38px;
}

.resume-item time {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, serif;
  font-size: 13px;
}

.resume-item h1,
.resume-item h2 {
  margin: 0 0 4px;
  font-size: 24px;
  line-height: 1.36;
  font-weight: 800;
}

.resume-item h3 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 800;
}

.resume-item p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.45;
}

.education {
  display: grid;
  grid-template-columns: 367px minmax(0, 1fr);
  gap: clamp(32px, 9vw, 156px);
  align-items: start;
  padding: 46px 0 90px;
  border-top: 10px solid var(--soft);
}

.section-title {
  margin: 0;
  font-size: clamp(46px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 800;
}

.section-title mark {
  display: inline-block;
  min-width: 367px;
  padding: 54px 0 54px clamp(20px, 10vw, 158px);
  font-weight: 300;
}

.education-list {
  padding-top: 90px;
}

.education-list article {
  margin-bottom: 26px;
}

.education-list h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 800;
}

.education-list p {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.courses,
.tools {
  padding: 54px clamp(20px, 4vw, 44px) 40px;
  border-top: 10px solid var(--soft);
}

.courses h2,
.tools h2 {
  margin: 0 0 38px;
  font-size: clamp(42px, 4.8vw, 58px);
  line-height: 1.12;
  font-weight: 300;
}

.courses h2 strong,
.tools h2 strong {
  font-weight: 500;
}

.course-panel,
.tool-panel {
  max-width: 884px;
  background: #f4f4f4;
  padding: 20px;
}

.course-panel article {
  margin-bottom: 22px;
}

.course-panel h3,
.tool-panel h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.course-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 300;
}

.tool-panel {
  background: var(--acid);
  padding: 30px 14px;
}

.tool-panel article {
  margin-bottom: 26px;
}

.tool-panel ul {
  margin: 4px 0 0;
  padding-left: 22px;
}

.tool-panel li {
  margin: 4px 0;
  font-size: 15px;
  line-height: 1.25;
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    min-height: auto;
  }

  .brand {
    min-width: 0;
  }

  .menu-toggle {
    display: grid;
    gap: 7px;
    width: 44px;
    padding: 10px 4px;
    border: 0;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    height: 3px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    padding: 18px 24px 24px;
    background: var(--header);
  }

  .main-nav.open {
    display: grid;
    gap: 18px;
  }

  .main-nav a {
    justify-items: start;
  }

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

  .hero-photo {
    order: -1;
  }

  .hero-photo img {
    min-height: 420px;
  }

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

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

  .education-list {
    padding-top: 0;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 22px 18px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand > span:not(.socials) {
    font-size: 12px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .about h2 mark,
  .section-title mark {
    display: inline;
    min-width: 0;
    padding: 0 .08em;
  }

  .about-text p {
    font-size: 18px;
  }

  .topic-cloud {
    justify-content: flex-start;
  }

  .topic-cloud span {
    font-size: 35px;
  }
}

.library-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 620px);
  align-items: center;
  min-height: 748px;
  background: #f3f3f3;
  overflow: hidden;
}

.library-visual {
  position: relative;
  min-height: 522px;
  background:
    linear-gradient(135deg, rgba(126, 108, 232, .96), rgba(143, 235, 226, .84) 40%, rgba(0, 154, 212, .96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 22px);
  isolation: isolate;
}

.library-visual::before,
.library-visual::after,
.library-visual span {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .48);
}

.library-visual::before {
  inset: 14%;
  transform: rotate(4deg);
}

.library-visual::after {
  width: 42%;
  height: 42%;
  right: 10%;
  bottom: 11%;
  transform: rotate(-12deg);
}

.library-visual span:nth-child(1) {
  width: 120px;
  height: 120px;
  left: 14%;
  top: 16%;
  animation: floatLine 7s ease-in-out infinite;
}

.library-visual span:nth-child(2) {
  width: 260px;
  height: 1px;
  left: 38%;
  top: 46%;
  animation: scanLine 4s ease-in-out infinite;
}

.library-visual span:nth-child(3) {
  width: 90px;
  height: 180px;
  right: 18%;
  top: 19%;
  animation: floatLine 8s ease-in-out infinite reverse;
}

.library-card {
  position: relative;
  z-index: 1;
  margin-left: -26%;
  background: white;
  padding: clamp(38px, 5vw, 78px) clamp(28px, 4vw, 48px);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .10);
}

.library-card h2 {
  margin: 18px 0 8px;
  font-size: 17px;
  line-height: 1.38;
}

.library-card p {
  margin-top: 12px;
}

.library-card mark {
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.agents-preview {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: clamp(32px, 6vw, 88px);
  background: white;
}

.agents-preview h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.05;
}

.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.agent-grid article {
  min-height: 280px;
  padding: 24px;
  border: 1px solid var(--ink);
  background: #f6f6f6;
}

.agent-grid span {
  display: inline-block;
  margin-bottom: 70px;
  background: var(--acid);
  font-size: 13px;
  font-weight: 700;
}

.agent-grid h3 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.08;
}

.contact-page {
  background: white;
}

.contact-hero {
  position: relative;
  min-height: 940px;
  padding-bottom: 72px;
}

.contact-banner {
  width: min(784px, 68vw);
  height: 160px;
  background: var(--acid);
}

.contact-layout {
  width: min(760px, calc(100% - 40px));
  margin: -150px auto 0;
}

.contact-copy h1 {
  position: relative;
  z-index: 1;
  margin: 0 0 160px -350px;
  font-size: clamp(72px, 8vw, 92px);
  line-height: .92;
  font-weight: 800;
}

.contact-copy h2 {
  margin: 0 0 36px;
  font-size: clamp(42px, 5vw, 54px);
  line-height: 1.1;
  font-weight: 300;
}

.contact-copy h2 strong {
  font-weight: 800;
}

.contact-copy p,
.contact-copy address,
.contact-form p {
  max-width: 620px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
  font-style: normal;
  font-weight: 300;
}

.contact-copy address {
  display: grid;
  gap: 2px;
  margin: 22px 0;
}

.contact-form {
  display: grid;
  max-width: 520px;
  gap: 10px;
  margin-top: 24px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 800;
}

.contact-form label span {
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: white;
  box-shadow: -6px 6px 0 var(--acid);
  color: var(--ink);
  font: inherit;
  transition: box-shadow .2s ease, transform .2s ease;
}

.contact-form input {
  height: 48px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  box-shadow: -10px 10px 0 var(--acid);
  transform: translate(2px, -2px);
}

.contact-form button {
  min-height: 52px;
  margin-top: 14px;
  border: 3px solid var(--ink);
  background: white;
  box-shadow: -14px 14px 0 var(--acid);
  color: #303040;
  font: 800 16px "Poppins", Arial, sans-serif;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-form button:hover {
  transform: translate(-3px, 3px);
  box-shadow: -8px 8px 0 var(--acid);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatLine {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(18px) rotate(5deg); }
}

@keyframes scanLine {
  0%, 100% { transform: translateX(-28px); opacity: .4; }
  50% { transform: translateX(38px); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .authority,
  .formation-feature,
  .library-hero,
  .agents-preview {
    grid-template-columns: 1fr;
  }

  .authority-grid,
  .agent-grid {
    grid-template-columns: 1fr;
  }

  .library-card {
    margin-left: 0;
  }

  .contact-copy h1 {
    margin-left: 0;
    margin-bottom: 120px;
  }
}

@media (max-width: 620px) {
  .authority-grid article {
    min-height: 240px;
  }

  .authority-grid span,
  .agent-grid span {
    margin-bottom: 42px;
  }

  .contact-banner {
    width: 84vw;
  }

  .contact-layout {
    margin-top: -124px;
  }

  .contact-copy h1 {
    font-size: 64px;
  }
}

/* Home rebuild: premium glass navigation and stable editorial layout */
body:has(.glass-nav) {
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 255, 0, .20), transparent 24rem),
    radial-gradient(circle at 88% 18%, rgba(160, 0, 136, .12), transparent 22rem),
    linear-gradient(90deg, rgba(17, 17, 17, .035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 17, 17, .035) 1px, transparent 1px),
    #f7f7f4;
  background-size: auto, auto, 40px 40px, 40px 40px;
}

.glass-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 0;
  padding: 14px 18px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .54);
  border-top: 1px solid rgba(255, 255, 255, .68);
  border-radius: 28px;
  background: rgba(245, 245, 242, .72);
  box-shadow: 0 18px 70px rgba(17, 17, 17, .14);
  backdrop-filter: blur(22px) saturate(1.45);
  transform: translateX(-50%);
}

.glass-nav .brand {
  min-width: 260px;
  gap: 3px;
}

.glass-nav .brand strong {
  font-size: 18px;
  letter-spacing: 0;
}

.glass-nav .brand > span:not(.socials) {
  padding: 1px 4px;
  font-size: 11px;
}

.glass-nav .socials {
  display: none;
}

.glass-nav .main-nav {
  align-items: center;
  gap: 8px;
  padding: 0;
}

.glass-nav .main-nav a {
  display: inline-flex;
  min-width: auto;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}

.glass-nav .main-nav a span {
  display: none;
}

.glass-nav .main-nav a.active,
.glass-nav .main-nav a:hover {
  border-color: rgba(17, 17, 17, .10);
  background: rgba(234, 255, 0, .84);
  transform: translateY(-1px);
}

body:has(.glass-nav) main {
  padding-top: 0;
}

.experience-hero {
  min-height: auto;
  padding: 132px clamp(22px, 5vw, 72px) 72px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 480px);
  gap: clamp(24px, 4vw, 64px);
  align-items: stretch;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .38)),
    #f3f3ef;
}

.experience-hero::before {
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(234, 255, 0, .54) 58% 59%, transparent 59%),
    radial-gradient(circle at 18% 78%, rgba(0, 178, 255, .16), transparent 26rem);
}

.experience-hero .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-width: 0;
  max-width: 820px;
  padding: 0;
}

.experience-hero .eyebrow {
  padding: 6px 9px;
  background: var(--ink);
  color: var(--acid);
}

.experience-hero h1 {
  width: 100%;
  max-width: 740px;
  font-size: clamp(48px, 6vw, 86px);
  line-height: 1.04;
  letter-spacing: 0;
}

.experience-hero h1 span,
.experience-hero h1 strong,
.experience-hero h1 em {
  display: block;
}

.experience-hero h1 mark {
  padding: 0 .09em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.hero-lede {
  max-width: 640px;
  margin: 22px 0 0;
  color: #4f4f4f;
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.48;
}

.experience-hero .not-obvious::after {
  display: none;
}

.hero-actions {
  margin-top: 34px;
}

.hero-actions a {
  min-height: 48px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(17, 17, 17, .12);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 42px;
  border: 1px solid rgba(17, 17, 17, .18);
  background: rgba(17, 17, 17, .18);
}

.hero-metrics span {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(12px);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.hero-metrics strong {
  color: var(--ink);
  font-size: 18px;
}

.experience-hero .hero-photo {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  background: #080808;
  box-shadow: 0 28px 90px rgba(17, 17, 17, .26);
}

.experience-hero .hero-photo::after {
  content: "Tech, IA, produto e reputação";
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 20px;
  background: rgba(255, 255, 255, .32);
  backdrop-filter: blur(18px);
  color: white;
  font-size: 15px;
  font-weight: 800;
  text-shadow: 0 1px 18px rgba(0, 0, 0, .45);
}

.experience-hero .hero-photo img {
  height: 560px;
  min-height: 0;
  object-position: center;
  border-radius: 24px;
}

.signal-strip {
  border: 0;
  background: var(--ink);
  transform: rotate(-1deg) scaleX(1.02);
}

.authority {
  position: relative;
  padding-top: clamp(80px, 10vw, 140px);
  background: transparent;
}

.authority h2,
.formation-feature h2 {
  font-size: clamp(42px, 5.2vw, 78px);
}

.authority-grid {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 70px rgba(17, 17, 17, .12);
}

.authority-grid article {
  background: rgba(255, 255, 255, .76);
  backdrop-filter: blur(16px);
}

.about {
  width: min(1160px, calc(100% - 44px));
  margin: 0 auto clamp(70px, 8vw, 110px);
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 34px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 60px rgba(17, 17, 17, .09);
  backdrop-filter: blur(18px);
}

.about h2 {
  margin-bottom: 38px;
}

.about-text {
  margin: 0;
  max-width: 980px;
  columns: 2 360px;
  column-gap: 54px;
}

.about-text p {
  break-inside: avoid;
  margin-top: 0;
  font-size: 17px;
}

.formation-feature {
  border-block: 1px solid rgba(255, 255, 255, .12);
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 255, 0, .18), transparent 22rem),
    #101010;
}

.formation-list {
  border-radius: 24px;
  overflow: hidden;
}

.topics {
  padding-block: clamp(78px, 9vw, 130px);
}

.topic-cloud {
  max-width: 1120px;
}

.clients {
  padding: 70px 0 90px;
  background: white;
}

.clients h2 {
  width: min(1100px, calc(100% - 32px));
  border-radius: 0 28px 28px 0;
}

.clients img {
  border-radius: 28px;
  box-shadow: 0 22px 70px rgba(17, 17, 17, .15);
}

.jobs {
  padding-top: clamp(78px, 9vw, 120px);
  background: #f7f7f4;
}

.job-card {
  min-height: 410px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(17, 17, 17, .14);
  transition: transform .22s ease, box-shadow .22s ease;
}

.job-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(17, 17, 17, .20);
}

.newsletter {
  margin-top: 70px;
  background:
    linear-gradient(135deg, rgba(234, 255, 0, .12), transparent 40%),
    #101010;
}

.newsletter form {
  display: grid;
}

.newsletter input {
  border-radius: 16px;
}

.newsletter button {
  border-radius: 999px;
  transition: transform .2s ease;
}

.newsletter button:hover {
  transform: translateY(-3px);
}

@media (max-width: 1060px) {
  .glass-nav {
    align-items: center;
  }

  .glass-nav .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    gap: 6px;
    width: 42px;
    padding: 9px;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .5);
  }

  .glass-nav .menu-toggle span {
    display: block;
    height: 2px;
    background: var(--ink);
  }

  .glass-nav .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 24px;
    background: rgba(245, 245, 242, .88);
    box-shadow: 0 18px 60px rgba(17, 17, 17, .14);
    backdrop-filter: blur(22px);
  }

  .glass-nav .main-nav.open {
    display: grid;
  }

  .glass-nav .main-nav a {
    justify-content: flex-start;
    width: 100%;
  }

  .experience-hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
    gap: 28px;
  }

  .experience-hero .hero-photo {
    order: -1;
    width: min(420px, 100%);
    justify-self: center;
  }

  .experience-hero .hero-photo img {
    height: 460px;
    min-height: 0;
  }

  .authority,
  .formation-feature {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .glass-nav {
    top: 10px;
    width: calc(100% - 18px);
    padding: 12px;
    border-radius: 22px;
    justify-content: space-between;
    gap: 10px;
  }

  .glass-nav .brand {
    min-width: 0;
    width: auto;
    max-width: 245px;
  }

  .glass-nav .brand strong {
    font-size: 16px;
  }

  .glass-nav .brand > span:not(.socials) {
    max-width: 210px;
    font-size: 10px;
  }

  .glass-nav .menu-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }

  .glass-nav .menu-toggle {
    margin-left: auto;
  }

  .experience-hero {
    padding: 98px 18px 48px;
    overflow: hidden;
  }

  .experience-hero h1 {
    max-width: 100%;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.06;
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-actions a {
    width: 100%;
    justify-content: center;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .experience-hero .hero-photo {
    border-radius: 24px;
  }

  .experience-hero .hero-photo img {
    height: 430px;
    min-height: 0;
  }

  .experience-hero .hero-photo::after {
    right: 12px;
    bottom: 12px;
    left: 12px;
    min-height: 52px;
    font-size: 13px;
  }

  .about {
    width: calc(100% - 28px);
    padding: 28px 20px;
    border-radius: 24px;
  }

  .about-text {
    columns: auto;
  }

  .clients img {
    width: calc(100% - 28px);
    border-radius: 20px;
  }
}

/* Executive polish pass */
.glass-nav .menu-toggle {
  z-index: 6;
}

.menu-toggle b {
  display: none;
}

.experience-hero {
  isolation: isolate;
  overflow: hidden;
  min-height: min(860px, calc(100vh - 16px));
  padding-top: clamp(132px, 14vh, 170px);
  padding-bottom: clamp(80px, 10vh, 120px);
}

.experience-hero .hero-copy {
  z-index: 2;
}

.experience-hero .hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(17, 17, 17, .70);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.experience-hero .hero-actions {
  margin-top: 34px;
}

.experience-hero .hero-photo {
  padding: clamp(14px, 2vw, 22px);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .82)),
    #111;
  border-color: rgba(255, 255, 255, .86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    0 34px 90px rgba(17, 17, 17, .24);
}

.experience-hero .hero-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 28px;
}

.experience-hero .hero-photo::after {
  right: clamp(28px, 3vw, 44px);
  bottom: clamp(28px, 3vw, 44px);
  left: clamp(28px, 3vw, 44px);
  color: #fff;
}

.signal-strip {
  position: relative;
  z-index: 3;
  width: 112vw;
  margin: clamp(-44px, -4vw, -26px) 0 clamp(46px, 7vw, 96px) -6vw;
  padding: 15px 0;
  display: flex;
  gap: clamp(34px, 5vw, 82px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transform: rotate(-2.6deg);
  border-block: 1px solid rgba(255, 255, 255, .10);
  background:
    linear-gradient(90deg, #050505, #111 42%, #050505);
  box-shadow:
    0 24px 60px rgba(17, 17, 17, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.signal-strip span {
  flex: 0 0 auto;
  color: var(--acid);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.bento-system {
  padding-top: clamp(36px, 6vw, 72px);
}

.bento-intro {
  margin-bottom: 24px;
}

.bento-intro h2 {
  max-width: 960px;
  font-size: clamp(40px, 5vw, 78px);
  line-height: 1;
}

.bento-card {
  border-radius: 30px;
}

.education-bento {
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .78));
  color: #fff;
}

.professor-bento {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .42)),
    radial-gradient(circle at 100% 0%, rgba(234, 255, 0, .38), transparent 17rem);
}

.professor-bento::after {
  content: "Cásper Líbero";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.professor-bento h3 {
  max-width: 680px;
}

.education-bento span {
  background: var(--acid);
  color: var(--ink);
}

.education-bento h3,
.education-bento strong {
  color: #fff;
}

.education-bento small {
  color: rgba(255, 255, 255, .72);
}

.who-page {
  gap: clamp(18px, 2.4vw, 30px);
}

.who-hero {
  position: relative;
  overflow: hidden;
}

.who-hero::after {
  content: "";
  position: absolute;
  top: -12%;
  right: 7%;
  width: 10px;
  height: 130%;
  transform: rotate(24deg);
  border-radius: 999px;
  background: rgba(234, 255, 0, .72);
  box-shadow: 0 0 42px rgba(234, 255, 0, .32);
}

.who-hero > * {
  position: relative;
  z-index: 1;
}

.current-roles article {
  min-height: 300px;
}

.resume {
  align-items: stretch;
}

.resume::before {
  margin-top: 34px;
}

.timeline-section .resume-item {
  min-height: 250px;
}

.resume-item h1,
.resume-item h2 {
  margin-bottom: 8px;
}

.resume-item h3 {
  color: rgba(17, 17, 17, .74);
}

.education {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .80));
  color: #fff;
}

.education .section-title {
  position: sticky;
  top: 112px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}

.education .section-title mark {
  display: block;
  width: fit-content;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 16px;
  background: var(--acid);
  color: var(--ink);
}

.education-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.education-list article {
  min-height: 164px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .05));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.education-list h3 {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.education-list p {
  color: rgba(255, 255, 255, .72);
  font-size: 15px;
}

.courses,
.tools {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .48));
}

.tool-panel {
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .86), rgba(234, 255, 0, .62));
}

@media (max-width: 820px) {
  .experience-hero {
    min-height: 0;
    padding: 112px 18px 56px;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .experience-hero .hero-copy {
    order: 1;
  }

  .experience-hero .hero-photo {
    order: 2;
    width: min(420px, 100%);
    margin-inline: auto;
  }

  .experience-hero h1 {
    font-size: clamp(47px, 13vw, 70px);
  }

  .experience-hero .hero-lede {
    font-size: 18px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .signal-strip {
    width: 118vw;
    margin: -18px 0 42px -9vw;
    padding: 12px 0;
    justify-content: flex-start;
    gap: 34px;
    transform: rotate(-3deg);
  }

  .signal-strip span {
    font-size: 18px;
  }

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

  .education .section-title {
    position: static;
  }

  .education-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .glass-nav .menu-toggle {
    display: grid !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .glass-nav .main-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    transform: none;
  }

  .glass-nav .main-nav.open {
    display: grid;
  }
}

@media (max-width: 520px) {
  .experience-hero {
    padding-inline: 16px;
  }

  .experience-hero .eyebrow {
    max-width: 100%;
    font-size: 10px;
    white-space: normal;
  }

  .experience-hero h1 {
    max-width: 10ch;
    font-size: clamp(43px, 14vw, 58px);
  }

  .experience-hero .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .experience-hero .hero-photo {
    border-radius: 30px;
    padding: 12px;
  }

  .experience-hero .hero-photo img {
    border-radius: 22px;
  }

  .experience-hero .hero-photo::after {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .bento-intro h2,
  .who-hero h1 {
    font-size: 38px;
  }

  .current-roles article,
  .resume-item,
  .education,
  .courses,
  .tools {
    border-radius: 24px;
  }
}

/* Final override: global mobile island control */
@media (max-width: 680px) {
  body .glass-nav .brand {
    padding-right: 104px !important;
  }

  body .glass-nav .menu-toggle {
    display: inline-grid !important;
    grid-template-columns: 16px auto !important;
    gap: 8px !important;
    place-items: center !important;
    width: auto !important;
    min-width: 84px !important;
    height: 44px !important;
    padding: 0 14px !important;
    border-radius: 999px !important;
    background:
      linear-gradient(145deg, rgba(234, 255, 0, .98), rgba(255, 255, 255, .52)) !important;
  }

  body .glass-nav .menu-toggle::before {
    content: none !important;
  }

  body .glass-nav .menu-toggle span {
    display: block !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 16px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: var(--ink) !important;
  }

  body .glass-nav .menu-toggle span:first-child {
    transform: translateY(-4px) !important;
  }

  body .glass-nav .menu-toggle span:last-child {
    transform: translateY(4px) !important;
  }

  body .glass-nav .menu-toggle b {
    display: block !important;
    grid-column: 2 !important;
    color: var(--ink) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
  }
}

/* Final Who am AI overrides and geek micro-interactions */
.who-ai-media {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.who-portrait {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .82));
  box-shadow: 0 28px 80px rgba(17, 17, 17, .22), inset 0 1px 0 rgba(255, 255, 255, .16);
}

.who-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 24px;
}

.who-ai-page :is(.who-role-card, .who-system-grid article, .timeline-rail article, .education-lab-grid article, .stack-pill-grid) {
  position: relative;
  isolation: isolate;
}

@media (max-width: 620px) {
  .who-ai-page {
    padding: 108px 14px 70px !important;
  }

  .who-ai-hero,
  .who-current-grid,
  .who-operating-system,
  .who-timeline,
  .who-education-lab,
  .who-stack-lab {
    width: calc(100vw - 28px) !important;
    max-width: calc(100vw - 28px) !important;
  }

  .who-ai-hero {
    grid-template-columns: minmax(0, 1fr) !important;
    padding: 22px !important;
  }

  .who-ai-copy h1 {
    font-size: clamp(36px, 10vw, 42px) !important;
  }

  .who-ai-media,
  .who-console,
  .who-portrait,
  .who-role-card {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .who-console {
    padding: 22px !important;
    border-radius: 28px !important;
  }

  .who-console p,
  .who-role-card h2,
  .timeline-rail h3 {
    overflow-wrap: anywhere !important;
  }

  .who-current-grid {
    gap: 18px !important;
  }

  .who-role-card {
    padding: 30px 24px !important;
    border-radius: 28px !important;
  }

  .who-role-card h2 {
    margin-top: 54px !important;
    font-size: clamp(31px, 8.5vw, 42px) !important;
    line-height: 1.04 !important;
  }

  .who-role-card strong {
    font-size: 18px !important;
  }

  .who-role-card p {
    font-size: 17px !important;
    line-height: 1.48 !important;
  }
}

/* Timeline readability */
.timeline-rail time {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 22px !important;
}

.timeline-rail h3 {
  margin-top: 0 !important;
}

.timeline-rail article {
  padding-top: 32px !important;
}

/* Operating-system card alignment */
.who-system-grid article {
  display: grid !important;
  grid-template-rows: auto auto 1fr !important;
  align-content: start !important;
  justify-content: stretch !important;
  min-height: 300px !important;
  padding: 28px !important;
}

.who-system-grid span {
  margin: 0 0 18px !important;
  align-self: start !important;
}

.who-system-grid h3 {
  margin: 0 0 22px !important;
  min-height: 2.18em !important;
}

.who-system-grid p {
  align-self: start !important;
}

/* Absolute layout fix: island must not cover page heroes */
body:has(.glass-nav) .page-main,
body:has(.glass-nav) .content-index,
body:has(.glass-nav) .contact-page,
body:has(.glass-nav) .article-shell {
  padding-top: clamp(118px, 9vw, 142px) !important;
}

.content-hero {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  margin: 0 auto clamp(32px, 5vw, 54px) !important;
}

.content-hero .eyebrow {
  margin-bottom: 18px !important;
}

.content-hero h1 {
  max-width: 920px !important;
  font-size: clamp(52px, 5.4vw, 92px) !important;
  line-height: .98 !important;
  text-wrap: balance;
}

.content-hero p:not(.eyebrow) {
  max-width: 760px !important;
  margin-top: 24px !important;
}

.contact-layout {
  align-items: stretch !important;
}

.contact-copy h1 {
  font-size: clamp(56px, 6vw, 88px) !important;
  line-height: .92 !important;
}

.contact-copy h2 {
  font-size: clamp(42px, 4.8vw, 68px) !important;
  line-height: 1.06 !important;
}

.who-ai-page {
  padding-top: clamp(118px, 9vw, 142px) !important;
}

.who-ai-hero {
  min-height: auto !important;
}

.who-ai-copy h1 {
  font-size: clamp(58px, 6vw, 96px) !important;
}

@media (max-width: 820px) {
  body:has(.glass-nav) .page-main,
  body:has(.glass-nav) .content-index,
  body:has(.glass-nav) .contact-page,
  body:has(.glass-nav) .article-shell,
  .who-ai-page {
    padding-top: 96px !important;
  }

  .content-hero h1 {
    font-size: clamp(42px, 10vw, 62px) !important;
  }

  .contact-layout {
    grid-template-columns: 1fr !important;
  }

  .contact-copy h1 {
    font-size: 58px !important;
  }

  .contact-copy h2 {
    font-size: 40px !important;
  }
}

/* Cleanup pass: bento, education readability and admin polish */
.bento-grid {
  grid-auto-rows: auto !important;
  align-items: stretch !important;
}

.bento-card {
  justify-content: space-between !important;
  min-height: 300px !important;
  padding: clamp(22px, 2.4vw, 30px) !important;
}

.bento-card-large {
  grid-column: span 2 !important;
  grid-row: span 1 !important;
  min-height: 420px !important;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .76)) !important;
  color: #fff !important;
}

.bento-card-large span {
  background: var(--acid) !important;
  color: var(--ink) !important;
}

.bento-card-large h3,
.bento-card-large p {
  color: #fff !important;
}

.bento-card-large p {
  opacity: .74;
}

.bento-card h3 {
  overflow-wrap: break-word;
}

.education-bento {
  background:
    radial-gradient(circle at 100% 0%, rgba(234, 255, 0, .22), transparent 18rem),
    linear-gradient(145deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .82)) !important;
  color: #fff !important;
}

.education-bento li {
  border-color: rgba(255, 255, 255, .16) !important;
}

.education-bento strong {
  color: #fff !important;
}

.education-bento small {
  color: rgba(255, 255, 255, .72) !important;
}

.who-education-lab .education-lab-grid article,
.who-education-lab .education-feature {
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .78)) !important;
  color: #fff !important;
}

.who-education-lab .education-lab-grid h3,
.who-education-lab .education-lab-grid p {
  color: #fff !important;
}

.who-education-lab .education-lab-grid p {
  opacity: .74;
}

.admin-sidebar {
  background:
    radial-gradient(circle at 0 0, rgba(234, 255, 0, .16), transparent 18rem),
    linear-gradient(180deg, #151515, #0d0d0d) !important;
}

.admin-brand {
  gap: 4px !important;
}

.admin-tabs {
  gap: 10px !important;
}

.admin-tabs button,
.admin-tabs a,
.admin-logout {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: 100% !important;
  min-height: 48px !important;
  border-radius: 18px !important;
  padding: 0 18px !important;
  font-size: 15px !important;
  line-height: 1.1 !important;
  text-align: left !important;
}

.admin-tabs .active {
  box-shadow: 0 14px 34px rgba(234, 255, 0, .16) !important;
}

.admin-logout {
  margin-top: 14px !important;
  border: 1px solid rgba(255, 255, 255, .16) !important;
  background: rgba(255, 255, 255, .06) !important;
  color: #f2f2f2 !important;
  cursor: pointer !important;
  font: 800 15px "Poppins", Arial, sans-serif !important;
}

.admin-logout:hover {
  background: rgba(255, 255, 255, .12) !important;
}

.admin-mode {
  padding: 14px 16px !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .06) !important;
  color: rgba(255, 255, 255, .76) !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

@media (max-width: 980px) {
  .bento-card-large {
    grid-column: auto !important;
  }
}

/* Final visual fixes */
.experience-hero .hero-photo::after {
  content: none !important;
}

@media (max-width: 680px) {
  body .glass-nav {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 8px !important;
    align-items: center !important;
  }

  body .glass-nav .brand {
    grid-column: 1 !important;
    width: auto !important;
    padding: 0 0 0 12px !important;
  }

  body .glass-nav .menu-toggle {
    position: static !important;
    grid-column: 2 !important;
    justify-self: end !important;
    z-index: 50 !important;
  }
}

@media (max-width: 680px) {
  body .glass-nav .menu-toggle {
    position: fixed !important;
    top: 18px !important;
    left: min(280px, calc(100vw - 104px)) !important;
    right: auto !important;
  }
}

/* Who am AI dynamic page */
.who-ai-page {
  padding-inline: clamp(16px, 5vw, 72px);
}

.who-ai-hero,
.who-current-grid,
.who-operating-system,
.who-timeline,
.who-education-lab,
.who-stack-lab {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.who-ai-hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .58fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 6vw, 78px);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 44px;
  background:
    linear-gradient(115deg, transparent 0 68%, rgba(234, 255, 0, .82) 68% 69.2%, transparent 69.2%),
    radial-gradient(circle at 12% 100%, rgba(0, 180, 255, .16), transparent 26rem),
    linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .42));
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(24px) saturate(1.42);
}

.who-ai-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(17, 17, 17, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, .045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .55), transparent 72%);
  pointer-events: none;
}

.who-ai-copy,
.who-console {
  position: relative;
  z-index: 1;
}

.who-ai-copy h1 {
  max-width: 920px;
  margin: 18px 0 22px;
  color: var(--ink);
  font-size: clamp(56px, 7vw, 108px);
  line-height: .92;
}

.who-ai-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgba(17, 17, 17, .66);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.45;
}

.who-ai-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.who-ai-tags span,
.stack-pill-grid span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(17, 17, 17, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72), 0 10px 26px rgba(17, 17, 17, .08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(16px) saturate(1.3);
}

.who-console {
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(234, 255, 0, .22);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .80));
  box-shadow: 0 24px 70px rgba(17, 17, 17, .22), inset 0 1px 0 rgba(255, 255, 255, .14);
}

.who-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(234, 255, 0, .10), transparent);
  animation: whoScan 4.8s linear infinite;
  pointer-events: none;
}

.console-top {
  display: flex;
  gap: 7px;
  margin-bottom: 28px;
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--acid);
}

.who-console p {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .74);
  font-size: 15px;
  line-height: 1.45;
}

.who-console strong {
  display: block;
  margin-bottom: 5px;
  color: var(--acid);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.who-current-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.who-role-card {
  position: relative;
  overflow: hidden;
  min-height: 350px;
  display: grid;
  align-content: end;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 34px;
  box-shadow: var(--glass-shadow), var(--glass-inner);
}

.who-role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .42), transparent 42%);
  pointer-events: none;
}

.who-role-card > * {
  position: relative;
  z-index: 1;
}

.role-dark {
  background: linear-gradient(145deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .78));
  color: #fff;
}

.role-acid {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, .80), transparent 18rem),
    linear-gradient(145deg, rgba(234, 255, 0, .90), rgba(255, 255, 255, .44));
  color: var(--ink);
}

.who-role-card span,
.timeline-rail time,
.education-feature span {
  width: fit-content;
  margin-bottom: 68px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.role-acid span {
  background: var(--ink);
  color: var(--acid);
}

.who-role-card h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.02;
}

.who-role-card strong {
  margin-bottom: 14px;
  font-size: 18px;
}

.who-role-card p {
  max-width: 620px;
  margin: 0;
  color: inherit;
  opacity: .76;
  font-size: 16px;
  line-height: 1.5;
}

.who-section-heading {
  margin: clamp(46px, 7vw, 86px) 0 22px;
}

.who-section-heading h2 {
  max-width: 920px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(42px, 5.5vw, 84px);
  line-height: .98;
}

.who-system-grid,
.education-lab-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.who-system-grid article,
.education-lab-grid article {
  min-height: 250px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: transform .25s ease, box-shadow .25s ease;
}

.who-system-grid article:hover,
.education-lab-grid article:hover,
.timeline-rail article:hover {
  transform: translateY(-4px);
}

.who-system-grid span {
  width: fit-content;
  margin-bottom: auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
}

.who-system-grid h3,
.education-lab-grid h3,
.timeline-rail h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.08;
}

.who-system-grid p,
.education-lab-grid p,
.timeline-rail p {
  margin: 0;
  color: rgba(17, 17, 17, .62);
  font-size: 15px;
  line-height: 1.45;
}

.timeline-rail {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 28px;
}

.timeline-rail::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 6px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(var(--acid), rgba(17, 17, 17, .16));
}

.timeline-rail article {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(22px) saturate(1.35);
  transition: transform .25s ease;
}

.timeline-rail article::before {
  content: "";
  position: absolute;
  top: 31px;
  left: -31px;
  width: 12px;
  height: 12px;
  border: 3px solid #fbfbf8;
  border-radius: 999px;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(234, 255, 0, .18);
}

.timeline-rail time {
  margin-bottom: 22px;
}

.timeline-rail strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 17, 17, .78);
  font-size: 16px;
}

.education-lab-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.education-feature {
  grid-column: span 2;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .78)) !important;
  color: #fff;
}

.education-feature h3,
.education-feature p {
  color: #fff;
}

.education-feature p {
  opacity: .76;
}

.stack-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 0%, rgba(234, 255, 0, .30), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(22px) saturate(1.35);
}

.stack-pill-grid span:nth-child(3n) {
  background: var(--ink);
  color: var(--acid);
}

@keyframes whoScan {
  0% { transform: translateY(-100%); opacity: 0; }
  18%, 72% { opacity: 1; }
  100% { transform: translateY(100%); opacity: 0; }
}

@media (max-width: 980px) {
  .who-ai-hero,
  .who-current-grid {
    grid-template-columns: 1fr;
  }

  .who-system-grid,
  .education-lab-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .who-ai-page {
    width: 100%;
    padding: 104px 14px 70px !important;
    overflow: hidden;
  }

  .who-ai-hero {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 24px;
    border-radius: 28px;
  }

  .who-ai-copy,
  .who-console,
  .who-role-card,
  .who-system-grid article,
  .timeline-rail article,
  .education-lab-grid article {
    min-width: 0;
  }

  .who-ai-copy h1,
  .who-section-heading h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 46px);
    line-height: .96;
    overflow-wrap: break-word;
  }

  .who-ai-copy p:not(.eyebrow),
  .who-console p,
  .who-role-card p,
  .who-system-grid p,
  .timeline-rail p,
  .education-lab-grid p {
    font-size: 15px;
    overflow-wrap: break-word;
  }

  .who-ai-tags {
    gap: 8px;
  }

  .who-ai-tags span,
  .stack-pill-grid span {
    min-height: 36px;
    max-width: 100%;
    font-size: 12px;
    overflow-wrap: anywhere;
  }

  .who-console {
    padding: 18px;
  }

  .who-role-card h2 {
    font-size: clamp(28px, 9vw, 38px);
    overflow-wrap: break-word;
  }

  .who-role-card span,
  .timeline-rail time,
  .education-feature span {
    margin-bottom: 42px;
  }

  .who-console,
  .who-role-card,
  .who-system-grid article,
  .timeline-rail article,
  .education-lab-grid article,
  .stack-pill-grid {
    border-radius: 24px;
  }

  .who-system-grid,
  .education-lab-grid {
    grid-template-columns: 1fr;
  }

  .education-feature {
    grid-column: auto;
  }

  .who-role-card {
    min-height: 300px;
  }
}

/* Bento system */
.bento-system {
  padding: clamp(74px, 9vw, 130px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 255, 0, .20), transparent 22rem),
    radial-gradient(circle at 90% 22%, rgba(160, 0, 136, .10), transparent 24rem),
    linear-gradient(180deg, #fbfbf8, #f4f7f5);
}

.bento-intro {
  width: min(1160px, 100%);
  margin: 0 auto 28px;
}

.bento-intro .eyebrow {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
}

.bento-intro h2 {
  max-width: 900px;
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
  letter-spacing: 0;
}

.bento-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 14px;
}

.bento-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 240px;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 22px 70px rgba(17, 17, 17, .10);
  backdrop-filter: blur(24px) saturate(1.45);
  transition: transform .28s ease, box-shadow .28s ease, background .28s ease;
}

.bento-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, .38), transparent 38%);
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 32px 90px rgba(17, 17, 17, .14);
}

.bento-card > * {
  position: relative;
  z-index: 1;
}

.bento-card span {
  width: fit-content;
  margin-bottom: auto;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .90);
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.bento-card h3 {
  margin: clamp(42px, 6vw, 76px) 0 10px;
  font-size: clamp(25px, 3vw, 44px);
  line-height: 1.02;
}

.bento-card p {
  margin: 0;
  color: #575757;
  font-size: 16px;
  line-height: 1.45;
}

.bento-card a {
  width: fit-content;
  margin-top: 20px;
  padding: 11px 15px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
}

.bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 500px;
}

.bento-card-dark {
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .78));
  color: white;
}

.bento-card-dark p {
  color: #d7d7d7;
}

.bento-card-dark span {
  background: var(--acid);
  color: var(--ink);
}

.bento-card-acid {
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .92), rgba(255, 255, 255, .46));
}

.education-bento {
  grid-column: span 2;
  min-height: 360px;
}

.education-bento ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.education-bento li {
  display: grid;
  gap: 3px;
  padding-top: 11px;
  border-top: 1px solid rgba(17, 17, 17, .12);
}

.education-bento strong {
  font-size: 16px;
  line-height: 1.15;
}

.education-bento small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.25;
}

.topic-bento {
  grid-column: span 2;
  min-height: 360px !important;
  justify-content: flex-start !important;
  background:
    radial-gradient(circle at 92% 12%, rgba(234, 255, 0, .30), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .44)) !important;
}

.topic-bento div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.topic-bento mark {
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(234, 255, 0, .84);
  font-size: 14px;
  font-weight: 800;
}

.process-os {
  padding: clamp(58px, 7vw, 100px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 20%, rgba(234, 255, 0, .22), transparent 20rem),
    radial-gradient(circle at 92% 82%, rgba(160, 0, 136, .09), transparent 22rem),
    linear-gradient(180deg, #f4f7f5, #fbfbf8);
}

.process-os-shell {
  position: relative;
  overflow: hidden;
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  padding: clamp(28px, 4.5vw, 56px);
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .38));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .88), 0 30px 90px rgba(17, 17, 17, .12);
  backdrop-filter: blur(24px) saturate(1.35);
}

.process-os-shell::before {
  content: "";
  position: absolute;
  top: -18%;
  right: 10%;
  width: 36px;
  height: 140%;
  transform: rotate(18deg);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(234, 255, 0, .95), rgba(234, 255, 0, .08));
  opacity: .72;
  pointer-events: none;
}

.process-os-copy,
.process-console {
  position: relative;
  z-index: 1;
}

.process-os-copy .eyebrow {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
}

.process-os-copy h2 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: .98;
}

.process-os-copy p:last-child {
  max-width: 650px;
  margin: 0;
  color: #555;
  font-size: clamp(17px, 1.65vw, 22px);
  line-height: 1.45;
}

.process-console {
  overflow: hidden;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(234, 255, 0, .32);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .96), rgba(17, 17, 17, .82));
  color: white;
  box-shadow: 0 24px 80px rgba(17, 17, 17, .18);
}

.console-top {
  display: flex;
  gap: 8px;
  padding-bottom: 18px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.console-top span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--acid);
}

.process-console ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process-step;
}

.process-console li {
  position: relative;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  counter-increment: process-step;
}

.process-console li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.process-console li::before {
  content: "0" counter(process-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 34px;
  border-radius: 999px;
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.process-console strong {
  grid-column: 2;
  display: block;
  margin-bottom: 5px;
  color: var(--acid);
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.process-console span {
  grid-column: 2;
  display: block;
  color: #d6d6d6;
  font-size: 16px;
  line-height: 1.45;
}

.featured-home {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 88% 0%, rgba(234, 255, 0, .20), transparent 22rem),
    linear-gradient(180deg, #fbfbf8, #f4f7f5);
}

.featured-home[hidden] {
  display: none !important;
}

.featured-heading {
  width: min(1160px, 100%);
  margin: 0 auto 24px;
}

.featured-heading h2 {
  max-width: 850px;
  margin: 14px 0 0;
  font-size: clamp(38px, 5vw, 76px);
  line-height: 1;
}

.featured-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.featured-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(22px) saturate(1.35);
}

.featured-card a {
  min-height: 100%;
  display: grid;
  grid-template-rows: 190px 1fr;
}

.featured-card img,
.featured-card .generated-cover {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.featured-card > a > div:last-child {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
}

.featured-card span {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.08;
}

.featured-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.featured-toggle {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 18px;
  background: rgba(234, 255, 0, .14);
  font-weight: 800;
}

.featured-toggle input {
  width: 22px !important;
  min-height: 0 !important;
  height: 22px !important;
  padding: 0 !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  accent-color: var(--acid);
}

@media (max-width: 820px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* Clients frame refinement */
.clients-frame {
  width: min(1380px, 100%) !important;
  padding: clamp(12px, 1.6vw, 24px) !important;
  border-radius: clamp(22px, 2.2vw, 34px) !important;
  background: #050505 !important;
  overflow: hidden !important;
  box-shadow:
    0 20px 54px rgba(17, 17, 17, .14),
    inset 0 1px 0 rgba(255, 255, 255, .10) !important;
}

.clients-frame img {
  border-radius: clamp(14px, 1.5vw, 22px) !important;
  transform: translateY(-4%) !important;
  margin-bottom: -4% !important;
}

/* Home portrait sizing */
.experience-hero .hero-photo {
  width: min(430px, 100%) !important;
  justify-self: center !important;
}

.experience-hero .hero-photo img {
  height: auto !important;
  max-height: 520px !important;
}

@media (max-width: 820px) {
  .experience-hero .hero-photo {
    width: min(340px, 92%) !important;
  }
}

@media (max-width: 980px) {
  .bento-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bento-system {
    padding: 64px 14px;
  }

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

  .bento-card,
  .bento-card-large,
  .professor-bento,
  .education-bento,
  .topic-bento {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
    border-radius: 28px;
  }

  .bento-card-large {
    min-height: 380px;
  }
}

/* Who am AI hierarchy */
.who-page {
  display: grid;
  gap: 24px;
}

.who-hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(32px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 38px;
  background:
    radial-gradient(circle at 92% 12%, rgba(234, 255, 0, .28), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, .80), rgba(255, 255, 255, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.who-hero .eyebrow {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
}

.who-hero h1 {
  max-width: 980px;
  margin: 18px 0;
  font-size: clamp(44px, 6vw, 88px);
  line-height: .98;
}

.who-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.48;
}

.current-roles {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.current-roles article {
  min-height: 320px;
  display: grid;
  align-content: end;
  padding: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, .74);
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .82), rgba(255, 255, 255, .44));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.current-roles article + article {
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .94), rgba(17, 17, 17, .78));
  color: white;
}

.current-roles span {
  width: fit-content;
  margin-bottom: 74px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.current-roles article + article span {
  background: var(--acid);
  color: var(--ink);
}

.current-roles h2 {
  margin: 0 0 10px;
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.04;
}

.current-roles strong {
  margin-bottom: 12px;
  font-size: 18px;
}

.current-roles p {
  margin: 0;
  color: #4d4d4d;
  font-size: 16px;
  line-height: 1.45;
}

.current-roles article + article p {
  color: #d9d9d9;
}

.timeline-section::before {
  content: "Experiência anterior";
}

.timeline-section .resume-item:nth-of-type(1),
.timeline-section .resume-item:nth-of-type(2) {
  display: none;
}

.timeline-section .resume-item {
  min-height: 230px;
}

@media (max-width: 900px) {
  .current-roles {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .who-hero,
  .current-roles article {
    border-radius: 28px;
    padding: 24px;
  }

  .who-hero h1 {
    font-size: 42px;
  }

  .current-roles span {
    margin-bottom: 52px;
  }
}

/* Mobile nav hardening */
@media (max-width: 680px) {
  body .glass-nav {
    left: 10px !important;
    right: 10px !important;
    width: auto !important;
    transform: none !important;
    min-height: 60px !important;
    padding: 8px !important;
    overflow: visible !important;
  }

  body .glass-nav .brand {
    width: 100% !important;
    max-width: none !important;
    padding: 0 64px 0 12px !important;
  }

  body .glass-nav .brand strong {
    font-size: 19px !important;
  }

  body .glass-nav .brand > span:not(.socials) {
    display: none !important;
  }

  body .glass-nav .menu-toggle {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    z-index: 30 !important;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: var(--acid) !important;
    border: 1px solid rgba(17, 17, 17, .12) !important;
    box-shadow: 0 10px 28px rgba(17, 17, 17, .18), inset 0 1px 0 rgba(255, 255, 255, .72) !important;
  }

  body .glass-nav .menu-toggle::before {
    content: "";
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 999px;
    box-shadow: 0 6px 0 #111;
    transform: translateY(-3px);
    justify-self: center;
    align-self: center;
  }

  body .glass-nav .menu-toggle span {
    display: none !important;
  }

  body .glass-nav .main-nav {
    left: 0 !important;
    right: 0 !important;
    width: auto !important;
  }

  .experience-hero h1 {
    font-size: clamp(38px, 10vw, 52px);
  }

  .hero-lede {
    font-size: 17px;
  }

  .experience-hero .hero-photo {
    padding: 12px;
  }
}

.content-index,
.article-shell {
  min-height: 100vh;
  padding: 132px clamp(20px, 5vw, 72px) 90px;
}

.content-hero {
  max-width: 980px;
  margin-bottom: 44px;
}

.content-hero h1 {
  margin: 0;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1.02;
}

.content-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.45;
}

.content-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 14px;
  margin-bottom: 28px;
}

.library-index .content-toolbar {
  grid-template-columns: 1fr;
}

.search-shell,
.select-shell {
  position: relative;
  min-height: 58px;
}

.search-shell::before {
  content: "⌘";
  position: absolute;
  left: 18px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
  font-size: 14px;
  font-weight: 900;
}

.search-shell::after {
  content: attr(data-label);
  position: absolute;
  right: 14px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(234, 255, 0, .80);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  pointer-events: none;
}

.search-shell input,
.select-shell select {
  width: 100%;
  height: 58px;
}

.search-shell input {
  padding-left: 58px !important;
  padding-right: 104px !important;
}

.search-shell:focus-within {
  animation: searchPulse .8s ease both;
}

.search-shell:focus-within::after {
  content: "scanning";
}

.search-shell:focus-within input {
  border-color: rgba(234, 255, 0, .90) !important;
  box-shadow:
    0 0 0 4px rgba(234, 255, 0, .28),
    0 16px 46px rgba(17, 17, 17, .12) !important;
}

@keyframes searchPulse {
  0% { transform: translateY(0); }
  45% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

.content-toolbar input,
.content-toolbar select {
  min-height: 54px;
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 38px rgba(17, 17, 17, .08);
  backdrop-filter: blur(16px);
  font: 600 14px "Poppins", Arial, sans-serif;
  padding: 0 20px;
}

.library-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.library-subnav button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(17, 17, 17, .10);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .36));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76), 0 10px 28px rgba(17, 17, 17, .08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(18px) saturate(1.35);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.library-subnav button:hover {
  transform: translateY(-2px);
}

.library-subnav button.active {
  background: var(--ink);
  color: var(--acid);
  box-shadow: 0 14px 36px rgba(17, 17, 17, .18);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.content-card {
  min-height: 100%;
  border: 1px solid rgba(17, 17, 17, .12);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 60px rgba(17, 17, 17, .10);
  backdrop-filter: blur(18px);
  transition: transform .22s ease, box-shadow .22s ease;
}

.content-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 80px rgba(17, 17, 17, .16);
}

.content-card > a,
.content-card > div:last-child,
.library-card-public {
  display: grid;
  height: 100%;
}

.content-card img,
.generated-cover {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.generated-cover {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(234, 255, 0, .95), rgba(255, 255, 255, .36)),
    radial-gradient(circle at 80% 30%, rgba(160, 0, 136, .18), transparent 12rem),
    #101010;
}

.generated-cover span {
  color: #111;
  font-size: 64px;
  font-weight: 800;
}

.content-card div:not(.generated-cover):not(.tag-row):not(.rating) {
  padding: 22px;
}

.content-card time,
.type-pill {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  background: var(--ink);
  color: var(--acid);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.content-card h2 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.content-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  display: inline-flex;
  padding: 5px 9px;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 999px;
  background: rgba(234, 255, 0, .36);
  font-size: 12px;
  font-weight: 700;
}

.rating {
  color: #111;
  font-size: 18px;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.mini-link,
.back-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--acid);
  font-size: 13px;
  font-weight: 800;
}

.empty-state {
  color: var(--muted);
  font-size: 18px;
}

.article-view {
  max-width: 920px;
  margin: 0 auto;
}

.article-view header {
  margin-bottom: 34px;
}

.article-view h1 {
  margin: 18px 0;
  font-size: clamp(44px, 6vw, 84px);
  line-height: 1;
}

.article-view header p:not(.eyebrow) {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.article-cover {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 30px;
  margin: 34px 0;
}

.rich-body {
  color: #202020;
  font-size: 20px;
  line-height: 1.72;
}

.rich-body h2,
.rich-body h3 {
  line-height: 1.14;
}

.rich-body img,
.rich-body video,
.editor-canvas img,
.editor-canvas video {
  max-width: 100%;
  border-radius: 20px;
  margin: 18px 0;
}

.admin-body {
  background: #101010;
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(234, 255, 0, .16), transparent 38%),
    #111;
  color: white;
}

.admin-brand {
  display: grid;
  gap: 2px;
  margin-bottom: 44px;
}

.admin-brand strong {
  font-size: 22px;
}

.admin-brand span,
.admin-mode {
  color: var(--acid);
  font-size: 12px;
  font-weight: 700;
}

.admin-tabs {
  display: grid;
  gap: 10px;
}

.admin-tabs button,
.admin-tabs a,
.admin-actions button,
.admin-login button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: inherit;
  font: 800 13px "Poppins", Arial, sans-serif;
  cursor: pointer;
  padding: 0 16px;
  text-align: left;
}

.admin-tabs .active,
.admin-actions button:last-child,
.admin-login button {
  background: var(--acid);
  color: #111;
}

.admin-mode {
  margin-top: 34px;
  color: #cfcfcf;
  line-height: 1.45;
}

.admin-workspace {
  padding: clamp(24px, 4vw, 54px);
  background: #f5f5f2;
}

.admin-login {
  max-width: 580px;
  display: grid;
  gap: 16px;
  margin: 8vh auto;
  padding: 34px;
  border-radius: 30px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .18);
}

.admin-login h1,
.admin-header h1 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.02;
}

.admin-login p:not(.eyebrow) {
  color: var(--muted);
}

.admin-login label,
.editor-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
}

.admin-login input,
.editor-form input,
.editor-form textarea,
.editor-form select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, .16);
  border-radius: 14px;
  background: white;
  font: 500 14px "Poppins", Arial, sans-serif;
  padding: 10px 12px;
}

.is-hidden {
  display: none !important;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-actions button {
  color: #111;
  border-color: rgba(17, 17, 17, .16);
  background: white;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.editor-form,
.entry-list {
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 60px rgba(17, 17, 17, .10);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.is-muted {
  opacity: .45;
}

.rich-editor {
  border: 1px solid rgba(17, 17, 17, .16);
  border-radius: 20px;
  overflow: hidden;
  background: white;
}

.editor-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid rgba(17, 17, 17, .12);
  background: #f0f0ed;
}

.editor-toolbar button,
.toolbar-upload {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 999px;
  background: white;
  font: 800 12px "Poppins", Arial, sans-serif;
  cursor: pointer;
}

.toolbar-upload input {
  display: none;
}

.editor-canvas {
  min-height: 420px;
  padding: 22px;
  color: #202020;
  font-size: 18px;
  line-height: 1.65;
  outline: 0;
}

.entry-list {
  position: sticky;
  top: 24px;
}

.entry-list h2 {
  margin: 0;
  font-size: 22px;
}

.admin-entry {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid rgba(17, 17, 17, .10);
}

.admin-entry button {
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.admin-entry strong,
.admin-entry span {
  display: block;
}

.admin-entry span {
  color: var(--muted);
  font-size: 12px;
}

.admin-entry .danger {
  color: #9d1b1b;
  font-weight: 800;
}

@media (max-width: 980px) {
  .content-grid,
  .admin-grid,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    height: auto;
  }

  .entry-list {
    position: static;
  }
}

@media (max-width: 680px) {
  .content-index,
  .article-shell {
    padding: 108px 18px 64px;
  }

  .content-toolbar,
  .field-row {
    grid-template-columns: 1fr;
  }

  .content-hero h1,
  .article-view h1 {
    font-size: 42px;
  }

  .admin-workspace {
    padding: 18px;
  }

  .admin-header {
    display: grid;
  }
}

/* Liquid glass direction */
:root {
  --glass-fill: rgba(255, 255, 255, .58);
  --glass-fill-strong: rgba(255, 255, 255, .74);
  --glass-stroke: rgba(255, 255, 255, .72);
  --glass-shadow: 0 24px 80px rgba(17, 17, 17, .16);
  --glass-inner: inset 0 1px 0 rgba(255, 255, 255, .82), inset 0 -1px 0 rgba(17, 17, 17, .06);
}

body:has(.glass-nav) {
  background:
    linear-gradient(135deg, rgba(234, 255, 0, .16), transparent 24%),
    linear-gradient(225deg, rgba(160, 0, 136, .12), transparent 28%),
    linear-gradient(180deg, #fbfbf8 0%, #f0f5f2 48%, #fbfbf8 100%);
}

.glass-nav {
  top: 18px;
  width: min(1120px, calc(100% - 28px));
  padding: 10px;
  border: 1px solid var(--glass-stroke);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .42)),
    rgba(245, 245, 242, .58);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(30px) saturate(1.75);
  -webkit-backdrop-filter: blur(30px) saturate(1.75);
}

.glass-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .82), transparent 34%),
    linear-gradient(280deg, rgba(234, 255, 0, .22), transparent 42%);
  pointer-events: none;
}

.glass-nav .brand {
  min-width: 270px;
  padding: 6px 14px 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .36);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .65);
}

.glass-nav .brand strong {
  font-size: 17px;
}

.glass-nav .brand > span:not(.socials) {
  border-radius: 999px;
  padding: 1px 6px;
}

.glass-nav .main-nav {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .56);
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.glass-nav .main-nav a {
  min-height: 40px;
  border-radius: 999px;
  color: rgba(17, 17, 17, .82);
}

.glass-nav .main-nav a.active,
.glass-nav .main-nav a:hover {
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .98), rgba(234, 255, 0, .70));
  box-shadow:
    0 10px 26px rgba(17, 17, 17, .14),
    inset 0 1px 0 rgba(255, 255, 255, .68);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .60);
  border-radius: 999px;
  background: rgba(255, 255, 255, .30);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.language-switcher button {
  min-width: 34px;
  height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(17, 17, 17, .62);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.language-switcher button.active,
.language-switcher button:hover {
  background: var(--ink);
  color: var(--acid);
  transform: translateY(-1px);
}

.main-nav .language-switcher {
  margin-left: 6px;
}

.experience-hero {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, .70), rgba(255, 255, 255, .36)),
    linear-gradient(180deg, #fbfbf8, #eef6f5);
}

.experience-hero::before {
  background:
    linear-gradient(115deg, transparent 0 59%, rgba(234, 255, 0, .62) 59% 60.2%, transparent 60.2%),
    linear-gradient(25deg, rgba(0, 180, 255, .12), transparent 34%);
}

.experience-hero .eyebrow,
.content-hero .eyebrow,
.article-view .eyebrow,
.admin-login .eyebrow,
.admin-header .eyebrow {
  width: fit-content;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(17, 17, 17, .13);
}

.experience-hero .hero-photo,
.about,
.authority-grid,
.formation-list,
.content-card,
.admin-login,
.editor-form,
.entry-list,
.library-card {
  border: 1px solid var(--glass-stroke);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .42)),
    var(--glass-fill);
  box-shadow: var(--glass-shadow), var(--glass-inner);
  backdrop-filter: blur(26px) saturate(1.45);
  -webkit-backdrop-filter: blur(26px) saturate(1.45);
}

.experience-hero .hero-photo {
  border-radius: 42px;
}

.experience-hero .hero-photo img {
  border-radius: inherit;
}

.experience-hero .hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, .28), transparent 32%, rgba(255, 255, 255, .12));
  pointer-events: none;
}

.experience-hero .hero-photo::after {
  z-index: 2;
  border-color: rgba(255, 255, 255, .75);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .42), rgba(255, 255, 255, .18));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .76), 0 16px 40px rgba(17, 17, 17, .16);
}

.hero-metrics {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 24px;
  background: rgba(255, 255, 255, .28);
  box-shadow: var(--glass-inner), 0 18px 54px rgba(17, 17, 17, .10);
  backdrop-filter: blur(18px) saturate(1.45);
}

.hero-metrics span {
  background: rgba(255, 255, 255, .44);
}

.experience-hero .hero-metrics {
  position: relative;
  z-index: 2;
}

.experience-hero .hero-metrics span {
  min-height: 82px;
  display: grid !important;
  align-content: center;
  color: rgba(17, 17, 17, .62) !important;
  opacity: 1 !important;
}

.experience-hero .hero-metrics strong {
  display: block;
  color: var(--ink) !important;
  opacity: 1 !important;
}

.authority-grid {
  background: rgba(255, 255, 255, .22);
}

.authority-grid article {
  background: rgba(255, 255, 255, .46);
}

.authority-grid article:hover {
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .88), rgba(255, 255, 255, .42));
}

.formation-feature {
  background:
    linear-gradient(135deg, rgba(234, 255, 0, .16), transparent 34%),
    linear-gradient(180deg, #111, #171717);
}

.formation-list article {
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.content-toolbar input,
.content-toolbar select,
.admin-login input,
.editor-form input,
.editor-form textarea,
.editor-form select,
.rich-editor {
  border-color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .64);
  box-shadow: var(--glass-inner), 0 12px 40px rgba(17, 17, 17, .08);
  backdrop-filter: blur(18px);
}

.admin-sidebar {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .02)),
    #101010;
}

.admin-tabs button,
.admin-tabs a,
.admin-actions button,
.admin-login button,
.hero-actions a,
.newsletter button,
.mini-link,
.back-link {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .55), 0 12px 32px rgba(17, 17, 17, .13);
}

@media (max-width: 1060px) {
  .glass-nav {
    border-radius: 28px;
  }

  .glass-nav .menu-toggle {
    display: grid;
    border-color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .42);
    box-shadow: var(--glass-inner);
    backdrop-filter: blur(16px);
  }

  .glass-nav .main-nav {
    border-radius: 26px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .48));
    backdrop-filter: blur(26px) saturate(1.6);
  }
}

@media (max-width: 680px) {
  .glass-nav {
    border-radius: 24px;
  }

  .glass-nav .brand {
    border-radius: 18px;
    background: transparent;
    box-shadow: none;
  }

  .experience-hero .hero-photo {
    border-radius: 30px;
  }
}

/* Cleaner profile and client sections */
.profile-section {
  display: grid;
  gap: clamp(32px, 5vw, 62px);
  width: min(1180px, calc(100% - 44px));
  margin: clamp(70px, 8vw, 116px) auto;
  padding: clamp(34px, 5vw, 68px);
  border-radius: 38px;
}

.profile-heading {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .6fr);
  gap: clamp(24px, 6vw, 84px);
  align-items: end;
}

.profile-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
  background: var(--ink);
  color: var(--acid);
  padding: 7px 10px;
}

.profile-heading h2 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
}

.profile-heading > p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(340px, .75fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.profile-copy {
  display: grid;
  gap: 18px;
}

.profile-copy p {
  margin: 0;
  color: #585858;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.48;
  font-weight: 300;
}

.profile-copy strong {
  color: var(--ink);
  font-weight: 800;
}

.profile-credentials {
  display: grid;
  gap: 10px;
}

.profile-credentials article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .70);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82), 0 14px 40px rgba(17, 17, 17, .08);
  backdrop-filter: blur(18px) saturate(1.35);
}

.profile-credentials span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--acid);
  font-size: 12px;
  font-weight: 900;
}

.profile-credentials strong {
  align-self: end;
  font-size: 18px;
  line-height: 1.12;
}

.profile-credentials p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.3;
}

.clients {
  padding: clamp(74px, 9vw, 124px) clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 8% 0%, rgba(234, 255, 0, .22), transparent 24rem),
    #f8f8f5;
}

.clients h2 {
  width: fit-content;
  max-width: min(920px, 100%);
  margin: 0 auto 28px;
  padding: 12px 22px;
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 999px;
  background: rgba(234, 255, 0, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62), 0 14px 40px rgba(17, 17, 17, .08);
  text-align: center;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
}

.clients-frame {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: clamp(30px, 4vw, 56px);
  background:
    linear-gradient(145deg, #000, #080808);
  box-shadow:
    0 30px 90px rgba(17, 17, 17, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08);
}

.clients-frame img {
  width: 100%;
  margin: 0;
  border-radius: clamp(16px, 2vw, 30px);
  background: #000;
  box-shadow: none;
}

.education-stack {
  position: relative;
  grid-template-columns: minmax(280px, .7fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: clamp(74px, 9vw, 128px) clamp(24px, 6vw, 86px);
  background:
    radial-gradient(circle at 82% 16%, rgba(234, 255, 0, .20), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, .76), rgba(255, 255, 255, .36));
  color: var(--ink);
}

.education-stack-copy {
  display: grid;
  gap: 18px;
}

.education-stack-copy .eyebrow {
  margin: 0;
  background: var(--ink);
  color: var(--acid);
  padding: 7px 10px;
}

.education-stack-copy h2 {
  color: var(--ink);
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1;
}

.education-stack-copy p {
  margin: 0;
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
}

.education-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.education-cards article {
  min-height: 190px;
  align-content: end;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .40));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .10);
  backdrop-filter: blur(22px) saturate(1.4);
}

.education-cards article:first-child {
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .84), rgba(255, 255, 255, .46));
}

.education-cards span {
  width: fit-content;
  margin-bottom: 34px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(17, 17, 17, .90);
  color: var(--acid);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.education-cards strong {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.05;
}

.education-cards p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
}

.education-link {
  position: absolute;
  left: clamp(24px, 6vw, 86px);
  bottom: clamp(28px, 4vw, 48px);
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .24), 0 14px 34px rgba(17, 17, 17, .14);
}

@media (max-width: 900px) {
  .profile-heading,
  .profile-grid,
  .education-stack {
    grid-template-columns: 1fr;
  }

  .education-link {
    position: static;
    width: fit-content;
  }
}

@media (max-width: 620px) {
  .profile-section {
    width: calc(100% - 28px);
    padding: 26px 18px;
    border-radius: 28px;
  }

  .profile-heading h2 {
    font-size: 36px;
  }

  .profile-copy p {
    font-size: 18px;
  }

  .clients {
    padding-inline: 14px;
  }

  .clients h2 {
    font-size: 36px;
  }

  .clients-frame {
    padding: 18px;
    border-radius: 28px;
  }

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

  .education-cards article {
    min-height: 170px;
  }
}

/* Unified internal pages */
body:has(.glass-nav) .page-main,
body:has(.glass-nav) .contact-page,
body:has(.glass-nav) .content-index,
body:has(.glass-nav) .article-shell {
  background:
    radial-gradient(circle at 8% 10%, rgba(234, 255, 0, .18), transparent 22rem),
    radial-gradient(circle at 92% 8%, rgba(160, 0, 136, .10), transparent 24rem),
    linear-gradient(180deg, #fbfbf8, #f4f7f5);
}

.page-main {
  padding: 132px clamp(18px, 5vw, 72px) 90px;
}

.resume {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.resume::before {
  content: "Trajetória profissional";
  grid-column: 1 / -1;
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(44px, 6vw, 82px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0;
}

.resume-item {
  min-height: 280px;
  margin: 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.resume-item:nth-child(2),
.resume-item:nth-child(3) {
  background:
    linear-gradient(145deg, rgba(234, 255, 0, .70), rgba(255, 255, 255, .44));
}

.resume-item time {
  width: fit-content;
  margin-bottom: 34px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--acid);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.resume-item h1,
.resume-item h2,
.resume-item h3 {
  font-size: clamp(20px, 2vw, 29px);
  line-height: 1.12;
}

.resume-item p {
  color: #555;
  font-size: 15px;
  line-height: 1.5;
}

.education,
.courses,
.tools {
  max-width: 1180px;
  margin: 24px auto 0;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.section-title mark {
  min-width: 0;
  padding: 0 .08em;
}

.course-panel,
.tool-panel {
  border-radius: 24px;
}

.contact-page {
  padding: 132px clamp(18px, 5vw, 72px) 90px;
}

.contact-hero {
  min-height: auto;
  padding: 0;
}

.contact-banner {
  display: none;
}

.contact-layout {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, .75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.contact-copy {
  display: grid;
  gap: 20px;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.contact-copy h1 {
  margin: 0;
  font-size: clamp(58px, 8vw, 104px);
}

.contact-copy h2 {
  margin: 0;
}

.contact-copy p,
.contact-copy address,
.contact-form p {
  font-size: 17px;
}

.contact-form {
  max-width: none;
  margin: 0;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .42));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .84), 0 18px 52px rgba(17, 17, 17, .08);
  backdrop-filter: blur(22px) saturate(1.35);
}

.contact-form input,
.contact-form textarea {
  border-color: rgba(17, 17, 17, .18);
  border-radius: 18px;
  box-shadow: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  box-shadow: 0 0 0 4px rgba(234, 255, 0, .72);
  transform: none;
}

.contact-form button {
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 14px 34px rgba(17, 17, 17, .18);
  color: white;
}

@media (max-width: 900px) {
  .resume,
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .page-main,
  .contact-page {
    padding: 108px 14px 64px;
  }

  .resume::before {
    font-size: 42px;
  }

  .resume-item,
  .education,
  .courses,
  .tools,
  .contact-copy,
  .contact-form {
    border-radius: 26px;
    padding: 22px;
  }
}

/* Final mobile island navigation */
@media (max-width: 680px) {
  .glass-nav {
    top: 10px;
    left: 9px;
    right: 9px;
    width: auto;
    min-height: 58px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    transform: none;
  }

  .glass-nav .brand {
    min-width: 0;
    width: 100%;
    max-width: none;
    padding: 0 58px 0 12px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .glass-nav .brand strong {
    display: block;
    overflow: hidden;
    font-size: 20px;
    line-height: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .glass-nav .brand > span:not(.socials),
  .glass-nav .socials {
    display: none;
  }

  .glass-nav .menu-toggle {
    position: absolute;
    top: 8px;
    right: 8px;
    transform: none;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    background:
      linear-gradient(145deg, rgba(234, 255, 0, .96), rgba(255, 255, 255, .48));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .86), 0 12px 28px rgba(17, 17, 17, .14);
  }

  .glass-nav .menu-toggle span {
    grid-area: 1 / 1;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
  }

  .glass-nav .menu-toggle span:first-child {
    transform: translateY(-4px);
  }

  .glass-nav .menu-toggle span:last-child {
    transform: translateY(4px);
  }

  .glass-nav .main-nav {
    top: calc(100% + 8px);
    padding: 10px;
    border-radius: 24px;
  }

  .glass-nav .main-nav a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
}

/* Absolute final mobile/header overrides */
.experience-hero .hero-photo::after {
  content: none !important;
}

@media (max-width: 680px) {
  body .glass-nav {
    position: sticky !important;
    top: 8px !important;
    left: auto !important;
    right: auto !important;
    width: auto !important;
    max-width: none !important;
    margin: 8px 8px 0 !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    gap: 8px !important;
    align-items: center !important;
    overflow: visible !important;
    padding: 8px !important;
    border-radius: 999px !important;
  }

  body .glass-nav .brand {
    grid-column: 1 !important;
    min-width: 0 !important;
    width: auto !important;
    padding: 0 0 0 12px !important;
  }

  body .glass-nav .menu-toggle {
    position: static !important;
    top: auto !important;
    right: auto !important;
    grid-column: 2 !important;
    display: inline-grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    place-items: center !important;
    justify-self: end !important;
    width: 46px !important;
    min-width: 46px !important;
    height: 44px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 999 !important;
    background: linear-gradient(145deg, rgba(234, 255, 0, .98), rgba(255, 255, 255, .52)) !important;
    transition: transform .28s ease, background .28s ease, box-shadow .28s ease !important;
  }

  body .glass-nav .menu-toggle::before {
    content: none !important;
  }

  body .glass-nav .menu-toggle span {
    display: block !important;
    grid-area: 1 / 1 !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: var(--ink) !important;
    transition: transform .28s cubic-bezier(.2, .8, .2, 1), width .22s ease !important;
  }

  body .glass-nav .menu-toggle span:first-child {
    transform: translateY(-6px) !important;
  }

  body .glass-nav .menu-toggle span:nth-child(2) {
    transform: translateY(0) !important;
  }

  body .glass-nav .menu-toggle span:nth-child(3) {
    transform: translateY(6px) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] {
    transform: scale(.96) !important;
    background:
      radial-gradient(circle at 34% 20%, rgba(255, 255, 255, .16), transparent 32%),
      linear-gradient(145deg, #202020, #050505) !important;
    box-shadow:
      0 0 0 1px rgba(234, 255, 0, .32),
      0 12px 30px rgba(17, 17, 17, .26),
      inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span {
    background: var(--acid) !important;
    width: 20px !important;
    box-shadow: 0 0 12px rgba(234, 255, 0, .58) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 2px !important;
    opacity: 0 !important;
    transform: scaleX(.2) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) !important;
  }

  body .glass-nav .menu-toggle b {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }

  body .glass-nav .main-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    display: grid !important;
    gap: 8px !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, .82) !important;
    border-radius: 26px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 255, 255, .86)) !important;
    box-shadow: 0 28px 70px rgba(17, 17, 17, .16), inset 0 1px 0 rgba(255, 255, 255, .88) !important;
    backdrop-filter: blur(24px) saturate(1.3) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) scale(.985) !important;
    pointer-events: none !important;
    transition:
      opacity .24s ease,
      transform .28s cubic-bezier(.2, .8, .2, 1),
      visibility 0s linear .24s !important;
  }

  body .glass-nav .main-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    transition-delay: 0s !important;
  }

  body .glass-nav .main-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 48px !important;
    width: 100% !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    color: rgba(17, 17, 17, .82) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    transform: translateY(6px) !important;
    transition: transform .24s ease, background .2s ease, color .2s ease !important;
  }

  body .glass-nav .main-nav.open a {
    transform: translateY(0) !important;
  }

  body .glass-nav .main-nav a span {
    display: none !important;
  }

  body .glass-nav .main-nav a.active,
  body .glass-nav .main-nav a:hover {
    background: rgba(234, 255, 0, .88) !important;
    color: var(--ink) !important;
  }

  body:has(.glass-nav) main {
    padding-top: 0 !important;
  }

  body .experience-hero {
    padding-top: 34px !important;
  }

  body .experience-hero .eyebrow {
    margin-top: 0 !important;
  }

  body .experience-hero,
  body .hero-copy,
  body .hero-lede {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
  }

  body .process-os {
    padding: 34px 12px 54px !important;
  }

  body .process-os-shell {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    width: 100% !important;
    padding: 20px !important;
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  body .process-os-shell::before {
    right: -18px !important;
    width: 24px !important;
    opacity: .36 !important;
  }

  body .process-os-copy h2 {
    max-width: 100% !important;
    margin: 14px 0 14px !important;
    font-size: clamp(34px, 11vw, 48px) !important;
    line-height: 1.02 !important;
    letter-spacing: 0 !important;
  }

  body .process-os-copy p:last-child {
    max-width: 100% !important;
    font-size: 17px !important;
    line-height: 1.45 !important;
  }

  body .process-console {
    width: 100% !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  body .process-console li {
    grid-template-columns: 58px minmax(0, 1fr) !important;
    gap: 12px !important;
    padding: 18px 0 !important;
  }

  body .process-console li::before {
    width: 46px !important;
    height: 32px !important;
    font-size: 12px !important;
  }

  body .process-console strong {
    font-size: 13px !important;
  }

  body .process-console span {
    grid-column: 2 !important;
    font-size: 15px !important;
    line-height: 1.42 !important;
    overflow-wrap: normal !important;
    word-break: normal !important;
  }
}

/* Home hero background should live behind the liquid island on mobile. */
@media (max-width: 680px) {
  body:has(.experience-hero) .glass-nav {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .34)),
      rgba(245, 245, 242, .42) !important;
    backdrop-filter: blur(28px) saturate(1.65) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.65) !important;
  }

  body:has(.experience-hero) .experience-hero {
    margin-top: -78px !important;
    padding-top: 112px !important;
  }
}

/* Tablet landscape: keep the strategic copy before the portrait/media block. */
@media (min-width: 681px) and (max-width: 1060px) {
  body .experience-hero .hero-copy {
    order: 1 !important;
  }

  body .experience-hero .hero-photo {
    order: 2 !important;
  }
}

/* Tablet/mobile: same liquid hamburger language across compressed navigation. */
@media (max-width: 1060px) {
  body .glass-nav .menu-toggle {
    display: inline-grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    place-items: center !important;
    width: 56px !important;
    min-width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    border: 1px solid rgba(173, 196, 0, .44) !important;
    border-radius: 999px !important;
    background: linear-gradient(145deg, rgba(234, 255, 0, .98), rgba(255, 255, 255, .58)) !important;
    box-shadow:
      0 12px 34px rgba(17, 17, 17, .12),
      inset 0 1px 0 rgba(255, 255, 255, .82) !important;
    backdrop-filter: blur(18px) saturate(1.45) !important;
    -webkit-backdrop-filter: blur(18px) saturate(1.45) !important;
    transition: transform .28s ease, background .28s ease, box-shadow .28s ease !important;
  }

  body .glass-nav .menu-toggle span {
    display: block !important;
    grid-area: 1 / 1 !important;
    width: 22px !important;
    height: 2px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    background: var(--ink) !important;
    transition:
      transform .28s cubic-bezier(.2, .8, .2, 1),
      opacity .2s ease,
      width .22s ease !important;
  }

  body .glass-nav .menu-toggle span:first-child {
    transform: translateY(-7px) !important;
  }

  body .glass-nav .menu-toggle span:nth-child(2) {
    transform: translateY(0) !important;
  }

  body .glass-nav .menu-toggle span:nth-child(3) {
    transform: translateY(7px) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] {
    transform: scale(.96) !important;
    background:
      radial-gradient(circle at 34% 20%, rgba(255, 255, 255, .16), transparent 32%),
      linear-gradient(145deg, #202020, #050505) !important;
    box-shadow:
      0 0 0 1px rgba(234, 255, 0, .34),
      0 14px 36px rgba(17, 17, 17, .24),
      inset 0 1px 0 rgba(255, 255, 255, .18) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span {
    width: 23px !important;
    background: var(--acid) !important;
    box-shadow: 0 0 12px rgba(234, 255, 0, .58) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span:first-child {
    transform: rotate(45deg) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    width: 2px !important;
    opacity: 0 !important;
    transform: scaleX(.2) !important;
  }

  body .glass-nav .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) !important;
  }

  body .glass-nav .menu-toggle b {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }

  body:has(.who-ai-hero) .glass-nav {
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .34)),
      rgba(245, 245, 242, .42) !important;
    backdrop-filter: blur(28px) saturate(1.65) !important;
    -webkit-backdrop-filter: blur(28px) saturate(1.65) !important;
  }

  body:has(.who-ai-hero) .who-ai-page {
    margin-top: -78px !important;
    padding-top: 112px !important;
  }
}

/* Global mobile/tablet menu readability. */
@media (max-width: 1060px) {
  body .glass-nav {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 56px !important;
    gap: 10px !important;
    align-items: center !important;
  }

  body .glass-nav .brand {
    min-width: 0 !important;
    width: auto !important;
  }

  body .glass-nav .main-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: 0 !important;
    display: grid !important;
    gap: 8px !important;
    padding: 12px !important;
    border: 1px solid rgba(255, 255, 255, .86) !important;
    border-radius: 28px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .88)),
      rgba(245, 245, 242, .92) !important;
    box-shadow:
      0 28px 76px rgba(17, 17, 17, .18),
      inset 0 1px 0 rgba(255, 255, 255, .90) !important;
    backdrop-filter: blur(30px) saturate(1.55) !important;
    -webkit-backdrop-filter: blur(30px) saturate(1.55) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-8px) scale(.985) !important;
    pointer-events: none !important;
    transition:
      opacity .24s ease,
      transform .28s cubic-bezier(.2, .8, .2, 1),
      visibility 0s linear .24s !important;
  }

  body .glass-nav .main-nav.open {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) scale(1) !important;
    pointer-events: auto !important;
    transition-delay: 0s !important;
  }

  body .glass-nav .main-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-height: 48px !important;
    width: 100% !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .32) !important;
    font-size: 17px !important;
    font-weight: 800 !important;
  }

  body .glass-nav .main-nav a.active,
  body .glass-nav .main-nav a:hover {
    background:
      linear-gradient(145deg, rgba(234, 255, 0, .98), rgba(234, 255, 0, .76)) !important;
  }

  body .glass-nav .main-nav .language-switcher {
    width: 100% !important;
    margin: 6px 0 0 !important;
    padding: 7px !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 7px !important;
    border: 1px solid rgba(17, 17, 17, .08) !important;
    border-radius: 999px !important;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .58)) !important;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .86),
      0 12px 28px rgba(17, 17, 17, .08) !important;
  }

  body .glass-nav .main-nav .language-switcher button {
    width: 100% !important;
    min-width: 0 !important;
    height: 44px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, .42) !important;
    color: rgba(17, 17, 17, .70) !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  body .glass-nav .main-nav .language-switcher button.active,
  body .glass-nav .main-nav .language-switcher button:hover {
    background:
      radial-gradient(circle at 35% 18%, rgba(255, 255, 255, .18), transparent 38%),
      linear-gradient(145deg, #202020, #050505) !important;
    color: var(--acid) !important;
    box-shadow:
      0 10px 26px rgba(17, 17, 17, .18),
      inset 0 1px 0 rgba(255, 255, 255, .16) !important;
  }
}
