/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.wrap {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(10px);
}

header img {
  height: 40px;
}

header nav {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 500;
}

header nav a {
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

header nav a:hover {
  opacity: 1;
}

.cta-btn {
  background: linear-gradient(135deg, #ffd700, #ffb700); /* Gold gradient */
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  color: #000; /* Better contrast on gold */
}

.cta-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* Golden glow */
}

.pill {
  border: 1px solid #444;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.pill:hover {
  opacity: 1;
  border-color: #777;
}

/* HERO */
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5rem 0 6rem;
  gap: 3rem;
}

.hero-left {
  flex: 1 1 500px;
}

.hero-right {
  flex: 1 1 350px;
  display: flex;
  justify-content: center;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #bbb;
}

.title {
  font-size: clamp(2rem, 5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #aaa;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.small-txt {
  font-size: 0.8rem;
  color: #666;
}

/* PHONE MOCKUP */
.mock {
  width: 320px;
  height: 600px;
  background: #111;
  border-radius: 30px;
  padding: 1rem;
  box-shadow: 0 0 40px rgba(255,255,255,0.05);
}

.screen {
  background: linear-gradient(180deg, #1e1e1e, #111);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1.2rem;
}

.phone-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.badge {
  background: linear-gradient(135deg, #ff0080, #8a2be2);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.item {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #222;
}

.item:last-child {
  border-bottom: none;
}

:root {
  --muted: #888;
}

/* PANELS */
.panel {
  padding: 5rem 0;
  background: #000;
  border-top: 1px solid #111;
}

.panel:nth-child(even) {
  background: linear-gradient(180deg, #0a0a0a, #000);
}

.panel-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.panel h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.panel p {
  font-size: 1.05rem;
  color: #aaa;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature {
  text-align: left;
  padding: 1.5rem;
  background: #111;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
}

.feature h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.feature p {
  font-size: 0.95rem;
  color: #999;
  line-height: 1.5;
}

/* PARTNERS */
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  align-items: center;
}

.partners img {
  opacity: 0.75;
  transition: opacity 0.3s ease;
}

.partners img:hover {
  opacity: 1;
}

/* FOOTER */
footer.site {
  padding: 3rem 0;
  border-top: 1px solid #111;
  text-align: center;
  background: #000;
}

.foot-inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

.foot-inner img {
  height: 35px;
  margin: 0 auto 1.2rem;
}

.copyright {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.foot-links a {
  color: #aaa;
  transition: color 0.3s ease;
}

.foot-links a:hover {
  color: #fff;
}

/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Fix alignment for policy/legal pages */
.policy-content,
.policy-content h2,
.policy-content p,
.policy-content ul,
.policy-content li {
  text-align: left !important;
}

/* =====================
   RESPONSIVE FIXES
   ===================== */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  header nav {
    gap: 1rem;
    font-size: 0.9rem;
  }
  .hero {
    padding: 4rem 0;
    gap: 2rem;
  }
  .mock {
    width: 280px;
    height: 520px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  /* Header */
  header {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  /* Hero */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 3rem 0;
  }

  .hero-left {
    flex: 1 1 auto;
    order: 1;
  }

  .hero-right {
    flex: 1 1 auto;
    order: 2;
  }

  .hero-actions {
    justify-content: center;
  }

  .subtitle {
    font-size: 1rem;
  }

  /* Features grid */
  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Phone mock */
  .mock {
    width: 240px;
    height: 460px;
  }

  /* Partners */
  .partners {
    gap: 1.5rem;
  }
}

/* Small mobile (<= 480px) */
@media (max-width: 480px) {
  header img {
    height: 32px;
  }

  .title {
    font-size: 1.8rem;
  }

  .cta-btn,
  .pill {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
  }

  .mock {
    width: 200px;
    height: 400px;
  }

  footer.site {
    padding: 2rem 0;
  }

  .foot-links {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/* =====================
   ABOUT PAGE RESPONSIVE
   ===================== */

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .about-section {
    gap: 2rem;
    padding: 4rem 1.5rem;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 3rem 1.2rem;
  }

  .about-section:nth-child(even) {
    flex-direction: column; /* cancel alternating for mobile */
  }

  .about-text {
    order: 1;
  }

  .about-visual {
    order: 2;
    width: 100%;
  }

  .about-visual img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
  }

  .about-text h2 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .values {
    padding: 4rem 1.2rem;
  }

  .values h2 {
    font-size: 1.6rem;
  }

  .value-card {
    padding: 1.5rem;
  }

  .about-cta {
    padding: 3rem 1.2rem;
  }
}

/* Small mobile (<= 480px) */
@media (max-width: 480px) {
  .about-hero {
    padding: 6rem 1rem 4rem;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-hero p {
    font-size: 1rem;
  }

  .about-text h2 {
    font-size: 1.4rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .about-cta h2 {
    font-size: 1.5rem;
  }

  .about-cta a {
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
  }
}

.about-visual img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }
  .about-visual {
    display: none;
  }
  .about-section:nth-child(even) {
    flex-direction: column
  }
}

/* FINAL OVERRIDE: hide banners in mobile */
@media (max-width: 768px) {
  .about-visual {
    display: none !important;
  }
}

