:root {
  --brand-700: #4338ca;
  --brand-500: #6366f1;
  --brand-300: #a5b4fc;
  --coral: #ff6b4a;
  --surface: #0a0a0f;
  --surface-muted: #12121c;
  --surface-elevated: #1c1c2a;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --border: rgba(165, 180, 252, 0.14);
  --radius: 16px;
  --shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
}

html.modal-open,
html.modal-open body {
  overflow: hidden;
}

body {
  margin: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--surface);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--brand-300);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.75rem 1rem;
  background: var(--brand-500);
  color: #fff;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.88);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
}

.nav {
  display: none;
  gap: 1.25rem;
  margin-left: auto;
}

.nav a {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}

.nav a:hover {
  color: var(--text);
}

.site-header .btn--primary {
  margin-left: auto;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .site-header .btn--primary {
    margin-left: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.35);
}

.btn--ghost {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(99, 102, 241, 0.22), transparent),
    var(--surface);
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
  }
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 38rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.hero__visual {
  position: relative;
  min-height: 320px;
}

.hero-card {
  position: absolute;
  width: min(100%, 280px);
  padding: 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card ul {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-card--reppit {
  top: 0;
  left: 0;
  background: linear-gradient(160deg, #1e1b4b, #312e81);
}

.hero-card--toolkit {
  right: 0;
  bottom: 0;
  background: linear-gradient(160deg, #312e81, #7c3aed);
}

.hero-card__label {
  margin: 0;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.hero-card__title {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
  font-weight: 800;
}

.section {
  padding: 4rem 0;
}

.section--muted {
  background: var(--surface-muted);
}

.section__head {
  margin-bottom: 2rem;
}

.section__head h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.section__head p {
  margin: 0;
  color: var(--text-muted);
}

.product-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--surface-elevated);
  border: 1px solid var(--border);
}

.product-card h3 {
  margin: 0.75rem 0 0.5rem;
  font-size: 1.35rem;
}

.product-card p {
  margin: 0;
  color: var(--text-muted);
}

.product-card__badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card__badge--violet {
  background: rgba(99, 102, 241, 0.2);
  color: var(--brand-300);
}

.product-card__badge--coral {
  background: rgba(255, 107, 74, 0.18);
  color: #ff8a6b;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.product-card__status {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brand-300);
}

.about-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.values {
  margin: 0;
  display: grid;
  gap: 1rem;
}

.values dt {
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.values dd {
  margin: 0;
  color: var(--text-muted);
}

.contact {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    gap: 3rem;
  }
}

.contact__intro p {
  margin: 0;
  color: var(--text-muted);
}

.contact__privacy-link {
  margin-top: 1rem;
}

.contact__actions {
  display: flex;
  align-items: flex-start;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(6px);
}

.modal__dialog {
  position: relative;
  width: min(640px, calc(100% - 2rem));
  margin: 7vh auto 0;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(28, 28, 42, 0.98), rgba(18, 18, 28, 0.98));
  border: 1px solid rgba(165, 180, 252, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.25rem 0.5rem;
}

.modal__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.modal__subtitle {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 15, 0.2);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  transform: translateY(-1px);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 0.75rem 1.25rem 1.25rem;
  background: transparent;
  border: 0;
}

.contact-form__field {
  display: grid;
  gap: 0.35rem;
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form__field input,
.contact-form__field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(165, 180, 252, 0.18);
  background: rgba(10, 10, 15, 0.35);
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: 2px solid rgba(99, 102, 241, 0.45);
  outline-offset: 1px;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form__actions {
  margin-top: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-form__actions .btn {
  width: 100%;
}

@media (min-width: 480px) {
  .contact-form__actions .btn {
    width: auto;
  }
}

.contact-form__status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.contact-form__status--success {
  color: #5eead4;
}

.contact-form__status--error {
  color: #fca5a5;
}

.contact-form__status--pending {
  color: var(--brand-300);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(560px, calc(100% - 2rem));
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(165, 180, 252, 0.22);
  background: rgba(28, 28, 42, 0.95);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.55);
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.35;
}

.toast--success {
  border-color: rgba(94, 234, 212, 0.45);
  color: #5eead4;
}

.toast--error {
  border-color: rgba(248, 113, 113, 0.42);
  color: #fca5a5;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.site-footer nav {
  display: flex;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.legal {
  padding: 3rem 0 4rem;
}

.legal__content {
  max-width: 42rem;
}

.legal h1 {
  margin-top: 0;
}

.legal h2 {
  margin-top: 2rem;
}

.legal__updated,
.legal__note {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.legal ul {
  color: var(--text-muted);
}
