/* ===== RESET & BASE ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #1a1a1a;
  color: #ffffff;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  width: 75%;
  background: linear-gradient(180deg, #3a1a0a 0%, #2a1208 100%);
  border: 1px solid rgba(255, 100, 50, 0.15);
  border-radius: 50px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 12px 20px 0;
  background: radial-gradient(ellipse at top center, #3a1a0a 0%, #1a1a1a 60%);
}

.navbar-logo {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #e8e8e8;
  text-transform: uppercase;
}

.navbar-logo span {
  color: #ff6b35;
}

.navbar-links {
  display: flex;
  gap: 30px;
}

.navbar-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #cccccc;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: #ff6b35;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #e8e8e8;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 80px;
  background: radial-gradient(ellipse at top center, #3a1a0a 0%, #1a1a1a 60%);
  min-height: 80vh;
  position: relative;
}

.hero-subtitle {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #aaaaaa;
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-title {
  font-size: 86px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title .line1 {
  display: block;
  color: #ffffff;
}

.hero-title .line2 {
  display: block;
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.35)) drop-shadow(0 0 40px rgba(255, 68, 68, 0.15));
}

.hero-tagline {
  font-size: 16px;
  font-weight: 300;
  color: #bbbbbb;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 36px;
  background: linear-gradient(135deg, #ff6b35, #ff4444);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
}

/* ===== CARDS SECTION ===== */
.cards-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  padding: 80px 40px;
  background-color: #1a1a1a;
  flex-wrap: wrap;
}

.glass-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 40px 30px;
  max-width: 340px;
  width: 100%;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 20px rgba(255, 107, 53, 0.08);
  border-color: rgba(255, 255, 255, 0.25);
}

.card-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.glass-card h3 {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e8e8e8;
  margin-bottom: 16px;
}

.glass-card h3 span {
  color: #ff6b35;
}

.glass-card .card-highlight {
  font-size: 14px;
  font-weight: 600;
  color: #dddddd;
  margin-bottom: 14px;
}

.glass-card p,
.glass-card li {
  font-size: 13px;
  font-weight: 300;
  color: #aaaaaa;
  line-height: 1.7;
}

.glass-card ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.glass-card ul li {
  padding: 3px 0;
  position: relative;
  padding-left: 18px;
}

.glass-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #ff6b35;
  font-weight: 700;
}

.glass-card .card-footer-text {
  font-size: 13px;
  color: #aaaaaa;
  font-weight: 300;
  margin-top: 10px;
}

/* ===== LAUNCHING SOON SECTION ===== */
.launching-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 20px;
  background: linear-gradient(180deg, #1a1a1a 0%, #111318 30%, #141821 60%, #1a1a1a 100%);
  min-height: 50vh;
}

.launching-title {
  font-size: 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 16px;
}

.launching-title .launching {
  color: #ffffff;
}

.launching-title .soon {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.35)) drop-shadow(0 0 40px rgba(255, 68, 68, 0.15));
}

.launching-subtitle {
  font-size: 16px;
  font-weight: 300;
  color: #888888;
  letter-spacing: 1px;
}

/* ===== SUBSCRIBE SECTION ===== */
.subscribe-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px 80px;
  background-color: #1a1a1a;
}

.subscribe-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 50px 50px 40px;
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}

.subscribe-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

.subscribe-card h2 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #e8e8e8;
  margin-bottom: 10px;
}

.subscribe-card p {
  font-size: 12px;
  font-weight: 300;
  color: #777777;
  margin-bottom: 30px;
}

.subscribe-form {
  display: flex;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.subscribe-form input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  outline: none;
}

.subscribe-form input::placeholder {
  color: #555555;
}

.subscribe-form button {
  padding: 14px 28px;
  background: linear-gradient(135deg, #ff6b35, #ff4444);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: linear-gradient(135deg, #ff8c42, #ff6b35);
}

/* ===== SOCIAL SECTION ===== */
.social-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #1a1a1a;
}

.social-section h3 {
  font-size: 20px;
  font-weight: 500;
  color: #cccccc;
  margin-bottom: 24px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.social-icon:hover {
  transform: translateY(-3px);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icon.linkedin {
  background: #0077b5;
}

.social-icon.facebook {
  background: #1877f2;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: #ffffff;
}

/* ===== FOOTER ===== */
.footer {
  text-align: center;
  padding: 50px 20px 30px;
  background: linear-gradient(180deg, #1a1a1a 0%, #111111 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #e8e8e8;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.footer-links a {
  font-size: 12px;
  font-weight: 400;
  color: #666666;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ff6b35;
}

.footer-divider {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 20px;
}

.footer-copyright {
  font-size: 11px;
  font-weight: 300;
  color: #444444;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== ABOUT PAGE ===== */
.about-header {
  padding: 50px 40px 30px;
  background: radial-gradient(ellipse at top center, #3a1a0a 0%, #1a1a1a 60%);
}

.about-heading {
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #ffffff;
}

/* Mission Card */
.about-mission-section {
  padding: 0 40px 80px;
  background: radial-gradient(ellipse at top center, #3a1a0a 0%, #1a1a1a 40%);
}

.about-mission-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(30px) saturate(150%);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 55px 60px 45px;
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.about-mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%);
  pointer-events: none;
  border-radius: 16px 16px 0 0;
}

.mission-icon {
  width: 130px;
  height: 130px;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.mission-icon svg {
  width: 100%;
  height: 100%;
}

.mission-logo-img {
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
}

.mission-text {
  font-size: 14px;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.8;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.mission-text:last-child {
  margin-bottom: 0;
}

/* Founder Section */
.founder-section {
  padding: 80px 40px;
  background-color: #1a1a1a;
}

.founder-heading {
  margin-bottom: 50px;
  padding-left: 40px;
}

.founder-heading h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: left;
}

.founder-the {
  color: #ffffff;
  font-weight: 400;
  font-size: 32px;
}

.founder-title {
  color: #ffffff;
  font-weight: 900;
}

.founder-card {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.founder-image-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  position: relative;
  background: #111111;
}

.founder-image-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  pointer-events: none;
}

.founder-image {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.founder-info {
  padding: 20px 0 0;
}

.founder-name {
  font-size: 18px;
  font-weight: 700;
  color: #e8e8e8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 12px;
  font-weight: 400;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.founder-socials {
  display: flex;
  gap: 12px;
}

.founder-social-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.85;
}

.founder-social-icon svg {
  width: 100%;
  height: 100%;
}

.founder-social-icon:hover {
  transform: scale(1.2);
  opacity: 1;
}

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

/* Tablet */
@media (max-width: 1024px) {
  .navbar {
    width: 85%;
  }

  .hero-title {
    font-size: 70px;
  }

  .cards-section {
    padding: 60px 30px;
    gap: 30px;
  }

  .glass-card {
    max-width: 300px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .navbar-wrapper {
    padding: 8px 12px 0;
  }

  .navbar {
    width: 92%;
    padding: 8px 20px;
  }

  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
  }

  .navbar-links.open {
    right: 0;
  }

  .navbar-links a {
    font-size: 16px;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 60px 20px 50px;
    min-height: auto;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-tagline {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 13px;
  }

  .cards-section {
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    gap: 24px;
  }

  .glass-card {
    max-width: 100%;
  }

  .launching-title {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .launching-section {
    padding: 70px 20px;
    min-height: auto;
  }

  .launching-subtitle {
    font-size: 14px;
  }

  .subscribe-section {
    padding: 30px 16px 60px;
  }

  .subscribe-card {
    padding: 36px 24px 30px;
  }

  .subscribe-card h2 {
    font-size: 16px;
    letter-spacing: 1.5px;
  }

  .subscribe-form {
    flex-direction: column;
    border-radius: 8px;
  }

  .subscribe-form input {
    border-radius: 8px 8px 0 0;
  }

  .subscribe-form button {
    border-radius: 0 0 8px 8px;
    padding: 14px;
  }

  .social-section {
    padding: 40px 20px;
  }

  .social-section h3 {
    font-size: 18px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer {
    padding: 40px 20px 24px;
  }

  .footer-logo {
    font-size: 16px;
  }

  .footer-links {
    gap: 18px;
    margin-bottom: 20px;
  }

  .footer-links a {
    font-size: 11px;
  }

  /* About page mobile */
  .about-header {
    padding: 40px 20px 20px;
  }

  .about-heading {
    font-size: 28px;
  }

  .about-mission-section {
    padding: 0 20px 60px;
  }

  .about-mission-card {
    padding: 36px 24px 30px;
  }

  .mission-text {
    font-size: 12px;
  }

  .founder-section {
    padding: 60px 20px;
  }

  .founder-heading h2 {
    font-size: 32px;
  }

  .founder-the {
    font-size: 24px;
  }

  .founder-image {
    height: 320px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .navbar {
    width: 95%;
    padding: 8px 16px;
  }

  .navbar-logo {
    font-size: 13px;
    letter-spacing: 1.5px;
  }

  .hero {
    padding: 50px 16px 40px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
  }

  .hero-tagline {
    font-size: 13px;
  }

  .hero-btn {
    padding: 11px 24px;
    font-size: 12px;
  }

  .cards-section {
    padding: 40px 16px;
    gap: 20px;
  }

  .glass-card {
    padding: 30px 20px;
  }

  .glass-card h3 {
    font-size: 15px;
  }

  .launching-title {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .launching-section {
    padding: 50px 16px;
  }

  .launching-subtitle {
    font-size: 13px;
  }

  .subscribe-card {
    padding: 30px 18px 24px;
  }

  .subscribe-card h2 {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .subscribe-card p {
    font-size: 11px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
}

/* Extra small */
@media (max-width: 360px) {
  .hero-title {
    font-size: 30px;
  }

  .navbar {
    width: 96%;
    padding: 6px 12px;
  }

  .navbar-logo {
    font-size: 12px;
  }

  .launching-title {
    font-size: 24px;
  }
}