:root {
  --purple: #2b1e4a;
  --purple-soft: #f4f1fb;
  --green: #5cbf7c;
  --green-soft: #e5f9ea;
  --bg-page: #f5f6fb;
  --text-main: #111827;
  --text-muted: #6b7280;
  --border-soft: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.14);
  --radius-xl: 26px;
}

/* RESET / BASE */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAVBAR */

.navbar {
  height: 70px;
  background: var(--purple);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.55);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid #ffffff44;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  background: #ffffff22;
}

.nav-brand {
  display: flex;
  flex-direction: column;
}

.nav-brand-main {
  font-size: 15px;
  font-weight: 600;
}

.nav-brand-sub {
  font-size: 11px;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
}

.nav-link {
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 500;
}

.nav-link:hover {
  opacity: 1;
}

.nav-actions {
  display: flex;
  gap: 10px;
}

/* BUTTONS */

.btn-nav-outline,
.btn-primary,
.btn-secondary {
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  border: none;
}

.btn-nav-outline {
  padding: 9px 16px;
  background: transparent;
  color: #fff;
  border: 1px solid #ffffff55;
}

.btn-nav-outline:hover {
  background: #ffffff1a;
}

.btn-primary {
  padding: 11px 22px;
  background: var(--purple);
  color: #fff;
  box-shadow: 0 18px 36px rgba(43, 30, 74, 0.45);
}

.btn-primary:hover {
  background: #24173d;
}

.btn-secondary {
  padding: 11px 18px;
  background: #fff;
  border: 1px solid var(--border-soft);
  color: var(--text-main);
}

.btn-secondary:hover {
  background: #f4f4ff;
}

/* HERO */

.hero {
  background: radial-gradient(circle at top left, #e5fae7 0, #f7fafc 40%, #eef4ff 100%);
  padding: 42px 32px 50px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 34px;
  align-items: stretch;
}

.hero-left {
  max-width: 640px;
}

.hero-kicker {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.hero-title {
  font-size: 32px;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 22px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  margin-bottom: 20px;
}

.badge-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border-soft);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

/* HERO FLOW */

.hero-flow {
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(6px);
  font-size: 11px;
  color: var(--text-muted);
}

.hero-flow-step {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hero-flow-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--green-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.hero-flow-label {
  font-weight: 600;
  color: #374151;
}

.hero-flow-text {
  line-height: 1.4;
}

.hero-flow-arrow {
  font-size: 18px;
  color: #9ca3af;
}

/* HERO RIGHT */

.hero-right {
  position: relative;
  border-radius: var(--radius-xl);
  background: url("https://cdn.shopify.com/s/files/1/0622/6152/6711/files/b1284f6b-c310-4ab0-87ab-af412959113b.png") center/cover no-repeat,
    linear-gradient(135deg, #dde7ff, #e6f6ea);
  box-shadow: var(--shadow-soft);
  min-height: 260px;
  overflow: hidden;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(0, 0, 0, 0.08),
    transparent 40%,
    rgba(0, 0, 0, 0.18)
  );
  pointer-events: none;
}

.hero-right-overlay {
  position: absolute;
  left: 20px;
  bottom: 20px;
  right: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  font-size: 12px;
  color: var(--text-muted);
}

.hero-lab-label {
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}

.hero-lab-sub {
  line-height: 1.5;
}

/* DEVELOPMENT SECTION */

.development {
  padding: 40px 32px 46px;
  background: #fafafc;
}

.dev-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.dev-eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 18px;
}

.dev-card {
  background: linear-gradient(135deg, #d5f3d9, #effbe9);
  border-radius: var(--radius-xl);
  padding: 30px 32px 26px;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.16);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 26px;
  align-items: center;
}

.dev-left {
  max-width: 620px;
}

.dev-title {
  font-size: 26px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 10px;
}

.dev-title-break {
  display: block;
}

.dev-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 18px;
  max-width: 540px;
}

.dev-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.dev-badge {
  background: #ffffffd9;
}

.dev-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dev-primary {
  box-shadow: 0 16px 32px rgba(16, 185, 129, 0.35);
  background: #111827;
}

.dev-primary:hover {
  background: #020617;
}

.dev-secondary {
  background: #fefefe;
}

/* DEV RIGHT – BOTTLE CARD */

.dev-right {
  display: flex;
  justify-content: center;
}

.dev-bottle-card {
  background: #f8fbff;
  border-radius: 22px;
  padding: 16px 16px 18px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  text-align: center;
}

.dev-bottle-img {
  max-width: 180px;
  margin: 0 auto 10px;
}

.dev-bottle-caption {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.dev-bottle-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* LOWER SECTION: PROCESS + WHO */

.lower {
  padding: 40px 32px 48px;
}

.lower-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 26px;
}

/* PROCESS CARD + FORM */

.process-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 22px 20px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
}

.process-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.process-step-label {
  font-weight: 600;
  color: #374151;
  margin-bottom: 2px;
}

/* FORM */

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  font-size: 13px;
}

.input-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.input-label {
  font-size: 11px;
  color: var(--text-muted);
}

.input-control {
  border-radius: 10px;
  border: 1px solid var(--border-soft);
  padding: 8px 10px;
  font-size: 13px;
  background: #f9fafb;
}

.input-control:focus {
  outline: none;
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px #4f46e5;
}

.full {
  grid-column: 1 / -1;
}

.contact-submit {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 4px;
}

/* WHO CARD */

.right-col-grid {
  display: grid;
  grid-template-rows: auto;
  gap: 16px;
}

.who-card {
  background: #fff;
  border-radius: 22px;
  padding: 20px 22px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.09);
  font-size: 13px;
  color: var(--text-muted);
}

.who-title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.who-sub {
  margin-bottom: 10px;
}

.who-list {
  list-style: none;
  display: grid;
  gap: 4px;
}

.who-list li::before {
  content: "• ";
  color: var(--green);
}

/* FOOTER */

footer {
  background: var(--purple);
  color: #e5e7eb;
  padding: 18px 32px 16px;
  font-size: 11px;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.footer-nav {
  display: flex;
  gap: 16px;
}

.footer-nav a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  opacity: 0.9;
}

.footer-nav a:hover {
  opacity: 1;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-right {
    order: -1;
    min-height: 220px;
  }

  .dev-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .lower-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 0 16px;
  }

  .nav-menu {
    display: none;
  }

  .hero,
  .development,
  .lower {
    padding: 30px 16px 34px;
  }

  .hero-title {
    font-size: 26px;
  }

  .contact-form {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
