:root {
  --graphite: #0a0a0c;
  --carbon: #16171a;
  --steel: #1d1f23;
  --steel-2: #26282d;
  --slate: #8a8d93;
  --mist: #f5f6f7;
  --neon: #7ed321;
  --lime: #a6f04a;

  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--graphite);
  background-image: radial-gradient(circle at 50% -10%, rgba(126, 211, 33, 0.08), transparent 55%);
  color: var(--mist);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Header ---------- */

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  margin-bottom: 32px;
}

.brand-logo {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(126, 211, 33, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 12px 30px rgba(0, 0, 0, 0.45);
}

.brand-logo-fallback {
  width: 84px;
  height: 84px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--carbon);
  border: 1px solid rgba(126, 211, 33, 0.35);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand-logo-fallback span {
  color: var(--neon);
}

.brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0;
}

.brand-name .accent {
  color: var(--neon);
}

.brand-location {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: -6px 0 0;
}

.brand-tagline {
  font-size: 15px;
  line-height: 1.5;
  color: var(--mist);
  max-width: 360px;
  margin: 4px 0 0;
}

.brand-sub {
  font-size: 13px;
  color: var(--slate);
  max-width: 340px;
  margin: 0;
}

/* ---------- Buttons ---------- */

.links {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.link-btn {
  --btn-bg: var(--steel);
  --btn-border: rgba(255, 255, 255, 0.08);
  --btn-title: var(--mist);
  --btn-sub: var(--slate);

  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 72px;
  padding: 14px 18px;
  border-radius: 18px;
  background: var(--btn-bg);
  border: 1px solid var(--btn-border);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.16);
}

.link-btn:active {
  transform: translateY(0) scale(0.98);
}

.link-btn:focus-visible {
  outline: 2px solid var(--neon);
  outline-offset: 3px;
}

.link-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: var(--btn-title);
}

.link-icon svg {
  width: 22px;
  height: 22px;
}

.link-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
  min-width: 0;
}

.link-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--btn-title);
  line-height: 1.25;
}

.link-sub {
  font-size: 12.5px;
  color: var(--btn-sub);
  line-height: 1.3;
}

.link-arrow {
  margin-left: auto;
  flex: 0 0 auto;
  opacity: 0.5;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.link-btn:hover .link-arrow {
  transform: translateX(3px);
  opacity: 0.9;
}

/* Primary WhatsApp button */
.link-btn.primary {
  --btn-bg: linear-gradient(180deg, #8ee62d, var(--neon));
  background: linear-gradient(180deg, #8ee62d, var(--neon));
  border-color: rgba(126, 211, 33, 0.6);
  --btn-title: var(--graphite);
  --btn-sub: rgba(10, 10, 12, 0.65);
  box-shadow: 0 0 0 1px rgba(126, 211, 33, 0.15), 0 10px 30px -6px rgba(126, 211, 33, 0.45);
  min-height: 80px;
}

.link-btn.primary .link-icon {
  background: rgba(10, 10, 12, 0.12);
  color: var(--graphite);
}

.link-btn.primary .link-arrow {
  color: var(--graphite);
  opacity: 0.7;
}

.link-btn.primary:hover {
  box-shadow: 0 0 0 1px rgba(126, 211, 33, 0.25), 0 14px 36px -6px rgba(126, 211, 33, 0.6);
}

/* ---------- Instagram secondary ---------- */

.secondary-row {
  margin-top: 6px;
}

.link-btn.secondary {
  min-height: 56px;
  padding: 10px 16px;
  background: var(--carbon);
}

.link-btn.secondary .link-icon {
  width: 36px;
  height: 36px;
}

.link-btn.secondary .link-icon svg {
  width: 18px;
  height: 18px;
}

.link-btn.secondary .link-title {
  font-size: 14px;
}

/* ---------- Info block ---------- */

.info-card {
  width: 100%;
  margin-top: 36px;
  padding: 22px 20px;
  border-radius: 18px;
  background: var(--carbon);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.info-card h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--mist);
}

.info-card p {
  margin: 0 0 4px;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--slate);
}

.info-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  margin: 14px 0;
}

.info-card strong {
  color: var(--mist);
  font-weight: 600;
}

footer.page-footer {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(138, 141, 147, 0.7);
  text-align: center;
}

footer.page-footer a {
  color: rgba(138, 141, 147, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ---------- Entrance animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: reveal 0.5s ease forwards;
}

.reveal-1 { animation-delay: 0.02s; }
.reveal-2 { animation-delay: 0.08s; }
.reveal-3 { animation-delay: 0.14s; }
.reveal-4 { animation-delay: 0.2s; }
.reveal-5 { animation-delay: 0.26s; }
.reveal-6 { animation-delay: 0.32s; }
.reveal-7 { animation-delay: 0.38s; }
.reveal-8 { animation-delay: 0.44s; }

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .link-btn,
  .link-arrow {
    transition: none !important;
  }
}

/* ---------- Responsive ---------- */

@media (min-width: 640px) {
  .wrap {
    padding-top: 64px;
  }
  .brand-logo,
  .brand-logo-fallback {
    width: 96px;
    height: 96px;
  }
}

@media (min-width: 1024px) {
  body {
    background-image: radial-gradient(circle at 50% -20%, rgba(126, 211, 33, 0.1), transparent 45%);
  }
  .wrap {
    padding-top: 80px;
  }
}

@media (max-width: 340px) {
  .link-title {
    font-size: 15px;
  }
  .brand-name {
    font-size: 20px;
  }
}
