:root {
  --brand-blue: #0095da;
  --brand-blue-dark: #007fb2;
  --brand-green: #1ca64a;
  --brand-green-dark: #087b3c;
  --ink: #11111b;
  --muted: #526075;
  --background: #f7faff;
  --card: #fff;
  --line: #e3eaf6;
  --radius: 18px;
  --shadow: 0 14px 40px rgba(0, 25, 60, 0.1);
  --max: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  border-color: #cbd9ee;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.09);
}

.btn:focus-visible,
.plan-link:focus-visible,
summary:focus-visible,
.navlinks a:focus-visible {
  outline: 3px solid rgba(0, 149, 218, 0.25);
  outline-offset: 3px;
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-dark));
  color: #fff;
  box-shadow: 0 14px 28px rgba(0, 149, 218, 0.18);
}

.btn.green {
  border-color: transparent;
  background: var(--brand-green);
  color: #fff;
  box-shadow: 0 14px 28px rgba(28, 166, 74, 0.14);
}

.btn.ghost {
  border-color: #d6e1f5;
  background: transparent;
  color: var(--brand-blue-dark);
}

.topbar {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 250, 255, 0.91);
  backdrop-filter: blur(12px);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

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

.navlinks {
  display: flex;
  align-items: center;
  gap: 2px;
}

.navlinks a {
  padding: 10px 12px;
  border-radius: 10px;
  color: #424d5f;
  font-size: 14px;
}

.navlinks a:hover {
  background: #fff;
  color: var(--ink);
}

.navcta {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

section {
  padding: 42px 0;
}

.hero {
  padding-top: 34px;
  padding-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(350px, 0.8fr);
  align-items: stretch;
  gap: 18px;
}

.hero-left {
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(900px 220px at 20% 0%, rgba(0, 149, 218, 0.1), transparent 55%),
    radial-gradient(700px 260px at 80% 40%, rgba(0, 123, 59, 0.06), transparent 60%),
    #fff;
  box-shadow: var(--shadow);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #dcebff;
  border-radius: 999px;
  background: #eef7ff;
  color: var(--brand-blue-dark);
  font-size: 13px;
  font-weight: 750;
}

.pill .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-green-dark);
  box-shadow: 0 0 0 3px rgba(0, 123, 59, 0.1);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 690px;
  margin: 14px 0 14px;
  font-size: clamp(2.4rem, 4.4vw, 3.3rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 2.55rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.16;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.lead,
.subhead {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lead {
  max-width: 62ch;
  font-size: 16px;
}

.small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.availability {
  margin-top: 12px;
}

.points {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  border: 1px solid #dcebff;
  border-radius: 50%;
  background: #eaf6ff;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 800;
}

.cta-row,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-row {
  margin-top: 18px;
}

.card,
.feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.pricing {
  padding: 18px;
}

.pricing-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.pricing-top h2 {
  margin-top: 6px;
  font-size: 2.55rem;
}

.pricing-top .subhead {
  margin-top: 6px;
}

.kicker {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.spots {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
  text-align: right;
}

.spots b {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.plan {
  display: block;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.plan.best {
  border-color: #cfe8ff;
  background: linear-gradient(180deg, #fff, #f3faff);
  box-shadow: 0 12px 24px rgba(0, 149, 218, 0.1);
}

.plan-link {
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.plan-link:hover {
  transform: translateY(-1px);
  border-color: #cfe8ff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}

.plan-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.plan-top > span {
  display: flex;
  flex-direction: column;
}

.plan-name {
  font-size: 17px;
}

.plan-top small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.price {
  color: #585e7f;
  font-size: 28px;
  line-height: 1.1;
}

.plan > .small {
  display: block;
  margin-top: 10px;
}

.join-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.join-buttons .small {
  grid-column: 1 / -1;
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-head .subhead {
  max-width: 980px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  margin-top: 16px;
}

.box {
  padding: 18px;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 28px;
}

.about-photo {
  overflow: hidden;
  margin: 0;
  min-height: 460px;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: 50% 26%;
}

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

.feature {
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.feature .icon {
  display: flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid #dcebff;
  border-radius: 16px;
  background: #eef7ff;
  color: var(--brand-blue-dark);
  font-weight: 800;
}

.feature h3 {
  margin-top: 12px;
}

.feature p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.project-card img {
  display: block;
  width: 100%;
  height: 170px;
  margin-bottom: 12px;
  border-radius: 14px;
  object-fit: cover;
}

.project-card .project-meta {
  margin-bottom: 8px;
  font-size: 13px;
}

.projects-cta {
  margin-top: 14px;
}

.projects-cta .contact-buttons {
  margin-top: 14px;
}

.steps {
  display: grid;
  gap: 22px;
}

.steps h3,
.contact-card h3,
.projects-cta h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card .contact-buttons {
  margin: 20px 0 12px;
}

.faq {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

details {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  margin-top: 28px;
  padding: 28px 0 34px;
  background: #061433;
  color: rgba(255, 255, 255, 0.88);
}

.foot-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer a {
  color: #fff;
  font-weight: 700;
}

.footer-logo {
  display: block;
  width: 96px;
  height: auto;
}

.fine {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.sticky-cta {
  display: none;
  position: fixed;
  z-index: 60;
  right: 0;
  bottom: 12px;
  left: 0;
  padding: 0 12px;
}

.sticky-inner {
  display: flex;
  max-width: var(--max);
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.sticky-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 6px;
}

.sticky-text b {
  font-size: 14px;
}

.sticky-text span {
  color: var(--muted);
  font-size: 12px;
}

.sticky-buttons {
  display: flex;
  gap: 8px;
}

.site-fallback {
  min-height: 70vh;
  padding-block: 64px;
}

@media (max-width: 980px) {
  .navlinks {
    display: none;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    max-width: 760px;
    margin-inline: auto;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .sticky-cta {
    display: block;
  }

  .site-footer {
    padding-bottom: 110px;
  }
}

@media (max-width: 760px) {
  .desktop-call {
    display: none;
  }

  .brand img {
    width: 82px;
  }

  section {
    padding: 34px 0;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .about-photo {
    min-height: 390px;
  }

  .sticky-text {
    display: none;
  }

  .sticky-buttons {
    width: 100%;
  }

  .sticky-buttons .btn {
    min-width: 0;
    flex: 1 1 0;
    padding-inline: 10px;
  }
}

@media (max-width: 520px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .nav {
    min-height: 70px;
  }

  .navcta .btn {
    min-height: 44px;
    padding: 10px 15px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-left,
  .pricing,
  .box,
  .feature {
    padding: 18px;
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .pricing-top h2 {
    font-size: 2rem;
  }

  .cta-row,
  .contact-buttons {
    display: grid;
    grid-template-columns: 1fr;
  }

  .join-buttons {
    grid-template-columns: 1fr;
  }

  .join-buttons .small {
    grid-column: 1;
  }

  .about-photo {
    min-height: 330px;
  }

  .foot-grid {
    flex-direction: column;
  }

  .sticky-inner {
    border-radius: 14px;
  }

  .sticky-buttons .btn {
    min-height: 46px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
