:root {
  --green-black: #021d16;
  --deep-green: #05291f;
  --panel: #082e23;
  --soft-panel: #0d3528;
  --green: #66aa28;
  --green-light: #8bc943;
  --cream: #f7f5ee;
  --muted: #c7d4cc;
  --line: rgba(255,255,255,0.12);
  --shadow: 0 24px 70px rgba(0,0,0,0.32);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--cream);
  background: var(--green-black);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  padding: 0 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(2,29,22,0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  width: 168px;
  height: 58px;
  overflow: hidden;
  border-radius: 8px;
  background: #021d16;
}

.brand img {
  width: 168px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: rgba(247,245,238,0.78);
  font-size: 14px;
  font-weight: 600;
}

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

.header-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.header-button {
  padding: 12px 18px;
  background: var(--cream);
  color: var(--green-black);
  font-size: 14px;
}

.button {
  min-height: 48px;
  padding: 14px 22px;
}

.primary {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  color: #07160f;
  box-shadow: 0 12px 30px rgba(102,170,40,0.24);
}

.secondary {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(255,255,255,0.04);
}

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

.hero {
  min-height: calc(100vh - 82px);
  padding: 110px 7vw 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 70px;
  align-items: center;
  background:
    radial-gradient(circle at 78% 25%, rgba(102,170,40,0.23), transparent 32%),
    radial-gradient(circle at 20% 10%, rgba(255,255,255,0.08), transparent 28%),
    linear-gradient(135deg, #021d16 0%, #05291f 56%, #01130e 100%);
}

.hero-inner { max-width: 850px; }
.eyebrow {
  margin: 0 0 18px;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: .92;
  letter-spacing: -0.07em;
}

.hero-copy {
  max-width: 630px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(8,46,35,0.72);
  box-shadow: var(--shadow);
}

.hero-panel span,
.duration {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.hero-panel strong {
  display: block;
  margin: 8px 0 14px;
  font-size: 62px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-panel p { color: var(--muted); line-height: 1.6; margin: 0; }

.section {
  padding: 100px 7vw;
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}

h2 {
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 20px;
}

.section-grid p,
.section-heading p,
.price-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}

.feature-grid {
  padding: 0 7vw 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid article,
.price-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.035);
}

.feature-grid article {
  padding: 30px;
}

.feature-grid span {
  color: var(--green-light);
  font-weight: 900;
  font-size: 13px;
}

.feature-grid h3,
.price-card h3 {
  margin: 18px 0 12px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.feature-grid p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  padding: 30px;
  min-height: 300px;
}

.price-card.featured {
  background: linear-gradient(180deg, rgba(102,170,40,0.16), rgba(255,255,255,0.04));
  border-color: rgba(139,201,67,0.45);
}

.badge {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #07160f;
  background: var(--green-light);
  font-size: 12px;
  font-weight: 900;
}

.price {
  margin: 12px 0 18px;
  color: var(--cream) !important;
  font-size: 34px !important;
  line-height: 1.05 !important;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.events { padding-top: 60px; }
.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.event-list span {
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: rgba(247,245,238,0.84);
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}

.contact-card {
  margin: 30px 7vw 100px;
  padding: 70px;
  border-radius: 34px;
  border: 1px solid rgba(139,201,67,0.32);
  background:
    radial-gradient(circle at 90% 0%, rgba(139,201,67,0.22), transparent 34%),
    linear-gradient(135deg, var(--soft-panel), var(--green-black));
  box-shadow: var(--shadow);
  text-align: center;
}

.contact-card p { max-width: 620px; margin-left: auto; margin-right: auto; }

.footer {
  padding: 34px 7vw;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(247,245,238,0.66);
  font-size: 14px;
}

.footer p { margin: 0; }
.footer a { color: var(--cream); }

@media (max-width: 980px) {
  .site-header { padding: 0 22px; }
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; }
  .hero-panel { max-width: 360px; }
  .section-grid, .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .site-header { height: 74px; gap: 12px; }
  .brand { width: 132px; height: 48px; }
  .brand img { width: 132px; }
  .header-button { padding: 10px 14px; font-size: 13px; }
  .hero { min-height: auto; padding: 70px 22px 56px; }
  h1 { font-size: 48px; }
  .hero-copy { font-size: 17px; }
  .section { padding: 70px 22px; }
  .feature-grid { padding: 0 22px 20px; }
  .contact-card { margin: 20px 22px 70px; padding: 42px 22px; }
  .footer { flex-direction: column; gap: 10px; align-items: flex-start; }
}

/* Phase 3 refinement: smaller logo and restored content sections */
.brand {
  width: 118px;
  height: 42px;
  border-radius: 6px;
}

.brand img {
  width: 118px;
}

.included-section {
  padding: 70px 7vw 30px;
}

.included-card {
  padding: 64px;
  border-radius: 34px;
  color: var(--green-black);
  background: var(--cream);
}

.included-card .eyebrow {
  color: var(--green);
}

.included-card h2 {
  max-width: 900px;
  color: var(--green-black);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.included-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(2,29,22,0.10);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(2,29,22,0.06);
}

.included-grid h3,
.requirements-list h3 {
  margin: 0 0 14px;
  color: var(--green-black);
  font-size: 20px;
  letter-spacing: -0.04em;
}

.included-grid p,
.requirements-list p,
.requirements .section-grid p,
.faq-list p {
  color: rgba(2,29,22,0.68);
  line-height: 1.65;
  font-size: 17px;
  margin: 0;
}

.requirements {
  padding-top: 90px;
}

.requirements .section-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: start;
}

.requirements .section-grid > div:first-child p {
  max-width: 760px;
  color: var(--muted);
}

.requirements-list {
  display: grid;
  gap: 14px;
}

.requirements-list article {
  padding: 22px 24px;
  border-radius: 20px;
  background: var(--cream);
}

.setup-placeholder {
  margin-top: 28px;
  min-height: 330px;
  border: 1px dashed rgba(139,201,67,0.35);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(247,245,238,0.62);
  font-weight: 800;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 16px, rgba(255,255,255,0.04) 16px 32px),
    rgba(13,53,40,0.78);
}

.faqs {
  padding-top: 70px;
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: '+';
  float: right;
  color: var(--green-light);
}

.faq-list details[open] summary::after {
  content: '–';
}

.faq-list p {
  padding: 0 24px 24px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .included-grid,
  .requirements .section-grid {
    grid-template-columns: 1fr;
  }
  .included-card {
    padding: 44px 28px;
  }
}

@media (max-width: 620px) {
  .brand { width: 98px; height: 36px; }
  .brand img { width: 98px; }
  .included-section { padding: 50px 22px 20px; }
  .included-grid { grid-template-columns: 1fr; }
  .setup-placeholder { min-height: 220px; padding: 24px; text-align: center; }
}


/* Logo clipping fix: keep full screenshot logo visible in the header */
.site-header {
  min-height: 82px;
}

.brand {
  width: 112px;
  height: 72px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  display: block;
}

@media (max-width: 620px) {
  .brand {
    width: 92px;
    height: 59px;
  }

  .brand img {
    width: 92px;
    max-height: 59px;
  }
}

/* Phase update: occasion cards */
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.occasion-grid article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255,255,255,0.04);
}

.occasion-grid h3 {
  margin: 0 0 14px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.occasion-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .occasion-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .occasion-grid { grid-template-columns: 1fr; }
}


/* Clickable pricing cards */
.price-card {
  display: block;
  color: inherit;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
  will-change: transform;
}

.price-card:hover,
.price-card:focus-visible {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(139,201,67,0.75);
  background: rgba(255,255,255,0.055);
  box-shadow: 0 24px 60px rgba(0,0,0,0.26), 0 0 0 1px rgba(139,201,67,0.18);
  outline: none;
}

.price-card.featured:hover,
.price-card.featured:focus-visible {
  background: linear-gradient(180deg, rgba(102,170,40,0.22), rgba(255,255,255,0.055));
  border-color: rgba(139,201,67,0.9);
}
