/* ===================== RESET ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #eef0f5;
  color: #111;
}

/* ===================== MODAL ===================== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: white;
  border-radius: 24px;
  padding: 48px 40px 40px;
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  color: #888;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal-icon {
  font-size: 44px;
  margin-bottom: 14px;
}

.modal-box h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
}

.modal-box p {
  color: #666;
  font-size: 15px;
  margin-bottom: 6px;
}

.modal-phone {
  font-size: 32px;
  font-weight: 800;
  color: #5f3af2;
  margin: 20px 0 10px;
  letter-spacing: -0.5px;
}

.modal-hours {
  color: #999;
  font-size: 13px;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky;
  top: 0;
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 40px;
  z-index: 100;
  border-bottom: 1px solid #f0f0f2;
}

.navbar-left {
  display: flex;
  align-items: center;
  gap: 36px;
}

.logo {
  color: #5f3af2;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #5f3af2;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-icon {
  width: 20px;
  height: 20px;
  stroke: #555;
  cursor: pointer;
}

.nav-search-text {
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.nav-slash {
  font-size: 13px;
  color: #bbb;
  background: #f5f5f5;
  padding: 2px 7px;
  border-radius: 5px;
  border: 1px solid #ddd;
}

.btn-login {
  background: none;
  border: 1.5px solid #d5cef8;
  color: #5f3af2;
  padding: 8px 22px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
}

.btn-login:hover {
  background: #f3efff;
}

/* ===================== BUTTONS ===================== */
.btn {
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: opacity 0.2s, transform 0.1s;
  display: inline-block;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn.primary {
  background: #5f3af2;
  color: white;
}

.btn.small {
  padding: 9px 20px;
}

.btn.big {
  padding: 14px 34px;
}

.btn.light {
  background: #ede9ff;
  color: #5f3af2;
  padding: 12px 24px;
}

.btn.full {
  width: 100%;
}

.signup-btn {
  background: #5f3af2;
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.signup-btn:hover {
  opacity: 0.88;
}

.pill-btn {
  background: #ede9ff;
  color: #5f3af2;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s;
}

.pill-btn:hover {
  background: #ddd5fc;
}

/* ===================== WARNING ===================== */
.warning {
  background: #1a1830;
  color: #bbb;
  text-align: center;
  padding: 12px 24px;
  font-size: 13px;
  line-height: 1.5;
}

.warning a {
  color: #9b7cf8;
  text-decoration: none;
}

.warning a:hover {
  text-decoration: underline;
}

/* ===================== HERO ===================== */
.hero {
  display: flex;
  align-items: center;
  padding: 80px 80px 60px;
  gap: 60px;
  background: #ffff;
  min-height: 580px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 20px;
  color: #0d0d14;
}

.hero-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-email {
  padding: 14px 20px;
  border: 2px solid #d0c8f8;
  border-radius: 30px;
  font-size: 15px;
  outline: none;
  width: 260px;
  transition: border-color 0.2s;
}

.hero-email:focus {
  border-color: #5f3af2;
}

.hero-qr {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #555;
  font-size: 14px;
}

.qr-box {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.hero-media {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 290px;
  height: auto;
  border-radius: 36px;

  object-fit: cover;
}

/* ===================== STATS ===================== */
.stats {
  background: white;
  margin: 0 40px 40px;
  padding: 40px 60px;
  border-radius: 20px;
  text-align: center;
}

.stats-title {
  color: #666;
  font-size: 15px;
  margin-bottom: 30px;
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-item h2 {
  font-size: 44px;
  font-weight: 700;
  color: #111;
}

.stat-item span {
  color: #777;
  font-size: 14px;
  display: block;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: #e8e8e8;
  margin: 0 20px;
}

/* ===================== UK SECTION ===================== */
.uk {
  padding: 40px 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uk h2 {
  font-size: 30px;
  font-weight: 700;
}

.uk-arrows {
  display: flex;
  gap: 10px;
}

.uk-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #efefef;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #444;
}

.uk-arrow:hover {
  background: #e0dcf8;
  color: #5f3af2;
}

/* ===================== NEWS CARDS ===================== */
.news-section {
  padding: 0 40px 40px;
  overflow: hidden;
}

.news-layout {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.news-layout::-webkit-scrollbar {
  display: none;
}

.card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  min-width: 250px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  cursor: pointer;
}

.card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.card h3 {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 16px 6px;
  line-height: 1.4;
}

.card p {
  font-size: 13px;
  color: #888;
  padding: 0 16px 16px;
}

/* ===================== CRYPTO PORTFOLIO ===================== */
.crypto {
  padding: 60px 40px;
  text-align: center;
  background: #eef0f5;
}

.crypto h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 28px;
}

.crypto-tabs {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  background: #e4e6ec;
  border-radius: 30px;
  padding: 4px;
  display: inline-flex;
}

.tab {
  padding: 10px 24px;
  border-radius: 25px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  transition: background 0.2s, color 0.2s;
}

.tab.active {
  background: white;
  color: #111;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.ticker-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 8px;
}

.ticker-item {
  background: white;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.ticker-item:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.price {
  font-weight: 600;
  color: #111;
}

.change {
  font-weight: 600;
  font-size: 13px;
}

.change.up {
  color: #16a34a;
}

.change.down {
  color: #dc2626;
}

/* ===================== WHY KRAKEN ===================== */
.why {
  padding: 60px 40px;
  background: #eef0f5;
}

.why h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.why-card h3 {
  font-size: 22px;
  font-weight: 700;
}

.why-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.why-card img {
  width: 100%;
  border-radius: 14px;
  margin-top: auto;
  object-fit: cover;
  height: 220px;
}

/* ===================== CTA ===================== */
.cta {
  padding: 10px 40px 40px;
  text-align: center;
}

/* ===================== EARN ===================== */
.earn {
  padding: 60px 40px 20px;
  background: #eef0f5;
}

.earn h2 {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.earn > p {
  text-align: center;
  color: #666;
  font-size: 15px;
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.earn-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.earn-item {
  background: white;
  border-radius: 20px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  gap: 12px;
  transition: box-shadow 0.2s;
}

.earn-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.09);
}

.left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.left img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.left h4 {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.left span {
  color: #888;
  font-size: 12px;
}

.apy {
  background: #d1f2e3;
  color: #166a47;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
}

/* ===================== EARN CTA ===================== */
.earn-cta {
  text-align: center;
  padding: 50px 40px;
  background: #eef0f5;
}

.earn-cta h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

/* ===================== DISCLAIMER ===================== */
.disclaimer {
  text-align: center;
  padding: 20px 60px 40px;
  font-size: 13px;
  color: #888;
  line-height: 1.7;
  background: #eef0f5;
}

.disclaimer p {
  margin-bottom: 12px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer span {
  color: #5f3af2;
  cursor: pointer;
}

/* ===================== PRO SECTION ===================== */
.pro {
  background: #06030f;
  color: white;
  text-align: center;
  padding: 80px 40px 60px;
}

.pro-top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}


.logo-dot {
  width: 22px;
  height: 22px;
  background: #5f3af2;
  border-radius: 50%;
  color:#5f3af2; 
  display: inline-block;
}

.pro-label {
  background: #1e1630;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
}

.pro h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 640px;
  margin: 0 auto 40px;
}

.pro-placeholder {
  background: #0e0a1e;
  border: 1px solid #2a1f4a;
  border-radius: 16px;
  padding: 0;
  height: 520px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background-image: url("img/pro.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ===================== FEATURES (DARK) ===================== */
.features {
  background: #06030f;
  color: white;
  padding: 60px 40px 40px;
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.feat-icon {
  font-size: 32px;
  color: white;
}

.feature h3 {
  font-size: 20px;
  font-weight: 700;
}

.feature p {
  color: #999;
  font-size: 14px;
  line-height: 1.6;
}

/* ===================== FEATURES BOTTOM ===================== */
.features-bottom {
  background: #06030f;
  padding: 0 40px 60px;
  display: flex;
  justify-content: center;
}

.final-card {
  background: #12102a;
  border-radius: 20px;
  padding: 40px 60px;
  text-align: center;
  color: white;
  max-width: 600px;
  width: 100%;
}

.final-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: white;
}

/* ===================== FINAL HERO ===================== */
.final-hero {
  background: linear-gradient(135deg, #7b3ff2, #4b1fbf);
  color: white;
  text-align: center;
  padding: 100px 40px;
}

.final-hero h1 {
  font-size: 50px;
  font-weight: 800;
  margin-bottom: 14px;
}

.final-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

/* ===================== LEGAL ===================== */
.legal {
  padding: 40px 80px;
  font-size: 13px;
  color: #888;
  line-height: 1.8;
  background: #eef0f5;
}

.legal p {
  margin-bottom: 14px;
}

.legal span {
  color: #5f3af2;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===================== PLATFORM ===================== */
.platform {
  padding: 60px 60px;
  background: white;
}

.platform-left {
  max-width: 400px;
}

.platform h2 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.2;
}

.apps {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.app {
  text-align: center;
}

.app-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 18px;
  color: white;
  margin-bottom: 6px;
}

.app-purple {
  background: linear-gradient(135deg, #5f3af2, #4020c0);
  font-size: 13px;
  letter-spacing: 1px;
}

.app-purple2 {
  background: #7b5cf8;
}

.app-dark {
  background: #111;
  font-size: 22px;
}

.app-light {
  background: #e8e4ff;
  color: #5f3af2;
}

.app span {
  display: block;
  font-size: 13px;
  color: #666;
}

.platform-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===================== FOOTER LINKS ===================== */
.footer-links {
  background: white;
  padding: 50px 60px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  border-top: 1px solid #eeeeee;
}

.col h4 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 16px;
  color: #111;
}

.col p {
  color: #666;
  font-size: 14px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

.col p:hover {
  color: #5f3af2;
}

/* ===================== BOTTOM BAR ===================== */
.bottom {
  background: white;
  border-top: 1px solid #eee;
  padding: 24px 60px;
}

.bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}

.bottom-links p {
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: color 0.2s;
}

.bottom-links p:hover {
  color: #5f3af2;
}

.bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f0f0f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  color: #444;
  transition: background 0.2s;
}

.socials span:hover {
  background: #e0dcf8;
  color: #5f3af2;
}

.copyright {
  font-size: 13px;
  color: #999;
}

.tiny {
  font-size: 12px;
  color: #bbb;
  line-height: 1.7;
}

/* ===================== MOBILE RESPONSIVE ===================== */
@media (max-width: 900px) {
  /* Navbar */
  .navbar {
    padding: 12px 20px;
  }
  .nav-links {
    display: none;
  }
  .nav-search-text,
  .nav-slash {
    display: none;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    padding: 40px 24px;
    gap: 30px;
    min-height: unset;
  }
  .hero-text h1 {
    font-size: 36px;
  }
  .hero-text p {
    font-size: 16px;
  }
  .hero-media {
    width: 100%;
    justify-content: center;
  }
  .hero-img {
    width: 100%;
    max-width: 340px;
  }

  /* Stats */
  .stats {
    margin: 0 16px 24px;
    padding: 28px 20px;
  }
  .stats-grid {
    flex-direction: column;
    gap: 20px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
    margin: 0 auto;
  }

  /* UK */
  .uk {
    padding: 28px 20px 14px;
  }
  .uk h2 {
    font-size: 22px;
  }

  /* News */
  .news-section {
    padding: 0 20px 30px;
  }

  /* Crypto */
  .crypto {
    padding: 40px 20px;
  }
  .crypto h2 {
    font-size: 28px;
  }

  /* Why */
  .why {
    padding: 40px 20px;
  }
  .why h2 {
    font-size: 28px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta {
    padding: 10px 20px 30px;
  }

  /* Earn */
  .earn {
    padding: 40px 20px 16px;
  }
  .earn h2 {
    font-size: 26px;
  }
  .earn-list {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }

  /* Earn CTA */
  .earn-cta {
    padding: 30px 24px;
  }
  .earn-cta h3 {
    font-size: 22px;
  }

  /* Disclaimer */
  .disclaimer {
    padding: 16px 24px 30px;
  }

  /* Pro */
  .pro {
    padding: 50px 20px 40px;
  }
  .pro h2 {
    font-size: 30px;
  }
  .pro-placeholder {
    height: 320px;
    background-size: contain;
  }

  /* Features */
  .features {
    padding: 40px 20px 30px;
  }
  .features-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Features bottom */
  .features-bottom {
    padding: 0 20px 40px;
  }
  .final-card {
    padding: 30px 24px;
  }

  /* Final hero */
  .final-hero {
    padding: 60px 24px;
  }
  .final-hero h1 {
    font-size: 34px;
  }

  /* Legal */
  .legal {
    padding: 30px 24px;
  }

  /* Platform */
  .platform {
    padding: 40px 24px;
  }
  .platform-left {
    max-width: 100%;
  }
  .platform-buttons {
    flex-direction: column;
  }
  .platform-buttons .btn {
    width: 100%;
    text-align: center;
  }

  /* Footer links */
  .footer-links {
    padding: 30px 24px;
    grid-template-columns: repeat(2, 1fr);
  }

  /* Bottom bar */
  .bottom {
    padding: 20px 24px;
  }
  .bottom-links {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* Navbar */
  .navbar {
    padding: 10px 16px;
  }
  .btn-login {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 30px 16px;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-email {
    width: 100%;
  }
  .signup-btn {
    width: 100%;
    text-align: center;
  }

  /* Crypto tabs */
  .crypto-tabs {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tab {
    padding: 8px 14px;
    font-size: 13px;
  }

  /* Why */
  .why-card img {
    height: 180px;
  }

  /* Pro */
  .pro-placeholder {
    height: 220px;
  }

  /* Earn */
  .earn-list {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
  }

  /* Final hero */
  .final-hero h1 {
    font-size: 26px;
  }
  .final-hero p {
    font-size: 15px;
  }
}
