:root {
  --background: oklch(16% 0.03 260);
  --foreground: oklch(97% 0.01 90);
  --card: oklch(21% 0.035 260);
  --card-foreground: oklch(97% 0.01 90);
  --muted: oklch(24% 0.03 260);
  --muted-foreground: oklch(72% 0.02 250);
  --border: oklch(30% 0.03 260 / 0.6);
  --honey: oklch(82% 0.17 80);
  --honey-glow: oklch(88% 0.15 90);
  --primary-foreground: oklch(18% 0.04 60);
  --orbit: oklch(65% 0.15 230);
  --leaf: oklch(70% 0.16 145);
  --radius: 0.75rem;
  --shadow-card: 0 10px 40px -10px oklch(0% 0 0 / 0.5);
  --shadow-glow: 0 20px 60px -20px oklch(82% 0.17 80 / 0.4);
  --gradient-hero: radial-gradient(ellipse at top, oklch(30% 0.08 80 / 0.5), transparent 60%),
    linear-gradient(180deg, oklch(16% 0.03 260), oklch(12% 0.04 270));
  --gradient-honey: linear-gradient(135deg, oklch(88% 0.15 90), oklch(72% 0.19 60));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 64px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--foreground);
  background: var(--background);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 24px;
}

.page-shell {
  width: 100%;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid oklch(30% 0.03 260 / 0.4);
  background: oklch(16% 0.03 260 / 0.78);
  backdrop-filter: blur(20px);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.topbar-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
  color: var(--muted-foreground);
  font-size: 0.9rem;
}

.topbar-nav a {
  transition: color 160ms ease;
}

.topbar-nav a:hover {
  color: var(--foreground);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img,
.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid oklch(30% 0.03 260 / 0.6);
  object-fit: contain;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong,
.footer strong {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.brand small {
  color: var(--muted-foreground);
  font-size: 0.6875rem;
}

.explore-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 32px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: opacity 180ms ease, transform 180ms ease;
}

.explore-link,
.button-primary {
  color: var(--primary-foreground);
  background: var(--gradient-honey);
  box-shadow: var(--shadow-glow);
  border: 0;
}

.button-secondary {
  color: var(--foreground);
  background: oklch(21% 0.035 260 / 0.5);
  border-color: var(--border);
  box-shadow: var(--shadow-card);
}

.button:hover,
.explore-link:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.bg-hero {
  background: var(--gradient-hero);
  min-height: calc(100svh - 64px);
  padding: 112px 0 80px;
}

.hero {
  display: block;
  padding: 0;
  margin: 0;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: oklch(21% 0.035 260 / 0.7);
  color: var(--muted-foreground);
  font-size: 0.75rem;
}

.hero-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--honey);
  box-shadow: 0 0 12px oklch(82% 0.17 80 / 0.8);
}

.hero-heading {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-heading img {
  display: none;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 1px solid oklch(30% 0.03 260 / 0.6);
  box-shadow: var(--shadow-card);
  object-fit: contain;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  line-height: 1.05;
  color: var(--foreground);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
}

.text-gradient-honey {
  background: var(--gradient-honey);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 42rem;
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.hero-metrics {
  display: grid;
  gap: 12px;
  margin: 0;
}

.hero-metrics span {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: oklch(21% 0.035 260 / 0.45);
  color: oklch(97% 0.01 90 / 0.9);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-banner {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.5);
  box-shadow: var(--shadow-card);
}

.hero-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-panel {
  display: grid;
  gap: 16px;
}

.hero-panel-media {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.5);
  box-shadow: var(--shadow-card);
}

.hero-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-copy {
  padding: 24px;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.6);
  box-shadow: var(--shadow-card);
}

.hero-panel-copy p {
  margin: 16px 0 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.7;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  width: fit-content;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid oklch(82% 0.17 80 / 0.3);
  background: oklch(82% 0.17 80 / 0.1);
  color: var(--honey);
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-pad {
  padding: 96px 0;
}

.section-alt {
  border-block: 1px solid var(--border);
  background: oklch(21% 0.035 260 / 0.3);
}

.metrics-strip {
  display: grid;
  gap: 24px;
  padding: 48px 0;
  margin: 0;
  border: 0;
}

.metrics-strip article {
  padding: 0;
  border: 0;
}

.metrics-strip strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  background: var(--gradient-honey);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.metrics-strip span {
  display: block;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.content-split {
  display: grid;
  gap: 48px;
  align-items: center;
  padding: 0;
  margin: 0;
}

.split-copy {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0;
}

.split-copy h2 {
  margin-top: 0;
}

.split-copy > p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
}

.problem-list,
.bullet-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
}

.problem-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: oklch(21% 0.035 260 / 0.45);
}

.problem-dot {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 4px;
  background: var(--gradient-honey);
  box-shadow: var(--shadow-glow);
}

.problem-item p,
.bullet-stack p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.bullet-stack p {
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: oklch(16% 0.03 260 / 0.4);
}

.feature-grid {
  display: grid;
  gap: 16px;
  margin: 0;
}

.feature-card,
.ods-card {
  padding: 20px;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.55);
  box-shadow: var(--shadow-card);
}

.feature-card {
  border-bottom: 1px solid oklch(30% 0.03 260 / 0.5);
}

.feature-card h3,
.ods-card h3 {
  margin-top: 0;
}

.feature-card p,
.ods-card p {
  margin: 12px 0 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--gradient-honey);
  box-shadow: var(--shadow-glow);
  color: var(--primary-foreground);
  font-size: 1.125rem;
  font-weight: 700;
}

.card-image {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.5);
  box-shadow: var(--shadow-card);
}

.card-image img,
.fullwidth-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.soft-frame {
  border-radius: 1rem;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.tag-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid oklch(82% 0.17 80 / 0.3);
  background: oklch(82% 0.17 80 / 0.1);
  color: var(--honey);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}

.mission {
  padding: 96px 0;
  margin: 0;
}

.section-heading {
  max-width: 42rem;
  margin-bottom: 48px;
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.ods-grid {
  display: grid;
  gap: 24px;
  margin: 0;
}

.ods-card span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--honey);
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team {
  padding: 96px 0;
  margin: 0;
}

.team-layout {
  display: grid;
  gap: 32px;
  align-items: start;
}

.team-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-emblem-wrap {
  margin: 0;
  padding: 32px;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.5);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.team-emblem {
  width: 100%;
  max-width: 220px;
  margin-inline: auto;
  aspect-ratio: 1;
  border: 0;
  object-fit: contain;
}

.team-grid {
  display: grid;
  gap: 16px;
  margin: 0;
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 20px;
  border-radius: 1rem;
  border: 1px solid oklch(30% 0.03 260 / 0.5);
  background: oklch(21% 0.035 260 / 0.55);
  box-shadow: var(--shadow-card);
}

.team-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-card > span,
.team-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--gradient-honey);
  box-shadow: var(--shadow-glow);
  font-size: 1.125rem;
}

.team-card p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

.team-card strong {
  display: block;
  margin: 16px 0 8px;
  color: var(--honey);
  font-family: ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card small {
  display: block;
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.65;
}

.cta-section {
  padding: 0 0 96px;
  margin: 0;
  text-align: center;
}

.cta-section .section-kicker,
.cta-section .eyebrow {
  margin-inline: auto;
}

.cta-section h2 {
  max-width: 48rem;
  margin-inline: auto;
}

.cta-section p {
  max-width: 42rem;
  margin: 16px auto 0;
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
}

.center-actions {
  justify-content: center;
  margin-top: 28px;
}

.footer {
  padding: 32px 0 48px;
  margin-top: 0;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand p,
.footer > p {
  margin: 8px 0 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer > p {
  margin-top: 0;
  white-space: nowrap;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-heading img {
    display: block;
  }

  .hero-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ods-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

#foto_user{
  border-radius:500px;
}

@media (min-width: 768px) {
  .topbar-nav {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .hero-grid,
  .content-split,
  .content-split.reverse {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }

  .content-split.reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .content-split.reverse .split-copy {
    order: 2;
  }

  .content-split.reverse .card-image {
    order: 1;
  }

  #dor .content-split {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .metrics-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .team-layout {
    grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  }

  .ods-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }

  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .topbar-inner {
    flex-wrap: wrap;
    padding-block: 12px;
    min-height: auto;
  }

  .bg-hero {
    min-height: calc(100svh - 72px);
  }

  body {
    padding-top: 72px;
  }

  .brand small {
    display: none;
  }

  .explore-link {
    width: 100%;
  }

  .section-pad,
  .mission,
  .team {
    padding: 64px 0;
  }

  .footer {
    flex-direction: column;
  }

  .button,
  .explore-link {
    width: 100%;
  }
}
