/* Gastriva link-in-bio · shared styles */
:root {
  --lt-ink: #1a1f28;
  --lt-panel: #252b36;
  --lt-lime: #9ddd5c;
  --lt-lime-deep: #7bc04a;
  --lt-white: #ffffff;
  --lt-black: #0d0f12;
  --lt-muted: rgba(255, 255, 255, 0.58);
  --lt-radius-pill: 999px;
  --lt-max: 420px;
  --font-display: "Archivo Black", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  background: var(--lt-ink);
  color: var(--lt-white);
  -webkit-font-smoothing: antialiased;
}

.lt-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Top lime band */
.lt-topband {
  height: clamp(100px, 22vw, 140px);
  background: linear-gradient(
    165deg,
    var(--lt-lime) 0%,
    var(--lt-lime-deep) 55%,
    #6aaf3d 100%
  );
  flex-shrink: 0;
  position: relative;
}

.lt-topband::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--lt-panel));
  pointer-events: none;
}

/* Main column */
.lt-main {
  flex: 1;
  background: var(--lt-panel);
  padding: 0 22px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Avatar ring */
.lt-avatar-wrap {
  margin-top: -56px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  padding: 6px;
  border-radius: 50%;
  background: var(--lt-white);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.lt-avatar {
  width: clamp(100px, 28vw, 124px);
  height: clamp(100px, 28vw, 124px);
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background: var(--lt-white);
}

.lt-avatar--logo {
  padding: 14px;
  object-fit: contain;
}

.lt-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6.5vw, 2.125rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin: 0 0 10px;
  color: var(--lt-lime);
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(157, 221, 92, 0.25);
}

.lt-subtitle {
  margin: 0 0 28px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--lt-muted);
  line-height: 1.45;
  max-width: var(--lt-max);
}

.lt-links {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: var(--lt-max);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lt-link {
  display: block;
  width: 100%;
  padding: 16px 22px;
  border-radius: var(--lt-radius-pill);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.lt-link:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.lt-link:active {
  transform: translateY(0);
}

.lt-link:focus-visible {
  outline: 3px solid var(--lt-lime);
  outline-offset: 3px;
}

.lt-link--lime {
  background: var(--lt-lime);
  color: var(--lt-black);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.lt-link--white {
  background: var(--lt-white);
  color: var(--lt-black);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
}

.lt-bio {
  margin: 32px 0 0;
  max-width: var(--lt-max);
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--lt-muted);
}

/* Team directory (team/index.html) */
.lt-team-grid {
  width: 100%;
  max-width: var(--lt-max);
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.lt-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 20px 22px;
  border-radius: var(--lt-radius-pill);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.lt-team-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.lt-team-card:focus-visible {
  outline: 3px solid var(--lt-lime);
  outline-offset: 3px;
}

.lt-team-card--lime {
  background: var(--lt-lime);
  color: var(--lt-black);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.12);
}

.lt-team-card--white {
  background: var(--lt-white);
  color: var(--lt-black);
  box-shadow: 0 8px 0 rgba(0, 0, 0, 0.08);
}

.lt-team-card-name {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.lt-team-card-role {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.75;
}

@media (prefers-reduced-motion: no-preference) {
  .lt-team-card {
    opacity: 0;
    animation: lt-fade-up 0.45s ease both;
  }

  .lt-team-grid .lt-team-card:nth-child(1) { animation-delay: 0.2s; }
  .lt-team-grid .lt-team-card:nth-child(2) { animation-delay: 0.26s; }

  .lt-main:has(.lt-team-grid) .lt-bio {
    animation-delay: 0.34s;
  }
}

/* Decorative lime strip above footer */
.lt-prefooter {
  height: 10px;
  background: linear-gradient(90deg, var(--lt-lime-deep), var(--lt-lime));
  flex-shrink: 0;
}

.lt-footer {
  background: var(--lt-black);
  padding: 16px 20px 22px;
  flex-shrink: 0;
}

.lt-footer-inner {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.lt-footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.lt-footer a:hover {
  color: var(--lt-white);
}

.lt-footer-meta {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
}

/* Entrance motion */
@media (prefers-reduced-motion: no-preference) {
  .lt-avatar-wrap {
    animation: lt-pop 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  }

  .lt-title {
    animation: lt-fade-up 0.5s ease 0.08s both;
  }

  .lt-subtitle {
    animation: lt-fade-up 0.5s ease 0.14s both;
  }

  .lt-links li {
    opacity: 0;
    animation: lt-fade-up 0.45s ease both;
  }

  .lt-links li:nth-child(1) { animation-delay: 0.2s; }
  .lt-links li:nth-child(2) { animation-delay: 0.26s; }
  .lt-links li:nth-child(3) { animation-delay: 0.32s; }
  .lt-links li:nth-child(4) { animation-delay: 0.38s; }
  .lt-links li:nth-child(5) { animation-delay: 0.44s; }
  .lt-links li:nth-child(6) { animation-delay: 0.5s; }
  .lt-links li:nth-child(7) { animation-delay: 0.56s; }
  .lt-links li:nth-child(8) { animation-delay: 0.62s; }
  .lt-links li:nth-child(9) { animation-delay: 0.68s; }
  .lt-links li:nth-child(10) { animation-delay: 0.74s; }

  .lt-bio {
    animation: lt-fade-up 0.55s ease 0.72s both;
  }
}

@keyframes lt-pop {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lt-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
