@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-variable.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

    :root {
      --green:        #3BB54A;
      --green-light:  #EBF7ED;
      --green-dark:   #267A31;
      --text:         #1a1a1a;
      --muted:        #5a6472;
      --surface:      #f7faf8;
      --border:       #dde6e0;
      --white:        #ffffff;
    }

    html { font-size: 144%; scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    /* ── Nav ─────────────────────────────────────────────── */

    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border-bottom: 1px solid var(--border);
      padding: 0 2rem;
    }

    .nav-inner {
      position: relative;
      max-width: 912px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .nav-logo {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .nav-logo svg { width: 28px; height: 28px; }

    .nav-wordmark {
      font-size: 24px;
      font-weight: 600;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    .nav-wordmark span { color: #3BB54A; }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--green);
      color: #fff;
      font-size: 0.85rem;
      font-weight: 500;
      padding: 8px 20px;
      border-radius: 100px;
      text-decoration: none;
      transition: background 0.15s;
    }

    .nav-cta:hover { background: var(--green-dark); }

    /* ── Hamburger menu ─────────────────────────────────────── */

    .nav-menu-toggle {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 38px;
      height: 34px;
      padding: 0 8px;
      background: none;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      cursor: pointer;
      flex-shrink: 0;
      transition: border-color 0.15s;
    }

    .nav-menu-toggle:hover { border-color: var(--green); }

    .nav-menu-toggle span {
      display: block;
      height: 2px;
      width: 100%;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .nav-menu-toggle.is-open span:nth-child(2) { opacity: 0; }
    .nav-menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

    .nav-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 14px;
      box-shadow: 0 12px 32px rgba(26,26,26,0.12);
      padding: 6px;
      z-index: 110;
      display: flex;
      flex-direction: column;
    }

    .nav-menu[hidden] { display: none; }

    .nav-menu a {
      display: block;
      padding: 10px 14px;
      border-radius: 9px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      text-decoration: none;
      transition: background 0.12s, color 0.12s;
    }

    .nav-menu a:hover {
      background: var(--green-light);
      color: var(--green-dark);
    }

    .nav-menu .nav-menu-cta {
      margin-top: 4px;
      background: var(--green);
      color: #fff;
      text-align: center;
    }

    .nav-menu .nav-menu-cta:hover { background: var(--green-dark); color: #fff; }

    /* ── Hero ─────────────────────────────────────────────── */

    .hero {
      position: relative;
      overflow: hidden;
      min-height: 520px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--green-light);
    }

    /* Animation layer */
    .hero-animation {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .hero-scene {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-star {
      position: absolute;
      border-radius: 50%;
      background: var(--green-dark);
      opacity: 0.25;
      animation: hero-twinkle 2s ease-in-out infinite alternate;
    }

    .hero-cloud {
      position: absolute;
      opacity: 0.55;
      animation: hero-drift linear infinite;
    }

    .hero-grass {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 56px;
    }

    @keyframes hero-drift {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-120%); }
    }

    @keyframes hero-twinkle {
      0%   { opacity: 0.1; transform: scale(0.8); }
      100% { opacity: 0.35; transform: scale(1.2); }
    }

    /* Content sits above animation */
    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 3rem 2rem 4rem;
      max-width: 744px;
      width: 100%;
    }

    .hero-content h1 {
      font-size: clamp(2.25rem, 6vw, 3.25rem);
      font-weight: 500;
      line-height: 1.1;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 1.25rem;
      text-shadow: 0 1px 12px rgba(235,247,237,0.8);
    }

    .hero-content h1 em {
      font-style: normal;
      color: var(--green-dark);
    }
    #ql-typeword {
      display: inline-block;
    }
    #ql-typeword::after {
      content: '|';
      animation: ql-blink .7s step-end infinite;
      margin-left: 1px;
    }
    @keyframes ql-blink { 0%,100%{opacity:1} 50%{opacity:0} }

    .hero-sub {
      font-size: 1.1rem;
      color: #3a5a3a;
      line-height: 1.65;
      max-width: 576px;
      margin: 0 auto 2rem;
      text-shadow: 0 1px 8px rgba(235,247,237,0.9);
    }

    .price-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.85);
      border-radius: 100px;
      padding: 10px 22px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--green-dark);
      margin-bottom: 2rem;
      backdrop-filter: blur(4px);
    }

    .price-pill strong {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--green);
    }

    .price-sep { margin: 0 2px; }

    .hero-price-wrap { margin-bottom: 2rem; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--green);
      color: #fff;
      font-size: 1rem;
      font-weight: 500;
      padding: 15px 40px;
      border-radius: 100px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      box-shadow: 0 2px 16px rgba(59,181,74,0.25);
      transition: background 0.15s, transform 0.1s;
    }

    .btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
    .btn-primary:active { transform: translateY(0); }

    /* ── Divider ─────────────────────────────────────────── */

    .divider {
      height: 1px;
      background: var(--border);
      margin: 0 2rem;
    }

    /* ── Sections ─────────────────────────────────────────── */

    .section {
      padding: 3.5rem 2rem;
      max-width: 816px;
      margin: 0 auto;
      scroll-margin-top: 76px;
    }

    .section-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 0.5rem;
    }

    .section h2 {
      font-size: clamp(1.375rem, 4vw, 1.75rem);
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.5rem;
      line-height: 1.2;
      letter-spacing: -0.01em;
    }

    .section-sub {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.6;
    }

    /* ── Steps ─────────────────────────────────────────────── */

    .steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 12px;
    }

    .step {
      background: var(--surface);
      border-radius: 16px;
      padding: 1.25rem 1rem;
    }

    .step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--green-light);
      color: var(--green-dark);
      font-size: 13px;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
    }

    .step h3 {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 5px;
    }

    .step p {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* ── Domain cards ──────────────────────────────────────── */

    .domain-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 1rem;
    }

    .domain-card {
      border-radius: 16px;
      padding: 1.25rem;
      border: 1.5px solid var(--border);
      background: var(--white);
      min-width: 0;
    }

    .domain-card.highlight {
      border-color: var(--green);
      background: var(--green-light);
    }

    .domain-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 600;
      padding: 3px 10px;
      border-radius: 100px;
      margin-bottom: 10px;
    }

    .domain-tag.free { background: var(--green); color: #fff; }
    .domain-tag.paid { background: var(--surface); color: var(--muted); }

    .domain-url {
      font-size: 0.8rem;
      font-family: 'SF Mono', 'Fira Code', monospace;
      color: var(--green-dark);
      font-weight: 500;
      margin-bottom: 6px;
      word-break: break-all;
    }

    .domain-card:not(.highlight) .domain-url { color: var(--text); }

    .domain-desc {
      font-size: 0.75rem;
      color: var(--muted);
      line-height: 1.5;
    }

    .domain-price {
      font-size: 1rem;
      font-weight: 600;
      color: var(--text);
      margin-top: 12px;
    }

    /* ── Is / Isn't ─────────────────────────────────────────── */

    .is-isnt {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .is-card {
      border-radius: 16px;
      padding: 1.25rem;
    }

    .is-card.is { background: var(--green-light); }
    .is-card.isnt { background: var(--surface); }

    .is-card h3 {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--green-dark);
      margin-bottom: 12px;
    }

    .is-card.isnt h3 { color: var(--muted); }

    .is-card ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .is-card ul li {
      font-size: 0.8rem;
      color: var(--green-dark);
      padding-left: 18px;
      position: relative;
      line-height: 1.4;
    }

    .is-card.isnt ul li { color: var(--muted); }

    .is-card ul li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
    }

    .is-card.isnt ul li::before { background: var(--border); }

    /* ── About / who's behind it ────────────────────────────── */

    .about-grid {
      display: grid;
      grid-template-columns: 200px 1fr;
      gap: 2rem;
      align-items: start;
    }

    .about-photo {
      text-align: center;
    }

    .about-photo img {
      width: 100%;
      max-width: 200px;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 20px;
      border: 1.5px solid var(--border);
      display: block;
    }

    .about-caption {
      margin-top: 0.75rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
    }

    .about-caption span {
      display: block;
      font-size: 0.75rem;
      font-weight: 400;
      color: var(--muted);
      margin-top: 2px;
    }

    .about-prose p {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 0.9rem;
    }

    .about-prose a {
      color: var(--green-dark);
      font-weight: 500;
    }

    .about-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 1.25rem;
    }

    .about-tag {
      font-size: 12px;
      font-weight: 500;
      color: var(--green-dark);
      background: var(--green-light);
      padding: 5px 12px;
      border-radius: 100px;
    }

    /* ── Featured sites / testimonials ──────────────────────── */

    .testimonial-carousel {
      position: relative;
    }

    .testimonial-track {
      display: flex;
      gap: 1.25rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      padding-bottom: 0.25rem; /* room for focus ring */
    }

    .testimonial-track::-webkit-scrollbar { display: none; }

    .testimonial-card {
      flex: 0 0 calc(50% - 0.625rem); /* 2 visible on desktop */
      scroll-snap-align: start;
      background: var(--surface);
      border-radius: 16px;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .carousel-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .carousel-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1.5px solid var(--border);
      background: var(--white);
      color: var(--text);
      cursor: pointer;
      transition: border-color 0.15s, background 0.15s;
      flex-shrink: 0;
    }

    .carousel-btn:hover:not(:disabled) {
      border-color: var(--green);
      color: var(--green);
    }

    .carousel-btn:disabled {
      opacity: 0.3;
      cursor: default;
    }

    .carousel-dots {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: var(--border);
      cursor: pointer;
      padding: 0;
      transition: background 0.15s, transform 0.15s;
    }

    .carousel-dot.active {
      background: var(--green);
      transform: scale(1.25);
    }

    .testimonial-screenshot {
      width: 100%;
      aspect-ratio: 9 / 16;
      object-fit: cover;
      object-position: top center;
      border-radius: 12px;
      border: 1px solid var(--border);
      box-shadow: 0 8px 24px -12px rgba(0,0,0,0.25);
      margin-bottom: 0.25rem;
    }

    .testimonial-quote {
      font-size: 0.9rem;
      line-height: 1.65;
      color: var(--text);
      font-style: italic;
      flex: 1;
      margin: 0;
    }

    .testimonial-name {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text);
      margin: 0;
    }

    .testimonial-link {
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--green);
      text-decoration: none;
      transition: color 0.15s;
    }

    .testimonial-link:hover { color: var(--green-dark); }

    /* ── Pricing ─────────────────────────────────────────────── */

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

    .pricing-card {
      border-radius: 16px;
      padding: 1.5rem;
      border: 1.5px solid var(--border);
      background: var(--white);
    }

    .pricing-card.featured { border-color: var(--green); }

    .pricing-label {
      font-size: 11px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .pricing-amount {
      font-size: 2rem;
      font-weight: 500;
      color: var(--text);
      line-height: 1;
      margin-bottom: 4px;
      letter-spacing: -0.02em;
    }

    .pricing-amount span {
      font-size: 0.85rem;
      font-weight: 400;
      color: var(--muted);
    }

    .pricing-desc {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.5;
      margin: 10px 0 14px;
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 7px;
    }

    .pricing-features li {
      font-size: 0.8rem;
      color: var(--muted);
      padding-left: 18px;
      position: relative;
    }

    .pricing-features li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 6px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
    }

    /* ── FAQ ─────────────────────────────────────────────────── */

    .faq { display: flex; flex-direction: column; }

    .faq-item {
      border-top: 1px solid var(--border);
      padding: 1.1rem 0;
    }

    .faq-item:last-child { border-bottom: 1px solid var(--border); }

    .faq-q {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text);
      margin-bottom: 6px;
    }

    .faq-a {
      font-size: 0.8rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── CTA band ─────────────────────────────────────────────── */

    .cta-band {
      background: var(--green-light);
      border-top: 1px solid rgba(59,181,74,0.2);
      border-bottom: 1px solid rgba(59,181,74,0.2);
      padding: 3.5rem 2rem;
      text-align: center;
    }

    .cta-band h2 {
      font-size: clamp(1.375rem, 4vw, 1.75rem);
      font-weight: 500;
      color: var(--text);
      margin-bottom: 0.75rem;
      letter-spacing: -0.01em;
    }

    .cta-band p {
      font-size: 0.9rem;
      color: var(--muted);
      margin-bottom: 1.75rem;
      line-height: 1.6;
    }

    /* ── Footer ─────────────────────────────────────────────── */

    footer {
      text-align: center;
      padding: 2.5rem 2rem;
      background: var(--surface);
    }

    footer p {
      font-size: 0.8rem;
      color: var(--muted);
    }

    footer a {
      color: var(--green-dark);
      text-decoration: none;
      font-weight: 500;
    }

    footer a:hover { text-decoration: underline; }

    /* ── Sticky cloud CTA ───────────────────────────────────── */

    .cloud-cta-wrap {
      position: fixed;
      top: 58px;
      right: 14px;
      z-index: 98;
      filter: drop-shadow(0 4px 10px rgba(59,181,74,0.22)) drop-shadow(0 1px 3px rgba(0,0,0,0.09));
    }

    .cloud-cta {
      display: grid;
      text-decoration: none;
      transition: transform 0.18s;
    }

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

    .cloud-cta-svg,
    .cloud-cta-label { grid-row: 1; grid-column: 1; }

    .cloud-cta-svg { display: block; }

    .cloud-cta-label {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 0.7rem;
      color: #267A31;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: -0.01em;
      white-space: nowrap;
    }

    /* Only show on mobile — desktop has the nav-cta */
    @media (min-width: 541px) {
      .cloud-cta-wrap { display: none; }
    }

    /* ── Responsive ─────────────────────────────────────────── */

    @media (max-width: 540px) {
      .domain-grid,
      .is-isnt,
      .pricing-grid { grid-template-columns: 1fr; }

      .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .about-photo img { max-width: 160px; margin: 0 auto; }

      .testimonial-card { flex: 0 0 85%; }

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

      .nav-wordmark { font-size: 22px; }
      .nav-cta { display: none; }

      /* Tighten hero so CTA is above the fold on small screens */
      .hero { min-height: auto; }
      .hero-content { padding: 1.5rem 1.5rem 1.5rem; }
      .hero-content h1 { font-size: 1.75rem; margin-bottom: 0.5rem; }
      .hero-sub { font-size: 0.875rem; margin-bottom: 0.75rem; }
      .hero-price-wrap { margin-bottom: 0.75rem; }
      .price-pill { flex-direction: row; flex-wrap: wrap; gap: 4px; padding: 8px 18px; margin-bottom: 0; font-size: 0.8rem; }
      .price-sep  { display: none; }
      .price-rest { display: none; }
      .price-pill strong { font-size: 1rem; }
    }

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