@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

:root {
  --navy:    #0b1829;
  --ink:     #142238;
  --teal:    #0f7566;
  --teal2:   #12a08c;
  --gold:    #c9a84c;
  --gold2:   #e8c56b;
  --sand:    #f5f0e8;
  --paper:   #faf8f4;
  --white:   #ffffff;
  --muted:   #6b7280;
  --border:  #e2ddd6;
  --border2: #ccc7bc;
  --text:    #1a2332;
  --text2:   #4a5568;
  --text3:   #8b96a8;
  --shadow:  0 1px 3px rgba(11,24,41,0.08), 0 4px 16px rgba(11,24,41,0.06);
  --shadow2: 0 2px 8px rgba(11,24,41,0.1), 0 12px 40px rgba(11,24,41,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--paper);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ────────────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 24, 41, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.hero-logo-img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.15s;
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-links a.active {
  color: var(--gold2);
  background: rgba(201,168,76,0.12);
}

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 7px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--teal2) !important;
}

/* ── NEWSLETTER ─────────────────────────────────────────────────── */
.newsletter-section {
  background: var(--sand);
  padding: 64px 32px;
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-tag {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}

.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 10px;
}

.newsletter-title em {
  font-style: italic;
  color: var(--teal);
}

.newsletter-body {
  font-size: 15px;
  color: var(--text2);
  line-height: 1.65;
  margin-bottom: 28px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 12px;
}

.newsletter-form input[type=email] {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 13px 18px;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

.newsletter-form input[type=email]:focus {
  border-color: var(--teal);
}

.newsletter-form button {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.newsletter-form button:hover {
  background: var(--teal);
}

.newsletter-fine {
  font-size: 12px;
  color: var(--text3);
  font-family: 'DM Mono', monospace;
}

.newsletter-thanks {
  display: none;
  color: var(--teal);
  font-size: 15px;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 500px) {
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
}
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.4);
  padding: 40px 32px;
  text-align: center;
  font-size: 13px;
  font-family: 'DM Mono', monospace;
  margin-top: 80px;
}

footer .footer-logo {
  margin-bottom: 12px;
}

footer .footer-logo img {
  height: 32px;
  width: auto;
  opacity: 0.7;
}

footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 16px 0;
  flex-wrap: wrap;
}

footer .footer-links a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.15s;
}

footer .footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── PAGE WRAPPER ───────────────────────────────────────────────── */
.page-wrap {
  padding-top: 64px;
  min-height: 100vh;
}

/* ── WHY SECTION ────────────────────────────────────────────────── */
.why-section {
  background: var(--navy);
  padding: 100px 32px;
}

.why-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.why-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.why-headline em {
  font-style: italic;
  color: var(--gold2);
}

.why-subhead {
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  max-width: 700px;
  margin: 0 auto;
}

/* ── TESTIMONIALS ───────────────────────────────────────────────── */
.testimonials-section {
  padding: 100px 32px;
  background: var(--sand);
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 16px;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
  font-family: 'DM Mono', monospace;
}

/* ── SOCIAL ICONS IN FOOTER ─────────────────────────────────────── */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 16px 0;
}

.footer-social a {
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.15s;
}

.footer-social a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}
.coming-soon-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 32px;
}

.coming-soon-inner {
  max-width: 560px;
}

.cs-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(15,117,102,0.08);
  border: 1px solid rgba(15,117,102,0.2);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 28px;
}

.cs-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}

.cs-title em {
  font-style: italic;
  color: var(--teal);
}

.cs-body {
  font-size: 17px;
  color: var(--text2);
  line-height: 1.7;
  margin-bottom: 36px;
}

.cs-notify {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.cs-notify input {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}

.cs-notify input:focus { border-color: var(--teal); }

.cs-notify button {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

.cs-notify button:hover { background: var(--teal); }

/* ── TOOL PAGE WRAPPER ──────────────────────────────────────────── */
.tool-header {
  background: var(--navy);
  padding: 52px 32px 44px;
  text-align: center;
}

.tool-tag {
  display: inline-block;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold2);
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 20px;
}

.tool-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 12px;
}

.tool-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto;
}

.tool-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

.tool-content-wide {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* ── HAMBURGER MENU ─────────────────────────────────────────────── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  transition: all 0.2s;
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(11,24,41,0.98);
    flex-direction: column;
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; width: 100%; }
}
