@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600&display=swap');
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ROOT VARIABLES */
:root {
  --font: "Plus Jakarta Sans", sans-serif;
  --color-accent: #2563eb;
  --color-accent-dark: #1d4ed8;
  --color-bg-dark: #020c1b;
  --color-bg-light: #f8faff;
  --color-bg-white: #ffffff;
  --color-text-dark: #0f172a;
  --color-text-dark-muted: rgba(15, 23, 42, 0.5);
  --color-text-light: #ffffff;
  --color-text-light-muted: rgba(255, 255, 255, 0.45);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --transition: 0.2s ease;
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 500;
  --z-header: 1000;
  --z-overlay: 9999;
  --header-height: 72px;
}

/* RESET */
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-height); overflow-x: hidden; }
img, video, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* PAGE LAYOUT */
html { height: 100%; }
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: var(--font);
  font-weight: 400;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
#header { position: absolute; top: 0; left: 0; right: 0; z-index: var(--z-header); }
#main   { flex: 1; width: 100%; }
#footer { flex-shrink: 0; width: 100%; }

/* CONTAINER */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 26px;
  padding-right: 26px;
}
@media (min-width: 375px)  { .container { padding-left: 30px;  padding-right: 30px;  } }
@media (min-width: 414px)  { .container { padding-left: 34px;  padding-right: 34px;  } }
@media (min-width: 576px)  { .container { padding-left: 38px;  padding-right: 38px;  } }
@media (min-width: 768px)  { .container { padding-left: 42px;  padding-right: 42px;  } }
@media (min-width: 992px)  { .container { padding-left: 120px; padding-right: 120px; } }
@media (min-width: 1200px) { .container { padding-left: 160px; padding-right: 160px; } }
@media (min-width: 1400px) { .container { padding-left: 190px; padding-right: 190px; } }

/* SECTION PADDING */
.section-pad-sm  { padding-top: 60px;  padding-bottom: 60px;  }
.section-pad     { padding-top: 150px; padding-bottom: 150px; }
.section-pad-lg  { padding-top: 220px; padding-bottom: 220px; }
.section-pad-xlg { padding-top: 440px; padding-bottom: 440px; }
.hero-pad        { padding-top: 160px; padding-bottom: 120px; }

/* SECTION PADDING — VIEWPORT BASED */
.section-vh-hero,
.section-vh-sm,
.section-vh-md,
.section-vh-lg,
.section-vh-xl {
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section-pad-sm  { padding-top: 48px;  padding-bottom: 48px;  }
  .section-pad     { padding-top: 80px;  padding-bottom: 80px;  }
  .section-pad-lg  { padding-top: 100px; padding-bottom: 100px; }
  .hero-pad        { padding-top: 120px; padding-bottom: 80px;  }
}
@media (max-width: 767px) {
  .section-pad-sm  { padding-top: 40px;  padding-bottom: 40px;  }
  .section-pad     { padding-top: 60px;  padding-bottom: 60px;  }
  .section-pad-lg  { padding-top: 80px;  padding-bottom: 80px;  }
  .hero-pad        { padding-top: 100px; padding-bottom: 60px;  }
}

/* TYPOGRAPHY */
.hero-heading {
  font-family: var(--font);
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}
.hero-heading--light { color: var(--color-text-dark); }
.hero-heading--dark  { color: var(--color-text-light); }
.hero-heading--with-cards { margin-bottom: 40px; }
@media (max-width: 991px) { .hero-heading { font-size: 48px; } }
@media (max-width: 767px) { .hero-heading { font-size: 36px; letter-spacing: -1.5px; } }

.section-heading {
  font-family: var(--font);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}
.section-heading--light { color: var(--color-text-dark); }
.section-heading--dark  { color: var(--color-text-light); }
.section-heading--light span { color: var(--color-accent); }
.section-heading--dark  span {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media (max-width: 991px) { .section-heading { font-size: 32px; } }
@media (max-width: 767px) { .section-heading { font-size: 26px; } }

.section-sub {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}
.section-sub--light { color: var(--color-text-dark-muted); }
.section-sub--dark  { color: var(--color-text-light-muted); }
@media (max-width: 991px) { .section-sub { font-size: 15px; } }
@media (max-width: 767px) { .section-sub { font-size: 14px; } }

.card-heading { font-family: var(--font); font-size: 18px; font-weight: 700; line-height: 1.3; }
.card-heading--light { color: #0d1321; }
.card-heading--dark  { color: #f0f6ff; }

.card-sub { font-family: var(--font); font-size: 13px; font-weight: 400; line-height: 1.5; }
.card-sub--light { color: var(--color-text-dark-muted); }
.card-sub--dark  { color: var(--color-text-light-muted); }

.card-feat { font-family: var(--font); font-size: 13px; font-weight: 500; line-height: 1.4; }
.card-feat--light { color: #4b5a78; }
.card-feat--dark  { color: rgba(240, 246, 255, 0.6); }

.price-amount { font-family: var(--font); font-size: 44px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.price-amount--light { color: #0d1321; }
.price-amount--dark  { color: #f0f6ff; }
.price-currency { font-size: 17px; font-weight: 700; color: #94a3b8; line-height: 1; }
.price-period { font-size: 12px; font-weight: 500; color: #94a3b8; }

.body-lg { font-size: 16px; line-height: 1.7; }
.body-md { font-size: 15px; line-height: 1.7; }
.body-sm { font-size: 14px; line-height: 1.7; }
.body-xs { font-size: 12px; line-height: 1.6; }


/* BUTTONS */

/* Base buttons */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.btn-primary { background: var(--color-accent); color: #ffffff; border-color: var(--color-accent); }
.btn-primary:hover { background: var(--color-accent-dark); border-color: var(--color-accent-dark); }
.btn-secondary { background: transparent; color: #1f2937; border-color: rgba(59, 59, 59, 0.12); }
.btn-secondary:hover { background: #f3f4f6; border-color: rgba(59, 59, 59, 0.25); }
.btn-primary:active,
.btn-secondary:active { transform: scale(0.98); }

/* Button sizes */
.btn-sm { font-size: 14px; font-weight: 600; padding: 10px 24px; border-radius: var(--radius-sm); }

/* Button variants */
.btn-secondary--dark { color:#f0f6ff; border-color:rgba(255,255,255,0.15); }
.btn-secondary--dark:hover { background:rgba(255,255,255,0.06); border-color:rgba(255,255,255,0.3); }

/* Button groups */
.hero-buttons { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:28px; }
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary { width:200px; }
@media(max-width:767px){ .hero-buttons { flex-direction:column; align-items:center; width:100%; } .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width:100%; max-width:320px; } }

/* UTILITIES */
.text-center  { text-align: center; }
.text-accent  { color: var(--color-accent); }
.text-muted   { color: var(--color-text-dark-muted); }
.text-muted-light { color: var(--color-text-light-muted); }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* HERO / LANDING */

/* Hero content wrapper */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

/* Landing Pills */

/* Light pill - no description */
.pill-no-desc-light { display:inline-flex; align-items:center; border:1px solid rgba(37,99,235,0.2); border-radius:100px; padding:5px; margin-bottom:20px; }

/* Dark pill - no description */
.pill-no-desc-dark { display:inline-flex; align-items:center; border:1px solid rgba(96,165,250,0.25); border-radius:100px; padding:5px; margin-bottom:20px; background:rgba(255,255,255,0.12); }

/* Pill with description */
.pill-with-desc { display:inline-flex; align-items:center; gap:8px; border:1px solid rgba(37,99,235,0.2); border-radius:100px; padding:5px 14px 5px 5px; background:rgba(255,255,255,0.7); margin-bottom:20px; }
.pill-with-desc__text { color:var(--color-text-dark); font-weight:500; font-size:12px; }

/* Shared inner badge */
.pill-badge-inner { position:relative; overflow:hidden; background:var(--color-accent); color:#fff; font-weight:700; padding:4px 12px; border-radius:100px; font-size:12px; margin:0; }

/* Typing text styles */
.typing-gradient{background:linear-gradient(135deg,#60a5fa 0%,#2563eb 60%,#06b6d4 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.typing-accent{color:var(--color-accent)}
.typing-cursor{display:inline;color:var(--color-accent);font-weight:300;animation:typingBlink 0.7s step-end infinite}
@keyframes typingBlink{50%{opacity:0}}

/* Hero layout */
.hero-typing-wrapper--block{display:block;}