:root {
  --bg-1: #fbfbfc;
  --bg-2: #f2f6fb;
  --bg-3: #f8f9fb;
  --ink: #0f1720;
  --muted: #60697a;
  --brand-1: #0b6fa4; /* primary brand blue */
  --brand-2: #e07a3b; /* secondary warm accent */
  --accent: var(--brand-1);
  --accent-2: var(--brand-2);
  --card: #ffffffee;
  --ring: #0b6fa433;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(800px 500px at 10% -10%, #ffffff 0%, transparent 60%),
    radial-gradient(900px 600px at 110% 10%, #ffffff 0%, transparent 60%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3) 85%);
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: #ffffffa6;
  border-bottom: 1px solid #ffffff;
  z-index: 10;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.brand-logo {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 6px;
}

.brand-text {
  font-size: 1rem;
  color: var(--ink);
}

.nav-links {
  display: flex;
  gap: 16px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links a:hover {
  background: #ffffff;
  box-shadow: 0 0 0 1px var(--ring);
}

.hero {
  padding: 72px 0 40px;
}

.hero.branded {
  position: relative;
  overflow: hidden;
}

.hero.branded::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 60%;
  height: 140%;
  background-image: url('/assets/logo.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.06;
  pointer-events: none;
  filter: grayscale(100%) saturate(0%);
}

.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  margin: 0 0 16px;
}

.hero p {
  max-width: 700px;
  font-size: 1.1rem;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 20px -12px #0f4c5c80;
}

.button.secondary {
  background: #ffffff;
  border-color: var(--ring);
}

.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 52px 0;
}

.section h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  margin-bottom: 12px;
}

.section p {
  color: var(--muted);
  max-width: 820px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.tiers {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px -20px #0f4c5c4d;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent-2);
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f2e8dc;
  color: #6a3b13;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.list {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding-left: 20px;
  position: relative;
}

.list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.footer {
  padding: 32px 0 48px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: reveal 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.note {
  padding: 14px 16px;
  border-radius: 16px;
  background: #ffffffb3;
  border: 1px solid #ffffff;
  color: var(--muted);
}

@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 56px;
  }
}
