:root {
  --bg: #020617;
  --card: #0f172a;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #38bdf8;
  --border: #1e293b;
  --shadow: 0 10px 25px rgba(2, 6, 23, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at top, #0f172a 0%, var(--bg) 45%);
  color: var(--text);
  line-height: 1.45;
}

.container {
  width: min(720px, 100% - 2rem);
  margin-inline: auto;
  padding: 1.5rem 0 2rem;
}

.lang-switch {
  position: relative;
  display: inline-block;
  margin-bottom: 0.9rem;
}

.lang-trigger {
  border: 1px solid #334155;
  border-radius: 8px;
  background: #111827;
  color: #e5e7eb;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  min-height: 2rem;
  padding: 0.35rem 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  cursor: pointer;
}

.lang-trigger:hover,
.lang-trigger:focus-visible {
  border-color: #60a5fa;
  background: #172033;
}

.lang-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lang-globe,
.lang-caret {
  opacity: 0.9;
}

.lang-menu {
  list-style: none;
  margin: 0.35rem 0 0;
  padding: 0.35rem;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  border: 1px solid #334155;
  border-radius: 10px;
  background: #0f172a;
  box-shadow: 0 12px 26px rgba(2, 6, 23, 0.45);
  z-index: 10;
}

.lang-option {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #e2e8f0;
  text-align: left;
  font-size: 0.9rem;
  padding: 0.45rem 0.5rem;
  display: grid;
  grid-template-columns: 1.2rem 1fr 1rem;
  align-items: center;
  gap: 0.55rem;
  cursor: pointer;
}

.lang-option:hover,
.lang-option:focus-visible {
  background: #1e293b;
}

.lang-option:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0;
}

.check {
  opacity: 0;
}

.lang-option[aria-selected="true"] {
  background: #1e293b;
}

.lang-option[aria-selected="true"] .check {
  opacity: 1;
}

.hero {
  text-align: left;
  margin-bottom: 1rem;
}

.profile-photo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 999px;
  border: 2px solid #334155;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.35);
  margin: 0 auto 0.85rem;
  display: block;
}

.eyebrow {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.person-name {
  margin: 0.25rem 0 0;
  font-size: clamp(2.2rem, 11vw, 3.8rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
}

.role-title {
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: clamp(1rem, 3.8vw, 1.25rem);
  font-weight: 600;
  color: #cbd5e1;
}

.keyword-line {
  margin: 0.4rem auto 0.5rem;
  text-align: center;
  font-size: clamp(0.78rem, 2.6vw, 0.92rem);
  color: var(--muted);
  max-width: 62ch;
}

h1 {
  margin: 0.2rem 0 0.5rem;
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  line-height: 1.1;
}

.subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.contacts {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: inherit;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.contact-reveal {
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-1px);
  border-color: var(--accent);
  background: #111f38;
}

.contact-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.icon {
  font-size: 1.3rem;
  width: 2.25rem;
  height: 2.25rem;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #0b1225;
}

.linkedin-brand {
  color: #0a66c2;
}

.whatsapp-brand {
  color: #25d366;
}

.instagram-brand {
  color: #e4405f;
}

.contact-card h2 {
  margin: 0;
  font-size: 1rem;
}

.contact-card p {
  margin: 0.1rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer {
  margin-top: 1.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.app-promo {
  margin-top: 1.2rem;
  padding: 1rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.85);
  text-align: center;
}

.app-title {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}

.app-icon {
  width: 92px;
  height: 92px;
  object-fit: cover;
  border-radius: 22px;
  border: 2px solid #334155;
  box-shadow: 0 10px 18px rgba(2, 6, 23, 0.35);
  margin: 0 auto 0.8rem;
  display: block;
}

.store-buttons {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-width: 120px;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #111827;
  color: #e2e8f0;
  text-decoration: none;
  font-weight: 600;
}

.store-icon {
  font-size: 1.05rem;
  line-height: 1;
}

.store-btn:hover,
.store-btn:focus-visible {
  border-color: var(--accent);
  background: #172033;
}

@media (min-width: 640px) {
  .container {
    padding-top: 2.5rem;
  }

  .contacts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
