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

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

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #F7F6F3;
  color: #1A1A2E;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection {
  background: #E8377A;
  color: #fff;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.15;
  color: #1A1A2E;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

p, span, li, td, th {
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

h1 {
  font-size: clamp(2.4rem, 5vw + 0.5rem, 4.2rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw + 0.3rem, 3rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.3rem, 2vw + 0.2rem, 1.75rem);
}

h4 {
  font-size: clamp(1.1rem, 1.5vw + 0.1rem, 1.3rem);
}

p {
  font-size: clamp(0.95rem, 1vw + 0.15rem, 1.1rem);
  color: #4A4A5A;
  max-width: 65ch;
}

.lead-paragraph {
  font-size: clamp(1.1rem, 1.5vw + 0.2rem, 1.35rem);
  color: #5A5A6A;
  line-height: 1.75;
  max-width: 55ch;
}

.body-text {
  font-size: clamp(0.95rem, 1vw + 0.15rem, 1.05rem);
  color: #5A5A6A;
  line-height: 1.8;
  max-width: 60ch;
}

.eyebrow-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #E8377A;
  margin-bottom: 0.75rem;
  display: block;
}

/* ─── LAYOUT ─── */

.page-wrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.section-wrapper {
  width: 100%;
  padding: clamp(3.5rem, 8vw, 7rem) 0;
}

.section-heading {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
}

.container-centered {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

/* ─── HEADER / NAV ─── */

.site-header {
  width: 100%;
  background: rgba(247, 246, 243, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 230, 225, 0.8);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  position: relative;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-start;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #4A4A5A;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #E8377A;
}

.nav-link.active {
  color: #1A1A2E;
  font-weight: 600;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #1A1A2E;
  letter-spacing: -0.02em;
}

.site-logo-text span {
  color: #E8377A;
}

.logo-icon {
  width: 32px;
  height: 32px;
}

.header-cta {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  background: #1A1A2E;
  color: #fff;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.header-cta:hover {
  background: #E8377A;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232, 55, 122, 0.3);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A2E;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ─── HERO ─── */

.page-hero {
  width: 100%;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5.5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232, 55, 122, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 4rem);
}

.hero-title {
  margin-bottom: 1.5rem;
  color: #1A1A2E;
}

.hero-title em {
  font-style: italic;
  color: #E8377A;
}

.hero-subtitle {
  margin: 0 auto 2.5rem;
  max-width: 520px;
  font-size: clamp(1.05rem, 1.4vw + 0.15rem, 1.25rem);
  color: #5A5A6A;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image-wrapper {
  margin-top: clamp(3rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-image-wrapper .image {
  border-radius: 12px;
  border: 1px solid rgba(232, 230, 225, 0.9);
  box-shadow: 0 25px 80px rgba(26, 26, 46, 0.1), 0 8px 32px rgba(26, 26, 46, 0.06);
}

/* ─── BUTTONS ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 0.8rem 2rem;
  border-radius: 100px;
  transition: all 0.3s ease;
  white-space: nowrap;
  text-decoration: none;
}

.primary-button {
  background: #E8377A;
  color: #fff;
}

.primary-button:hover {
  background: #D42E6A;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 55, 122, 0.35);
  color: #fff;
}

.secondary-button {
  background: transparent;
  color: #1A1A2E;
  border: 1.5px solid #D0CDC7;
}

.secondary-button:hover {
  border-color: #1A1A2E;
  background: #1A1A2E;
  color: #fff;
  transform: translateY(-2px);
}

/* ─── CARDS ─── */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  width: 100%;
}

.card {
  background: #fff;
  border: 1px solid rgba(232, 230, 225, 0.9);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #E8377A, #00D4FF);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.08);
  border-color: transparent;
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(232, 55, 122, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1A1A2E;
}

.card .body-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #6B6B7B;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #E8377A;
  margin-top: 1.25rem;
  transition: gap 0.25s ease;
}

.card-link:hover {
  gap: 0.7rem;
}

/* ─── IMAGE ─── */

.image {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

/* ─── STATS BAR ─── */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  width: 100%;
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-top: 1px solid rgba(232, 230, 225, 0.8);
  border-bottom: 1px solid rgba(232, 230, 225, 0.8);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.2;
}

.stat-number span {
  color: #E8377A;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: #6B6B7B;
  margin-top: 0.3rem;
  letter-spacing: 0.02em;
}

/* ─── DIVIDER ─── */

.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #E8377A, #00D4FF);
  border: none;
  margin: 0 auto;
}

/* ─── FEATURE ROW ─── */

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: 100%;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(232, 230, 225, 0.9);
  box-shadow: 0 15px 50px rgba(26, 26, 46, 0.06);
}

.feature-image .image {
  border-radius: 16px;
}

/* ─── ALERT / STATUS BADGES ─── */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

.badge-online {
  background: rgba(0, 212, 255, 0.1);
  color: #00A8CC;
}

.badge-online::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00D4FF;
  animation: pulse-dot 2s infinite;
}

.badge-warning {
  background: rgba(255, 59, 59, 0.1);
  color: #FF3B3B;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ─── PRICING TABLE ─── */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(1.25rem, 2vw, 2rem);
  width: 100%;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(232, 230, 225, 0.9);
  border-radius: 16px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}

.pricing-card.featured {
  border-color: #E8377A;
  box-shadow: 0 20px 60px rgba(232, 55, 122, 0.1);
}

.pricing-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E8377A;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
}

.pricing-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6B6B7B;
  margin-bottom: 0.75rem;
}

.pricing-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: #1A1A2E;
  line-height: 1.2;
}

.pricing-price span {
  font-size: 0.5em;
  font-weight: 400;
  color: #6B6B7B;
}

.pricing-desc {
  font-size: 0.9rem;
  color: #6B6B7B;
  margin: 0.75rem 0 1.5rem;
}

.pricing-features {
  text-align: left;
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.pricing-features li {
  font-size: 0.88rem;
  color: #4A4A5A;
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.pricing-features li::before {
  content: '✓';
  color: #E8377A;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── FOOTER ─── */

.site-footer {
  width: 100%;
  background: #1A1A2E;
  color: rgba(255, 255, 255, 0.6);
  margin-top: auto;
}

.footer-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 4rem) clamp(2rem, 4vw, 3rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
  max-width: 280px;
  line-height: 1.7;
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.footer-logo-text span {
  color: #E8377A;
}

.footer-heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
  transition: color 0.25s ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.25s ease;
}

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

.footer-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00D4FF;
  animation: pulse-dot 2s infinite;
}

/* ─── CODE BLOCK ─── */

.code-block {
  background: #1A1A2E;
  color: #E8E6E1;
  border-radius: 12px;
  padding: clamp(1.25rem, 2vw, 1.75rem);
  font-family: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  font-size: 0.85rem;
  line-height: 1.8;
  overflow-x: auto;
  margin: 1.5rem 0;
}

.code-block .comment {
  color: #6B6B7B;
}

.code-block .keyword {
  color: #E8377A;
}

.code-block .string {
  color: #00D4FF;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 900px) {
  .header-left,
  .header-right {
    display: none;
  }

  .mobile-toggle {
    display: flex;
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
  }

  .header-center {
    flex: 1;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 901px) {
  .mobile-nav-overlay {
    display: none !important;
  }
}

/* ─── MOBILE NAV OVERLAY ─── */

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 246, 243, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-overlay a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: #1A1A2E;
  transition: color 0.25s ease;
}

.mobile-nav-overlay a:hover {
  color: #E8377A;
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: clamp(1rem, 3vw, 2rem);
  font-size: 1.5rem;
  color: #1A1A2E;
  padding: 8px;
}

/* ─── ANIMATIONS ─── */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

/* ─── TABLE ─── */

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.data-table th {
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6B6B7B;
  padding: 0.75rem 1rem;
  border-bottom: 2px solid #E8E6E1;
}

.data-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(232, 230, 225, 0.7);
  color: #4A4A5A;
  font-size: 0.88rem;
}

.data-table tr:hover td {
  background: rgba(232, 55, 122, 0.03);
}

/* ─── HORIZONTAL RULE ─── */

hr {
  border: none;
  height: 1px;
  background: rgba(232, 230, 225, 0.8);
  margin: 2rem 0;
}

/* ─── NOTIFICATION BAR ─── */

.notification-bar {
  width: 100%;
  background: linear-gradient(90deg, #1A1A2E, #2A2A3E);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 0.6rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.notification-bar a {
  color: #00D4FF;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.notification-bar a:hover {
  color: #fff;
}
/* universal guards (not a template) */
*{box-sizing:border-box}img,svg,video{max-width:100%;height:auto}h1,h2,h3,h4,p,li,a,span,blockquote{overflow-wrap:break-word;word-break:normal}html{-webkit-text-size-adjust:100%}body{margin:0}
