/* Inspired by https://bio.scaleproof.xyz/ — TikTok-style cyan + magenta on black, Instrument Sans, narrow column */

:root {
  --tt-cyan: #25f4ee;
  --tt-pink: #fe2c55;
  --bg0: #000000;
  --bg1: #0f0f0f;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-hover: rgba(37, 244, 238, 0.1);
  --surface-pink-hover: rgba(254, 44, 85, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.58);
  --ring: rgba(37, 244, 238, 0.55);
  --radius: 14px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 60px rgba(37, 244, 238, 0.06);
  --tap: 52px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --wrap: 420px;
}

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

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg0);
  background-image: radial-gradient(1200px 650px at 50% -25%, rgba(37, 244, 238, 0.2), transparent 55%),
    radial-gradient(900px 520px at 100% 0%, rgba(254, 44, 85, 0.16), transparent 52%),
    radial-gradient(700px 480px at 0% 35%, rgba(37, 244, 238, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg0) 55%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: max(20px, env(safe-area-inset-top)) 20px max(28px, env(safe-area-inset-bottom));
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--tt-cyan), var(--tt-pink));
  color: #fff;
  font-weight: 600;
  z-index: 100;
  border-radius: 0 0 var(--radius) 0;
}

.skip-link:focus {
  left: 0;
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

a {
  color: inherit;
}

.page-wrap {
  width: 100%;
  max-width: var(--wrap);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 28px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wordmark {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--text);
}

.lang-switch {
  display: flex;
  padding: 3px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.lang-btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.4rem 0.65rem;
  border-radius: 9px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.is-active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(37, 244, 238, 0.25);
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(37, 244, 238, 0.22), rgba(254, 44, 85, 0.14));
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow), 0 0 36px rgba(37, 244, 238, 0.12), 0 0 48px rgba(254, 44, 85, 0.08);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tt-cyan);
}

.hero-title {
  margin: 0;
  font-size: clamp(1.2rem, 5vw, 1.45rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.bio-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
  text-wrap: balance;
}

.hero-cta {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 14px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  transition: background 0.15s ease, transform 0.12s ease, border-color 0.15s ease, filter 0.15s ease;
}

.tile:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
}

.tile:active {
  transform: scale(0.98);
}

.tile-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.tile-secondary:hover {
  background: var(--surface-hover);
  border-color: rgba(37, 244, 238, 0.35);
}

.tile-primary {
  background: linear-gradient(135deg, var(--tt-cyan) 0%, var(--tt-pink) 100%);
  color: #ffffff;
  border: 1px solid transparent;
  box-shadow: 0 10px 32px rgba(37, 244, 238, 0.25), 0 8px 28px rgba(254, 44, 85, 0.2);
}

.tile-primary:hover {
  filter: brightness(1.05);
}

.tile-email {
  word-break: break-all;
  text-align: center;
  font-size: 0.9rem;
}

.tile-external::after {
  content: " \2197";
  font-size: 0.85em;
  opacity: 0.75;
  font-weight: 500;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pillar-tile {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pillar-tile:hover {
  background: var(--surface-pink-hover);
  border-color: rgba(254, 44, 85, 0.35);
}

.pillar-emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.pillar-copy h3 {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 600;
}

.pillar-copy p {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.5;
}

.product {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-card {
  margin: 0;
  padding: 16px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  text-align: left;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.product-card:hover {
  background: var(--surface-hover);
  border-color: rgba(37, 244, 238, 0.35);
}

.product-emoji {
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

.product-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.product-desc {
  margin: 0;
}

.product-cta {
  margin-top: 4px;
  align-self: stretch;
}

.quote-band {
  margin: 0;
}

.quote-tile {
  margin: 0;
  padding: 18px 18px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 0 40px rgba(37, 244, 238, 0.04);
}

.quote-tile p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.015em;
  text-align: center;
  text-wrap: balance;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  text-align: center;
}

.contact .section-title {
  margin-bottom: 2px;
}

.contact-lead {
  margin: 0;
}

.site-footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.9;
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-tag {
  margin: 0;
  font-weight: 600;
  color: var(--text);
  opacity: 0.75;
}

.footer-associate {
  margin: 0;
  line-height: 1.45;
}

.footer-associate a {
  color: var(--tt-cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-associate a:hover {
  color: #fff;
}

.footer-copy {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .tile,
  .lang-btn {
    transition: none;
  }

  .tile:active {
    transform: none;
  }
}
