:root {
  --bg: #090909;
  --green: #00c853;
  --blue: #0878f8;
  --blue-dark: #003d82;
  --red: #ff3b30;
  --white: #ffffff;
  --muted: #a7a7a7;
  --line: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  font-family: "Segoe UI Variable Text", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--white);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

.market-ticker {
  flex-shrink: 0;
  height: 34px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #050505;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 200%;
  height: 100%;
  align-items: center;
  gap: 28px;
  animation: ticker 34s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d8d8d8;
  font-size: 0.78rem;
  white-space: nowrap;
}

.ticker-symbol,
.asset-symbol {
  color: var(--white);
  font-weight: 800;
}

.ticker-price {
  color: #ececec;
}

.price-up {
  color: var(--green);
}

.price-down {
  color: var(--red);
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.landing {
  flex: 1;
  display: grid;
  place-items: start center;
  padding: 0 14px 24px;
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 200, 83, 0.2), transparent 22rem),
    linear-gradient(180deg, #0c0c0c 0%, #070707 100%);
}

.hero-card {
  width: min(100%, 430px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0 0 30px 30px;
  background:
    radial-gradient(circle at 50% 58%, rgba(0, 200, 83, 0.1), transparent 18rem),
    #0b0b0b;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.hero-media {
  position: relative;
  min-height: 395px;
  overflow: hidden;
  background: #111;
}

.hero-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 9, 9, 0.82) 70%, #0b0b0b 100%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 395px;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.hero-content {
  margin-top: -78px;
  position: relative;
  z-index: 2;
  padding: 0 18px 30px;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--green);
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 950;
  letter-spacing: -0.05em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 2px solid var(--green);
  border-radius: 50%;
  font-size: 0.85rem;
}

.portugal-badge {
  display: inline-grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 200, 83, 0.32);
  border-radius: 999px;
  color: #dfffee;
  background: rgba(0, 200, 83, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
}

.portugal-badge span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
}

.community-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 auto 14px;
  padding: 12px 14px;
  border: 1px solid rgba(245, 197, 66, 0.38);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: left;
  transition: border-color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  animation: vipPulse 2.8s ease-in-out infinite;
}

.community-proof:hover {
  border-color: rgba(245, 197, 66, 0.7);
  filter: brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(245, 197, 66, 0.18);
}

.trophy-badge {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 240, 180, 0.35), transparent 60%),
    rgba(245, 197, 66, 0.12);
  animation: trophyBounce 1.6s ease-in-out infinite;
}

.trophy-icon {
  width: 30px;
  height: 30px;
  display: block;
}

@keyframes trophyBounce {
  0%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-4px);
  }

  60% {
    transform: translateY(-1px);
  }
}

@keyframes vipPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }

  50% {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.1),
      0 10px 22px rgba(245, 197, 66, 0.14);
  }
}

.community-proof strong,
.community-proof small {
  display: block;
}

.community-proof strong {
  color: var(--white);
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 950;
  letter-spacing: -0.035em;
}

.community-proof small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

h1 {
  margin-bottom: 14px;
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: clamp(2rem, 8.5vw, 2.48rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h1 strong,
h1::first-line {
  color: var(--green);
}

.hero-content p {
  color: var(--white);
  font-size: 0.98rem;
  line-height: 1.42;
}

.hero-content p strong,
.quick-benefits li::before {
  color: var(--green);
}

.quick-benefits {
  display: grid;
  gap: 9px;
  margin: 18px 0 22px;
  list-style: none;
  color: #f2f2f2;
  font-size: 0.96rem;
  font-weight: 850;
  text-align: left;
}

.quick-benefits li {
  display: flex;
  align-items: center;
  gap: 9px;
}

.quick-benefits li::before {
  content: "✓";
  font-size: 1.1rem;
  font-weight: 900;
}

.cta-button {
  position: relative;
  width: 100%;
  min-height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  color: var(--white);
  background: linear-gradient(180deg, #22a3ff 0%, var(--blue) 52%, #005bcc 100%);
  box-shadow:
    0 10px 30px rgba(8, 120, 248, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -3px 0 rgba(0, 61, 130, 0.85);
  font-family: "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.cta-button::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
  content: "";
  pointer-events: none;
}

.cta-button-text,
.cta-button-arrow {
  position: relative;
  z-index: 1;
}

.cta-button-arrow {
  font-size: 1.35rem;
  line-height: 1;
  transition: transform 0.22s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.06);
  box-shadow:
    0 16px 38px rgba(8, 120, 248, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -3px 0 rgba(0, 61, 130, 0.85);
}

.cta-button:hover .cta-button-arrow {
  transform: translateX(4px);
}

.cta-button:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.trust-note {
  margin-top: 24px;
  color: var(--muted) !important;
  font-size: 0.8rem !important;
  line-height: 1.35 !important;
}

.site-footer {
  padding: 16px 18px 22px;
  border-top: 1px solid var(--line);
  background: #050505;
  text-align: center;
}

.footer-copy {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 430px) {
  .landing {
    padding: 0;
  }

  .hero-card {
    width: 100%;
    min-height: auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 390px;
  }
}
