/* Basic Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #0f172a;
  background: #020617;
  background: radial-gradient(circle at top, #1e293b 0, #020617 45%, #020617 100%);
  line-height: 1.6;
}

/* Layout & Containers */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo img {
  height: 40px;
  display: block;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav-link {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-link:hover {
  color: #ffffff;
  border-color: rgba(236, 72, 153, 0.5);
}

.nav-link.active {
  color: #ffffff;
  border-color: #ec4899;
}

/* Hero */
.hero {
  padding: 4.5rem 0 3.5rem;
}

.hero-inner {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-inner {
    grid-template-columns: 3fr 2fr;
  }
}

.hero-text h1 {
  font-size: clamp(2.3rem, 3.3vw + 1rem, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #a855f7, #ec4899, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text p {
  color: #cbd5f5;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0.5rem;
}

.hero-subtext {
  font-size: 0.9rem;
  color: #9ca3af;
  max-width: 30rem;
}

/* Highlight Card */
.hero-highlight-card {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.45), transparent 55%),
              radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.35), transparent 55%),
              rgba(15, 23, 42, 0.92);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.hero-highlight-card h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.hero-highlight-card ul {
  list-style: none;
  padding-left: 1.1rem;
}

.hero-highlight-card li {
  position: relative;
  margin: 0.3rem 0;
  font-size: 0.95rem;
}

.hero-highlight-card li::before {
  content: "";
  position: absolute;
  left: -0.8rem;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.12s ease, box-shadow 0.12s ease,
    background 0.12s ease, border-color 0.12s ease;
  white-space: nowrap;
}

.btn.primary {
  background: linear-gradient(90deg, #a855f7, #ec4899);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.35);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(236, 72, 153, 0.45);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.7);
  color: #e5e7eb;
}

.btn.ghost:hover {
  border-color: #ec4899;
  color: #ffffff;
}

.btn.full-width {
  width: 100%;
}

/* Sections */
.section {
  padding: 3.5rem 0;
  background: transparent;
}

.section-alt {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.8), #020617);
}

.section-title {
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 0.75rem;
  color: #e5e7eb;
}

.section-intro {
  max-width: 36rem;
  margin: 0 auto 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Grids & Cards */
.grid-3 {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.card {
  border-radius: 1.25rem;
  padding: 1.5rem 1.4rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e5e7eb;
}

.card.soft {
  background: rgba(15, 23, 42, 0.9);
}

.card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.card p {
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* Page Hero */
.page-hero {
  padding: 3rem 0 2rem;
}

.page-hero h1 {
  font-size: 2rem;
  background: linear-gradient(90deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 40rem;
  color: #cbd5f5;
}

/* About page */
.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-grid p {
  color: #cbd5f5;
}

.check-list {
  list-style: none;
  margin-top: 0.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin: 0.4rem 0;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.9rem;
  background: linear-gradient(135deg, #a855f7, #ec4899);
  -webkit-background-clip: text;
  color: transparent;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 1.1fr 1.1fr;
  }
}

/* better visibility for left column */
.contact-copy h2,
.contact-copy h3,
.contact-copy p {
  color: #e5e7eb;
}

.contact-copy a {
  color: #cbd5f5;
}

.contact-info h3 {
  font-size: 0.95rem;
  margin-top: 1.05rem;
  margin-bottom: 0.1rem;
  color: #e5e7eb;
}

.contact-info p,
.contact-info a {
  font-size: 0.95rem;
  color: #cbd5f5;
  text-decoration: none;
}

/* Form */
.contact-form {
  border-radius: 1.25rem;
  padding: 1.75rem 1.5rem;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.form-group {
  margin-bottom: 1.1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.85);
  padding: 0.6rem 0.75rem;
  color: #e5e7eb;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease,
    background 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #ec4899;
  box-shadow: 0 0 0 1px rgba(236, 72, 153, 0.5);
  background: rgba(15, 23, 42, 0.95);
}

.form-note {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

/* Status message */
.form-status {
  margin-bottom: 1rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.85rem;
  font-size: 0.9rem;
  display: none;
}

.form-status.success {
  display: block;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.6);
  color: #bbf7d0;
}

.form-status.error {
  display: block;
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #fecaca;
}

/* CTA Section */
.cta-inner {
  border-radius: 1.5rem;
  padding: 1.8rem 1.6rem;
  background: radial-gradient(circle at top left, rgba(129, 140, 248, 0.45), transparent 55%),
              radial-gradient(circle at bottom right, rgba(236, 72, 153, 0.35), transparent 55%),
              rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
}

.cta-inner h2 {
  color: #e5e7eb;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}

.cta-inner p {
  color: #cbd5f5;
  max-width: 34rem;
}

@media (min-width: 800px) {
  .cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
  padding: 1.5rem 0 2rem;
  margin-top: 1rem;
}

.footer-inner {
  text-align: center;
  color: #9ca3af;
  font-size: 0.9rem;
}

.footer-sub {
  margin-top: 0.2rem;
  color: #6b7280;
}

/* Small screens */
@media (max-width: 640px) {
  .header-inner {
    height: 64px;
  }

  .nav {
    gap: 0.9rem;
    font-size: 0.9rem;
  }

  .hero {
    padding-top: 3.3rem;
  }

  .hero-highlight-card {
    order: -1;
  }
}


@media (max-width: 640px) {
  .logo img {
    height: 28px !important;
  }
}
h2,
h3{
  color: #e5e7eb;
}