:root {
  --page: #08080a;
  --ink: #f8f7f1;
  --muted: rgba(248, 247, 241, 0.7);
  --faint: rgba(248, 247, 241, 0.46);
  --line: rgba(255, 255, 255, 0.13);
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(12, 12, 14, 0.72);
  --team-green: #32CD32;
  --team-lime: #97CC04;
  --team-gold: #FFD700;
  --brand-green: #006838;
  --team-gradient: linear-gradient(100deg, var(--team-green) 0%, var(--team-lime) 48%, var(--team-gold) 100%);
  --team-gradient-soft: linear-gradient(135deg, rgba(0, 104, 56, 0.74), rgba(150, 207, 36, 0.34));
  --shadow: rgba(0, 0, 0, 0.5);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 74% 16%, rgba(50, 205, 50, 0.07), transparent 31rem),
    radial-gradient(circle at 22% 72%, rgba(255, 215, 0, 0.045), transparent 33rem),
    linear-gradient(135deg, #050706 0%, #0b1210 46%, #060806 100%);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  inset: -42px;
  z-index: -2;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(6, 8, 8, 0.7), rgba(6, 8, 6, 0.78)),
    url("/assets/taj.jpg");
  background-position: 62% 12%;
  background-size: min(760px, 82vw);
  background-repeat: no-repeat;
  filter: blur(30px) saturate(0.62) brightness(0.5);
  opacity: 0.14;
  transform: scale(1.04);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, black 0%, transparent 72%);
  opacity: 0.34;
}

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

.page-shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(22px, 6vw, 74px) clamp(16px, 3vw, 28px) 80px;
}

.hero-card,
.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(10, 10, 12, 0.58);
  box-shadow:
    0 32px 90px var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(26px);
}

.hero-card {
  min-height: 690px;
  padding: clamp(28px, 5vw, 72px) clamp(26px, 6vw, 92px);
}

.panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 84% 6%, rgba(50, 205, 50, 0.12), transparent 18rem),
    radial-gradient(circle at 22% 100%, rgba(255, 215, 0, 0.08), transparent 20rem);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 38%;
  background:
    linear-gradient(90deg, rgba(8, 8, 10, 1) 0%, rgba(8, 8, 10, 0.72) 22%, rgba(8, 8, 10, 0.14) 52%, rgba(8, 8, 10, 0.3) 100%),
    url("/assets/taj.jpg");
  background-position: center top;
  background-size: cover;
}

.glass-vignette {
  display: none;
}

.hero-content,
.floating-nav {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: min(400px, 42%);
  margin-top: clamp(88px, 13vw, 150px);
}

.role {
  margin: 0 0 12px;
  font-size: clamp(0.88rem, 1.2vw, 1.05rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  margin-left: -3px;
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 950;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

h1 .first {
  display: block;
}

h1 .middle {
  display: block;
  padding-left: 1.2em;
  font-size: 0.88em;
}

h1 .surname {
  display: block;
  padding-left: 2.4em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0;
}

.role,
h1 .middle,
h3,
.content-block h2,
.feature-panel h2,
.lifestyle-heading h2 {
  width: fit-content;
  max-width: 100%;
  background: var(--team-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(50, 205, 50, 0.08);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 340px;
  padding-left: 4px;
}

.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.5;
}

.contact-icon {
  width: 16px;
  height: 16px;
  font-size: 0.78rem;
  color: var(--team-green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  text-align: center;
  flex-shrink: 0;
  text-shadow: 0 0 12px rgba(50, 205, 50, 0.36);
}

.contact-list a:hover {
  color: var(--ink);
}

.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border: 1px solid rgba(50, 205, 50, 0.34);
  border-radius: 999px;
  background: var(--team-gradient);
  padding: 0 20px;
  color: #061107;
  font-size: 0.74rem;
  font-weight: 900;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(50, 205, 50, 0.18);
}

.download-button.small {
  position: absolute;
  top: 42px;
  right: 42px;
  z-index: 2;
}

.not-found-panel {
  min-height: 58vh;
}

.not-found-title {
  font-size: clamp(3rem, 8vw, 7rem);
}

.floating-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: calc(100% - 34px);
  margin: 64px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(15, 14, 15, 0.58);
  padding: 8px;
  color: rgba(248, 247, 241, 0.7);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(24px);
}

.floating-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 18px;
  font-size: 0.76rem;
  font-weight: 850;
  white-space: nowrap;
}

.floating-nav a.active {
  background: var(--team-gradient);
  color: #061107;
  box-shadow: 0 0 20px rgba(50, 205, 50, 0.22);
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.76fr);
  grid-template-areas:
    "profile feature"
    "lifestyle lifestyle";
  gap: 28px;
  margin-top: clamp(72px, 10vw, 126px);
}

.panel {
  min-height: 320px;
  padding: clamp(28px, 4vw, 54px);
}

.profile-panel {
  grid-area: profile;
  min-height: 620px;
}

.feature-panel {
  grid-area: feature;
  align-self: center;
  min-height: 560px;
  background:
    linear-gradient(145deg, rgba(12, 12, 14, 0.92), rgba(12, 12, 14, 0.72)),
    rgba(10, 10, 12, 0.75);
}

.lifestyle-panel {
  grid-area: lifestyle;
}

.content-block {
  position: relative;
  z-index: 2;
  max-width: 500px;
  margin-top: 42px;
}

.content-block p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 12px;
}

.edu-entry {
  margin-bottom: 18px;
}

.edu-entry h3 {
  margin-bottom: 4px;
}

.edu-entry p {
  margin-bottom: 2px;
}

.edu-note {
  color: var(--faint);
  font-size: 0.8rem;
  font-style: italic;
}

.lifestyle-carousel {
  margin-top: 28px;
}

.lifestyle-heading {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.lifestyle-heading h2 {
  margin-bottom: 0;
}

.lifestyle-slide {
  display: none;
}

.lifestyle-slide.active {
  display: block;
}

.lifestyle-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.lifestyle-image {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.lifestyle-image img {
  width: 100%;
  height: auto;
  display: block;
}

.photo-carousel {
  position: relative;
}

.photo-carousel .photo-slide {
  display: none;
  width: 100%;
  height: auto;
  animation: photoFade 0.6s ease;
}

.photo-carousel .photo-slide.active {
  display: block;
}

@keyframes photoFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.photo-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.photo-dots span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s;
}

.photo-dots span.active {
  background: var(--team-green);
}

.lifestyle-text h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.lifestyle-text h3.ojogo-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ojogo-subtitle img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex: 0 0 auto;
}

.lifestyle-text p {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.carousel-dots .dot.active {
  background: var(--team-gradient);
  border-color: rgba(50, 205, 50, 0.78);
}

.carousel-arrows {
  display: flex;
  gap: 10px;
}

.carousel-arrows .arrow {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.carousel-arrows .arrow:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--ink);
}

.feature-panel .content-block {
  position: relative;
  z-index: 2;
}

.feature-panel .content-block h3 {
  margin-top: 22px;
}

.feature-panel .content-block h3:first-child {
  margin-top: 0;
}

@media (max-width: 940px) {
  .hero-card {
    min-height: 0;
  }

  .hero-image {
    inset: 40% 0 0 0;
    background:
      linear-gradient(180deg, rgba(8, 8, 10, 0.98), rgba(8, 8, 10, 0.24) 38%, rgba(8, 8, 10, 0.44)),
      url("/assets/taj.jpg");
    background-position: center top;
    background-size: cover;
  }

  .hero-content {
    width: 100%;
    margin-top: 82px;
  }


  .floating-nav {
    overflow-x: auto;
    justify-content: flex-start;
    width: 100%;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "profile"
      "feature"
      "lifestyle";
  }

  .feature-panel {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-inline: 12px;
  }

  .hero-card,
  .panel {
    padding: 24px;
  }

  h1 {
    margin-bottom: 28px;
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .hero-image {
    inset: 54% 0 0 0;
  }

  .floating-nav a {
    min-height: 32px;
    padding-inline: 7px;
    font-size: 0.62rem;
  }

  .floating-nav {
    gap: 3px;
    max-width: 100%;
    padding: 7px;
  }

  .lifestyle-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .lifestyle-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}
