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

:root {
  --primary: #0f172a;
  --primary-gradient: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  --accent: #d4af37;
  --accent-light: #fef08a;
  --accent-gradient: linear-gradient(135deg, #d4af37, #fde047, #ca8a04);
  --bg-color: #f8fafc;
  --surface: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: rgba(15, 23, 42, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-color);
  line-height: 1.7;
}

/* Base Settings */
img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatLogo {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* Header */
.site-header {
  background: var(--surface);
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}

.site-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.logo-wrap {
  flex: 0 0 280px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.logo-image {
  max-width: 280px;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  animation: floatLogo 8s ease-in-out infinite;
}

.logo-wrap:hover .logo-image {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.logo-caption {
  margin-top: 1.25rem;
  text-align: center;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.logo-title {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

.logo-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-text {
  flex: 1 1 350px;
}

.hero-tag {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--primary-gradient);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

h1 {
  font-size: 3.2rem;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease-out;
}

.hero-subtitle {
  margin: 0 0 2rem;
  color: var(--text-muted);
  font-size: 1.15rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-top: 1rem;
  opacity: 0.8;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-block {
  width: 100%;
}

/* Sections */
main {
  background-color: var(--bg-color);
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-light {
  background-color: var(--surface);
  background-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.01));
}

.section-accent {
  background: var(--primary-gradient);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.section-accent::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2.5L22.5 16 25 13.5V0h2v13.5L29.5 16 32 18.5V20h8v2h-8v1.5L29.5 26 27 28.5V40h-2V28.5L22.5 26 20 23.5V20.5z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-muted {
  background-color: #f1f5f9;
}

.section-header {
  margin-bottom: 3.5rem;
  max-width: 700px;
  position: relative;
  z-index: 10;
}

.section-header.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin: 0 0 1rem;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.15rem;
}

.section-header.light h2 {
  color: #ffffff;
}

.section-header.light p {
  color: #cbd5e1;
}

/* Grid & Cards */
.grid-3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background-color: var(--surface);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 175, 55, 0.3);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h3 {
  margin: 0 0 1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* Steps */
.steps {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 10;
}

.step {
  background-color: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
}

.step::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent 60%);
  pointer-events: none;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-gradient);
  color: var(--primary);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.step h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.step p {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

/* FAQ */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

details {
  background-color: var(--surface);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

details:hover {
  border-color: rgba(15, 23, 42, 0.2);
}

details[open] {
  background-color: #ffffff;
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: var(--shadow-md);
}

summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  font-size: 1.1rem;
  position: relative;
  padding-right: 2rem;
  transition: var(--transition);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-weight: 400;
  font-size: 1.5rem;
  transition: var(--transition);
}

details[open] summary::after {
  content: "−";
  color: var(--primary);
}

details p {
  margin: 1rem 0 0.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.faq-note {
  margin-top: 2rem;
  text-align: center;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Contact Section */
.contact-grid {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1.2fr 1.1fr;
  align-items: center;
}

.contact-info h2 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
}

.contact-info p {
  margin: 0 0 1.5rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.contact-list li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-list strong {
  color: var(--primary);
}

.contact-list a {
  color: var(--primary);
  font-weight: 500;
  position: relative;
}

.contact-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.contact-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.contact-note {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-form-card {
  background-color: var(--surface);
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.8);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: var(--accent-gradient);
  z-index: -1;
  border-radius: 1.6rem;
  opacity: 0.15;
}

.contact-form-card h3 {
  margin: 0 0 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.interest-form .form-row {
  margin-bottom: 1.25rem;
}

.interest-form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--primary);
}

.interest-form input,
.interest-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-main);
  background: var(--bg-color);
  outline: none;
  transition: var(--transition);
}

.interest-form input:focus,
.interest-form textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
  background-color: #ffffff;
}

.form-row-inline {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-footnote {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 3rem 0;
  border-top: 4px solid #d4af37;
}

.footer-inner {
  text-align: center;
  font-size: 0.95rem;
}

.footer-inner p {
  margin: 0.5rem 0;
}

/* Launch Page Enhancements */
.launch-page {
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #0f172a !important;
  background: radial-gradient(ellipse at top, #1e293b 0%, #0f172a 50%, #020617 100%) !important;
  color: #d4af37;
}

.launch-hero {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  position: relative;
  overflow: hidden;
}

.launch-inner {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.launch-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(1rem, 3vh, 2rem);
}

.launch-logo {
  max-width: 250px;
  max-height: 30vh;
  width: auto;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  animation: floatLogo 6s ease-in-out infinite;
}

.launch-logo-text {
  margin-top: clamp(0.5rem, 2vh, 1.5rem);
}

.launch-name {
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
  color: #fde68a;
}

.launch-tagline {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: #94a3b8;
  margin-top: 0.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.launch-heading {
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  margin: clamp(1rem, 3vh, 1.8rem) 0 clamp(1rem, 3vh, 1.6rem);
  color: #fde68a;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.launch-subtitle {
  margin: 0 0 clamp(1.5rem, 4vh, 2.5rem);
  font-size: clamp(1rem, 3vw, 1.15rem);
  color: #fcd34d;
  line-height: 1.6;
  opacity: 0.9;
}

.launch-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #d4af37, #fde047, #ca8a04);
  color: #1e293b;
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(1rem, 3vw, 1.15rem);
  padding: 0.9rem 2.8rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.launch-button::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: linear-gradient(to bottom right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
  transform: rotate(45deg) translate(-100%, 100%);
  transition: transform 0.6s;
}

.launch-button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.4);
}

.launch-button:hover::after {
  transform: rotate(45deg) translate(100%, -100%);
}

.launch-footnote {
  margin-top: clamp(1rem, 2vh, 1.5rem);
  font-size: 0.9rem;
  color: #d4af37;
  opacity: 0.7;
}

.launch-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(212, 175, 55, 0.15), transparent 60%);
  opacity: 0.8;
  pointer-events: none;
  z-index: 1;
  animation: pulseGlow 5s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.1); opacity: 1; }
}

.launch-particles {
  position: absolute;
  inset: -20%;
  background-repeat: no-repeat;
  opacity: 0.3;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.launch-particles-a {
  background-image: radial-gradient(circle, #d4af37 1px, transparent 1px);
  background-size: 30px 30px;
  animation: floatParticlesA 25s linear infinite;
}

.launch-particles-b {
  background-image: radial-gradient(circle, #fde047 1.5px, transparent 1px);
  background-size: 40px 40px;
  animation: floatParticlesB 35s linear infinite;
}

body.launching .launch-button {
  transform: scale(0.9);
  opacity: 0;
}

body.launching .launch-inner {
  animation: launchZoomOut 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes launchZoomOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes floatParticlesA {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100px, -80px, 0); }
}

@keyframes floatParticlesB {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(120px, 90px, 0); }
}

/* Responsive */
@media (max-width: 992px) {
  .header-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-note {
    margin: 1rem auto 0;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .steps {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  .section-header h2 { font-size: 2rem; }
  .launch-heading { font-size: 2.2rem; }
  .section { padding: 4rem 0; }
}

@media (max-width: 576px) {
  .grid-3 { grid-template-columns: 1fr; }
  .form-row-inline { grid-template-columns: 1fr; }
  h1 { font-size: 2.2rem; }
  .btn { width: 100%; display: flex; }
}
