﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-top: #0c1f18;
  --bg-mid: #06110d;
  --bg-bottom: #020504;
  --text-main: #f3f4f6;
  --text-soft: #9ca3af;
  --line: rgba(156, 163, 175, 0.22);
  --green: #22c55e;
  --green-strong: #10b981;
  --green-bg: rgba(16, 185, 129, 0.14);
  --red: #ef4444;
}

html,
body {
  min-height: 100%;
  height: 100%;
  font-family: 'Bricolage Grotesque', sans-serif;
  color: var(--text-main);
  background-color: var(--bg-bottom);
  background:
    radial-gradient(1000px 500px at 50% -10%, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0) 70%),
    linear-gradient(180deg, var(--bg-top) 0%, var(--bg-mid) 55%, var(--bg-bottom) 100%);
  background-repeat: no-repeat;
  overscroll-behavior: none;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  width: 100%;
}

.navbar {
  min-height: 72px;
  padding: 0 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
}

.logo img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.logo strong {
  color: var(--green);
}

.navbar nav a {
  margin-left: 28px;
  text-decoration: none;
  color: #d1d5db;
  font-size: 13px;
  transition: color 0.2s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #ffffff;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  max-width: 700px;
  font-size: 16px;
  line-height: 1.7;
  color: #a5b4c7;
  margin-bottom: 40px;
}

.actions {
  display: flex;
  gap: 16px;
}

button,
.btn {
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

button.primary,
.btn.primary {
  background: var(--green);
  color: #042210;
  border: 1px solid transparent;
}

button.primary:hover,
.btn.primary:hover {
  background: #042210;
  color: var(--green);
  border-color: var(--green);
}

button.secondary,
.btn.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

button.secondary:hover,
.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* PRICING PAGE */
.pricing-main {
  max-width: 960px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 26px 20px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.pricing-header {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
}

.pricing-header h1 {
  font-size: clamp(30px, 4.3vw, 52px);
  line-height: 1.12;
}

.pricing-emphasis {
  color: var(--green);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(1, 13, 10, 0.62);
  padding: 18px 18px 16px;
  overflow: hidden;
  text-align: left;
}

.price-card-featured {
  border-color: rgba(34, 197, 94, 0.6);
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.18);
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.price-top h2 {
  font-size: 24px;
  line-height: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 5px 11px;
  background: #22c55e;
  color: #032010;
  font-weight: 700;
  font-size: 12px;
}

.pill-muted {
  background: rgba(255, 255, 255, 0.1);
  color: #e5e7eb;
}

.pill-soon {
  position: absolute;
  right: 4px;
  top: -8px;
  font-size: 11px;
  padding: 5px 10px;
  z-index: 2;
}

.price-value {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 8px;
}

.price-desc {
  color: #9ca3af;
  font-size: 13px;
  line-height: 1.35;
  margin-bottom: 12px;
}

.price-cta-wrap {
  position: relative;
  width: 100%;
  margin-bottom: 14px;
}

.price-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: #b0b3b6;
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
} 

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  text-align: left;
}

.price-list li {
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  line-height: 1.5;
  color: #bfc5cc;
}

.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.28em;
  width: 18px;
  height: 18px;
  background-image: url("/src/img/humbleicons--check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.58;
}

.price-highlight {
  color: #22c55e;
  font-weight: 600;
}

.price-highlight::before {
  opacity: 1;
  filter: drop-shadow(0 0 2px rgba(34, 197, 94, 0.55));
}

.price-cta.is-locked {
  cursor: not-allowed;
  background: #8e9499;
  color: #374151;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.25);
}

.price-ribbon {
  position: absolute;
  top: 16px;
  right: -48px;
  transform: rotate(45deg);
  width: 154px;
  text-align: center;
  padding: 6px 0;
  background: #22c55e;
  color: #042210;
  font-size: 12px;
  font-weight: 800;
}

/* POLICY PAGE */
.policy-main {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 24px 90px;
}

.policy-hero {
  text-align: center;
  margin-bottom: 34px;
}

.policy-brand {
  width: fit-content;
  margin: 0 auto 26px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.45);
  background: rgba(0, 0, 0, 0.2);
  color: #30e486;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.policy-brand img {
  width: 16px;
  height: 16px;
}

.policy-hero h1 {
  font-size: clamp(34px, 5.2vw, 52px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.policy-hero p {
  color: var(--text-soft);
  font-size: 16px;
}

.policy-card {
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(1, 13, 10, 0.6);
  padding: 24px;
}

.policy-intro {
  font-size: 16px;
  line-height: 1.8;
  color: #b7c0cc;
}

.policy-card h2 {
  font-size: 26px;
  margin-bottom: 14px;
}

.policy-card p {
  font-size: 16px;
  color: #a6afbc;
  line-height: 1.8;
  margin-bottom: 10px;
}

.policy-card ul {
  margin: 8px 0 16px 0;
  padding-left: 22px;
}

.policy-card li {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.ok-list li::marker {
  color: var(--green-strong);
}

.no-list li {
  color: var(--red);
}

.no-list li::marker {
  color: var(--red);
}

@media (max-width: 900px) {
  .navbar {
    padding: 0 20px;
  }

  .navbar nav a {
    margin-left: 16px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  button,
  .btn {
    width: 100%;
  }

  .policy-main {
    padding: 28px 16px 72px;
  }

  .pricing-main {
    padding: 18px 12px 56px;
    min-height: calc(100vh - 72px);
  }

  .pricing-header {
    margin-bottom: 24px;
  }

  .pricing-header h1 {
    font-size: 34px;
  }

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

  .price-card {
    padding: 16px 14px 14px;
    border-radius: 14px;
  }

  .price-top h2 {
    font-size: 22px;
  }

  .pill {
    font-size: 11px;
    padding: 4px 9px;
  }

  .pill-soon {
    font-size: 10px;
    padding: 4px 9px;
    right: 0;
    top: -6px;
  }

  .price-value {
    font-size: 38px;
  }

  .price-desc {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .price-cta {
    height: 40px;
    font-size: 15px;
  }

  .price-list {
    gap: 10px;
  }

  .price-list li {
    font-size: 15px;
    padding-left: 26px;
  }

  .price-list li::before {
    width: 13px;
    height: 13px;
  }

  .price-ribbon {
    top: 14px;
    right: -50px;
    width: 150px;
    font-size: 11px;
  }

  .policy-card {
    padding: 18px;
  }

  .policy-card h2 {
    font-size: 22px;
  }

  .policy-card p,
  .policy-card li {
    font-size: 15px;
  }

  .policy-intro {
    font-size: 15px;
  }

  .policy-hero p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .navbar {
    min-height: auto;
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .navbar nav {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
  }

  .navbar nav a {
    margin-left: 0;
    font-size: 13px;
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    min-height: auto;
    padding: 44px 16px 56px;
  }

  .hero h1 {
    font-size: clamp(28px, 9vw, 38px);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero p br {
    display: none;
  }

  .actions {
    width: 100%;
    max-width: 320px;
  }

  .pricing-main {
    min-height: auto;
    padding: 20px 12px 44px;
    justify-content: flex-start;
  }

  .pricing-header {
    margin-bottom: 18px;
  }

  .pricing-header h1 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .pricing-grid {
    gap: 10px;
  }

  .price-card {
    padding: 14px 12px 12px;
  }

  .price-top {
    gap: 8px;
    margin-bottom: 8px;
  }

  .price-top h2 {
    font-size: 20px;
  }

  .price-value {
    font-size: 34px;
  }

  .price-desc {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .price-cta-wrap {
    margin-bottom: 12px;
  }

  .price-cta {
    height: 38px;
    font-size: 14px;
  }

  .price-list {
    gap: 8px;
  }

  .price-list li {
    font-size: 14px;
    padding-left: 24px;
  }

  .price-list li::before {
    width: 12px;
    height: 12px;
    top: 0.34em;
  }

  .price-ribbon {
    top: 12px;
    right: -56px;
    width: 148px;
    font-size: 10px;
  }

  .policy-main {
    padding: 20px 12px 44px;
  }

  .policy-hero {
    margin-bottom: 20px;
  }

  .policy-brand {
    margin-bottom: 16px;
  }

  .policy-hero h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .policy-hero p {
    font-size: 13px;
  }

  .policy-card {
    padding: 14px;
    margin-bottom: 12px;
  }

  .policy-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .policy-card p,
  .policy-card li,
  .policy-intro {
    font-size: 14px;
    line-height: 1.65;
  }
}

