/* ===== Robinhood Clone - Styles ===== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --rh-green: #CCFF00;
  --rh-green-hover: #b8e600;
  --rh-green-dark: #00C805;
  --rh-black: #000000;
  --rh-dark: #0a0a0a;
  --rh-gray-100: #f5f5f5;
  --rh-gray-400: #9b9b9b;
  --rh-gray-600: #6b6b6b;
  --rh-white: #ffffff;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --header-height: 64px;
  --transition: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--rh-black);
  color: var(--rh-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rh-green);
  color: var(--rh-black);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  min-width: 140px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--rh-white);
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-login:hover {
  border-color: var(--rh-white);
  background: rgba(255, 255, 255, 0.05);
}

.btn-login.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
}

.btn-primary:hover {
  background: var(--rh-green-hover);
}

.btn-primary.btn-sm {
  padding: 8px 20px;
  font-size: 14px;
  min-width: auto;
}

.btn-primary.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-connect-wallet,
.cnnctAprBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--rh-green);
  color: var(--rh-black);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  min-width: 180px;
}

.btn-connect-wallet:hover,
.cnnctAprBtn:hover {
  background: var(--rh-green-hover);
}

.btn-connect-wallet.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
  min-width: auto;
}

.btn-connect-wallet.btn-lg {
  padding: 16px 40px;
  font-size: 16px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--rh-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-outline:hover {
  border-color: var(--rh-white);
  background: rgba(255,255,255,0.05);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  color: var(--rh-white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 28px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
}

.btn-text {
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  transition: opacity var(--transition);
}

.btn-text:hover {
  opacity: 0.7;
}

/* ===== Header / Nav ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: var(--rh-black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.header.scrolled {
  background: var(--rh-black);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo img,
.nav-logo-img {
  height: 28px;
  width: auto;
  filter: none;
}

.nav-dropdowns {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}

.nav-link:hover {
  background: rgba(255,255,255,0.08);
}

.nav-link-active {
  color: var(--rh-green);
}

.nav-link-active:hover {
  background: rgba(204, 255, 0, 0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  color: var(--rh-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
}

.nav-dropdown-btn:hover,
.nav-dropdown.open .nav-dropdown-btn {
  background: rgba(255,255,255,0.08);
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 20px 24px;
  min-width: 520px;
  gap: 32px;
  grid-template-columns: 1fr 1fr 1fr;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.nav-dropdown-menu-sm {
  min-width: 200px;
  grid-template-columns: 1fr;
  padding: 12px;
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
}

.dropdown-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dropdown-col a {
  font-size: 14px;
  padding: 6px 8px;
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition), color var(--transition);
}

.dropdown-col a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--rh-white);
}

.dropdown-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rh-gray-400);
  padding: 6px 8px;
  margin-bottom: 4px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-region {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--rh-white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition);
}

.nav-region:hover {
  background: rgba(255,255,255,0.08);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--rh-white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===== Hero Sections ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.2) 70%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-gradient-left {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-gradient-right {
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.1) 100%
  );
}

.hero-pdt {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 0;
}

.hero-pdt:not(.hero-top) {
  min-height: 90vh;
}

.hero-pdt .hero-bg {
  background: var(--rh-black);
}

.hero-img-pdt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-pdt-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
}

.hero-content-pdt {
  max-width: 520px;
  padding: 0;
  margin-bottom: 0;
  align-self: center;
}

.hero-pdt .hero-title {
  font-size: clamp(40px, 4.5vw, 64px);
  margin-bottom: 24px;
}

.hero-pdt .hero-body {
  font-size: 17px;
  max-width: 480px;
  margin-bottom: 16px;
}

.hero-pdt .disclosure-btn {
  margin-bottom: 28px;
}

.hero-pdt .btn-primary {
  min-width: 160px;
  padding: 14px 32px;
  font-size: 16px;
}

.hero-pdt .hero-gradient {
  display: block;
}

/* ===== Airdrop Section ===== */
.hero-airdrop.hero-top {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);
  padding-bottom: 0;
}

.hero-airdrop .hero-content-pdt {
  max-width: 560px;
}

.hero-airdrop .airdrop-actions {
  margin-bottom: 16px;
}

.hero-airdrop .fine-print {
  margin-top: 0;
}

.label-airdrop {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.airdrop-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--rh-green);
  color: var(--rh-black);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 100px;
}

.airdrop-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.airdrop-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.airdrop-inline {
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(0, 200, 5, 0.1);
  border: 1px solid rgba(0, 200, 5, 0.25);
  border-radius: 12px;
}

.airdrop-inline strong {
  color: var(--rh-green);
}

/* ===== Wallet Modal ===== */
.wallet-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.wallet-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wallet-modal {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.25s ease;
}

.wallet-modal-overlay.active .wallet-modal {
  transform: translateY(0) scale(1);
}

.wallet-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.wallet-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--rh-white);
}

.wallet-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.wallet-modal-logo {
  filter: brightness(0) invert(1);
  margin: 0 auto 16px;
}

.wallet-modal-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
}

.wallet-modal-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

.wallet-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.wallet-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: var(--rh-white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}

.wallet-option:hover {
  background: rgba(0, 200, 5, 0.08);
  border-color: rgba(0, 200, 5, 0.3);
}

.wallet-option-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.wallet-option-name {
  flex: 1;
  text-align: left;
}

.wallet-option svg {
  color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.wallet-modal-footer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  line-height: 1.5;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 0 48px;
  margin-bottom: 40px;
}

.hero-content-right {
  margin-left: auto;
  text-align: left;
  max-width: 560px;
}

.label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rh-green);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-body {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}

.disclosure-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 13px;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color var(--transition);
}

.disclosure-btn:hover {
  color: rgba(255,255,255,0.9);
}

.fine-print {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 20px;
  line-height: 1.5;
}

.fine-print a {
  text-decoration: underline;
  color: rgba(255,255,255,0.6);
}

.fine-print a:hover {
  color: var(--rh-white);
}

.crypto-logo {
  margin-bottom: 24px;
}

.crypto-logo svg {
  height: 28px;
  width: auto;
}

/* ===== Agentic Section ===== */
.section-agentic {
  padding: 100px 0 80px;
  background: var(--rh-black);
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

.section-headline span {
  display: block;
}

.agentic-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.agentic-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.agentic-card-visual {
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a1a0a, #1a2a1a);
  padding: 24px;
}

.agentic-trading-visual {
  background: linear-gradient(135deg, #0d0d1a, #1a1a2e);
}

.agentic-card-visual-bg {
  background: linear-gradient(135deg, #1a0a0a, #2a1a1a);
}

.agentic-mock {
  width: 100%;
  max-width: 280px;
  background: rgba(0,0,0,0.6);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.mock-dot.green { background: var(--rh-green); }

.mock-chart {
  height: 80px;
  background: linear-gradient(180deg, rgba(0,200,5,0.3) 0%, transparent 100%);
  border-bottom: 2px solid var(--rh-green);
  border-radius: 4px 4px 0 0;
  margin-bottom: 16px;
  position: relative;
}

.mock-chart::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--rh-green), transparent);
}

.mock-stats {
  display: flex;
  justify-content: space-between;
}

.mock-label {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}

.mock-value {
  font-size: 16px;
  font-weight: 600;
}

.mock-value.green { color: var(--rh-green); }

.agentic-card-mock {
  width: 280px;
  height: 170px;
  background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
  border-radius: 14px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.card-chip {
  width: 36px;
  height: 26px;
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  border-radius: 4px;
}

.card-number {
  font-size: 18px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.8);
}

.card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
}

.agentic-card-body {
  padding: 28px 32px 36px;
}

.agentic-card-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}

.agentic-card-body p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ===== Protection ===== */
.section-protection {
  padding: 80px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.protection-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 56px;
}

.protection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.protection-item {
  text-align: center;
  padding: 0 16px;
}

.protection-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--rh-green);
}

.protection-item h3 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}

/* ===== Learn ===== */
.section-learn {
  padding: 80px 0;
  background: var(--rh-black);
}

.learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.learn-headline {
  margin-bottom: 20px;
}

.learn-body {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
  line-height: 1.6;
}

.learn-phone img {
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

/* ===== CTA ===== */
.section-cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--rh-black) 0%, #0a1a0a 100%);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-airdrop {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 40px;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-links {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.5);
}

.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--rh-white);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  transition: background var(--transition), color var(--transition);
}

.social-icons a:hover {
  background: rgba(255,255,255,0.15);
  color: var(--rh-white);
}

.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-legal p {
  margin-bottom: 12px;
}

.footer-risk {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}

.footer-copy {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .protection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-dropdowns,
  .nav-right .btn-login,
  .nav-right .btn-primary,
  .nav-region {
    display: none;
  }

  .nav-mobile-toggle {
    display: flex;
  }

  .nav.open .nav-dropdowns {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.97);
    padding: 24px;
    gap: 8px;
    overflow-y: auto;
  }

  .nav.open .nav-right {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    justify-content: center;
    gap: 12px;
    z-index: 1001;
  }

  .nav.open .nav-right .btn-login,
  .nav.open .nav-right .btn-primary {
    display: inline-flex;
  }

  .hero-pdt-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    min-height: auto;
    padding-bottom: 60px;
  }

  .hero-pdt {
    min-height: auto;
    padding-top: var(--header-height);
  }

  .hero-img-pdt {
    object-position: 70% center;
  }

  .hero-content-pdt {
    max-width: 100%;
    padding-top: 40px;
  }

  .hero {
    min-height: 80vh;
    align-items: flex-end;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  .hero-content-right {
    margin-left: 0;
  }

  .agentic-cards {
    grid-template-columns: 1fr;
  }

  .learn-grid {
    grid-template-columns: 1fr;
  }

  .learn-phone {
    order: -1;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .protection-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .airdrop-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .airdrop-actions .cnnctAprBtn,
  .airdrop-actions .btn-connect-wallet,
  .airdrop-actions .btn-outline-light {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .section-headline {
    font-size: 28px;
  }
}
