:root {
  color-scheme: light;
  --shell-bg: #fbf7f1;
  --shell-panel: rgba(255, 255, 255, 0.86);
  --shell-panel-strong: rgba(255, 255, 255, 0.94);
  --shell-border: rgba(15, 23, 42, 0.08);
  --shell-text: #111827;
  --shell-muted: #667085;
  --shell-accent: #f59e0b;
  --shell-accent-dark: #d97706;
  --shell-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--shell-bg);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--shell-text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(248, 147, 30, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.95), transparent 46%),
    var(--shell-bg);
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--shell-border);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer__inner,
.site-footer__bottom,
.page-wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.site-brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.site-brand__logo {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.site-brand__text {
  min-width: 0;
}

.site-brand__name {
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.site-brand__eyebrow {
  margin-top: 2px;
  color: var(--shell-muted);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.site-header__right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  color: #5b6472;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:hover,
.site-footer__links a:hover {
  color: var(--shell-accent-dark);
}

.site-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.site-cta:hover,
.btn:hover {
  transform: translateY(-1px);
}

.site-cta,
.btn--primary {
  padding: 11px 16px;
  background: var(--shell-accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.25);
}

.btn {
  padding: 11px 16px;
  border: 1px solid var(--shell-border);
  background: var(--shell-panel-strong);
  color: var(--shell-text);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.72);
}

.page-wrap {
  flex: 1;
  padding: 32px 0 72px;
}

.page-card {
  border: 1px solid var(--shell-border);
  border-radius: 32px;
  background: var(--shell-panel);
  box-shadow: var(--shell-shadow);
  padding: clamp(22px, 4vw, 40px);
}

.page-card h1,
.page-card h2,
.page-card h3 {
  margin: 0;
  line-height: 1.18;
}

.page-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.04em;
  font-weight: 900;
}

.page-card h2 {
  margin-top: 24px;
  font-size: 1.2rem;
  font-weight: 800;
}

.page-card h3 {
  font-size: 1rem;
  font-weight: 800;
}

.page-card p,
.page-card li {
  color: #374151;
  line-height: 1.72;
}

.page-card p {
  margin: 0 0 12px;
}

.page-card ul {
  margin: 0;
  padding-left: 20px;
}

.page-card li + li {
  margin-top: 8px;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(245, 158, 11, 0.18);
  background: rgba(245, 158, 11, 0.08);
  color: var(--shell-accent-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-meta {
  margin: 10px 0 0;
  color: var(--shell-muted);
  font-size: 0.92rem;
}

.pill {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.74);
  color: #475467;
  font-size: 0.78rem;
  font-weight: 700;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.note {
  margin-top: 18px;
  border: 1px solid rgba(245, 158, 11, 0.14);
  border-radius: 20px;
  background: rgba(255, 248, 238, 0.9);
  padding: 14px 16px;
  color: #5b6472;
  font-size: 0.94rem;
}

.section-card {
  margin-top: 18px;
  border: 1px solid var(--shell-border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  padding: 18px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.pricing-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--shell-border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  padding: 20px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.price {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.per {
  margin-top: -6px;
  color: var(--shell-muted);
  font-size: 0.86rem;
}

.muted {
  color: var(--shell-muted);
  font-size: 0.88rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-footer {
  border-top: 1px solid var(--shell-border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0 18px;
}

.site-footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 520px;
}

.site-footer__brand img {
  width: 40px;
  height: 40px;
  border-radius: 14px;
}

.site-footer__brand strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.site-footer__brand p {
  margin: 0;
  color: var(--shell-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #5b6472;
  font-size: 0.92rem;
  font-weight: 600;
}

.site-footer__links a {
  text-decoration: none;
}

.site-footer__bottom {
  padding: 0 0 26px;
  color: var(--shell-muted);
  font-size: 0.78rem;
}

hr {
  border: none;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  margin: 28px 0;
}

@media (max-width: 900px) {
  .site-header__inner,
  .site-header__right {
    align-items: flex-start;
  }

  .site-header__inner {
    flex-direction: column;
  }

  .site-header__right {
    width: 100%;
    justify-content: space-between;
  }

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

@media (max-width: 640px) {
  .site-header__right {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    gap: 12px;
    font-size: 0.85rem;
  }

  .site-brand__eyebrow {
    display: none;
  }

  .page-wrap {
    width: min(1120px, calc(100% - 24px));
    padding: 20px 0 56px;
  }

  .page-card {
    border-radius: 24px;
    padding: 20px;
  }
}
