@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@800&display=swap');

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

:root {
  --teal:       #6FFCDC;
  --teal-dark:  #3ABFAA;
  --teal-light: #6FFCDC;
  --teal-dim:   rgba(111,252,220,0.18);
  --teal-glow:  rgba(111,252,220,0.4);
  --gold:       #FFCA3A;
  --gold-light: #FFD166;
  --gold-mid:   #C8950A;
  --dark:       #000000;
  --dark2:      #080808;
  --mid:        #0D1F1B;
  --card:       #0D1F1B;
  --card2:      #122620;
  --border:     rgba(111,252,220,0.12);
  --border-dim: rgba(255,255,255,0.06);
  --text:       #E2F0EC;
  --muted:      #6B9E94;
  --white:      #ffffff;
  --red:        #FF5C5C;
  --red-dim:    rgba(255,92,92,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--teal-dark); border-radius: 3px; }

/* NAV */
nav {
  position: sticky; top: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 68px;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 800; color: var(--dark);
  position: relative; flex-shrink: 0;
  box-shadow: 0 0 16px var(--teal-glow);
}

.logo-check {
  position: absolute; top: -5px; right: -5px;
  width: 16px; height: 16px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; color: var(--dark); font-weight: 900;
  border: 2px solid var(--dark);
}

.logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 800;
  color: var(--white); text-transform: uppercase;
}

.logo-img { height: 32px; width: auto; display: block; }
footer .logo-img { height: 36px; }

nav .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
nav .nav-links a { color: var(--muted); text-decoration: none; font-size: 13px; font-weight: 500; transition: color 0.2s; }
nav .nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--teal) !important; color: var(--dark) !important;
  padding: 9px 20px; border-radius: 8px; font-weight: 700 !important; font-size: 13px !important;
  box-shadow: 0 0 16px rgba(111,252,220,0.3); transition: all 0.2s !important;
}
.nav-cta:hover { background: var(--teal-light) !important; box-shadow: 0 0 24px rgba(111,252,220,0.5) !important; color: var(--dark) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
  display: none; position: sticky; top: 68px; left: 0; right: 0;
  background: var(--dark2); border-bottom: 1px solid var(--border);
  padding: 20px 5%; z-index: 199; flex-direction: column; gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--text); text-decoration: none; font-size: 15px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border-dim); }
.mobile-menu a:last-child { border-bottom: none; }

/* PAGE HERO */
.page-hero {
  padding: 64px 5% 48px;
  border-bottom: 1px solid var(--border-dim);
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(111,252,220,0.06) 0%, transparent 70%);
}
.page-hero-inner { max-width: 760px; margin: 0 auto; text-align: center; }

.section-label {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--teal); margin-bottom: 12px;
}

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 800;
  letter-spacing: -1px; color: var(--white); margin-bottom: 14px;
}

.page-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* CONTENT */
main { max-width: 760px; margin: 0 auto; padding: 56px 5% 96px; }
main.wide { max-width: 1100px; }

.content h2 {
  font-size: 22px; font-weight: 800; color: var(--white);
  margin: 40px 0 14px; letter-spacing: -0.3px;
}
.content h2:first-child { margin-top: 0; }
.content p { font-size: 15px; color: var(--muted); margin-bottom: 14px; line-height: 1.75; }
.content p strong, .content li strong { color: var(--text); }
.content ul { margin: 0 0 14px 0; padding-left: 20px; }
.content li { font-size: 15px; color: var(--muted); margin-bottom: 8px; line-height: 1.7; }
.content a { color: var(--teal-light); text-decoration: none; border-bottom: 1px solid rgba(111,252,220,0.3); }
.content a:hover { color: var(--teal); }

.updated-tag {
  display: inline-block; font-size: 12px; color: var(--muted);
  background: var(--card); border: 1px solid var(--border-dim);
  border-radius: 100px; padding: 5px 14px; margin-bottom: 8px;
}

/* CARDS GRID (about / blog / press) */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.info-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 22px;
}
.info-card .ic-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--teal-dim); border: 1px solid rgba(111,252,220,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.info-card h3 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.info-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin: 0; }

/* BLOG */
.blog-list { display: flex; flex-direction: column; gap: 16px; }
.blog-post {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 26px 28px;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.blog-post-tag {
  display: inline-block; font-size: 10px; font-weight: 700;
  color: var(--teal-light); background: var(--teal-dim);
  border-radius: 100px; padding: 3px 10px; margin-bottom: 10px;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.blog-post h3 { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.blog-post p { font-size: 13px; color: var(--muted); margin: 0; }
.blog-post-date { font-size: 12px; color: var(--muted); white-space: nowrap; flex-shrink: 0; }

.notify-box {
  margin-top: 36px; background: var(--card2); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; text-align: center;
}
.notify-box h3 { font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.notify-box p { font-size: 13px; color: var(--muted); margin-bottom: 18px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; margin-top: 8px; }
.contact-method {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 20px; background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 14px;
}
.contact-method .cm-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: var(--teal-dim); border: 1px solid rgba(111,252,220,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-method h4 { font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.contact-method p { font-size: 13px; color: var(--muted); margin: 0; }

.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; background: var(--mid); border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 14px 16px;
  font-family: 'Sora', sans-serif; font-size: 14px; color: var(--white);
  outline: none; transition: border-color 0.2s, box-shadow 0.2s; resize: vertical;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(111,252,220,0.12); }
.contact-submit {
  background: var(--teal); color: var(--dark); border: none; border-radius: 10px;
  padding: 14px; font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700;
  cursor: pointer; transition: all 0.25s; box-shadow: 0 4px 20px rgba(111,252,220,0.25);
}
.contact-submit:hover { background: var(--teal-light); transform: translateY(-2px); }
.contact-success { display: none; text-align: center; padding: 20px; }

/* BTN */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: var(--dark);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 700; text-decoration: none;
  transition: all 0.25s; border: none; cursor: pointer;
  box-shadow: 0 0 24px rgba(111,252,220,0.35);
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(111,252,220,0.55); }
.content a.btn-primary { color: var(--dark); border-bottom: none; }
.content a.btn-primary:hover { color: var(--dark); }

/* FOOTER */
footer { background: var(--dark2); border-top: 1px solid var(--border-dim); padding: 52px 5% 32px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; color: var(--muted); margin-top: 14px; max-width: 260px; line-height: 1.65; }
.footer-col h4 { font-size: 11px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--border-dim); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 12px; color: var(--muted); }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 34px; height: 34px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; text-decoration: none; transition: all 0.2s;
  color: var(--white);
}
.social-link:hover { background: var(--teal-dim); border-color: rgba(111,252,220,0.3); box-shadow: 0 0 12px rgba(111,252,220,0.15); }

@media (max-width: 960px) {
  nav .nav-links { display: none; }
  .hamburger { display: flex; }
  .cards-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .blog-post { flex-direction: column; align-items: flex-start; }
}
