
    @import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,700;0,9..40,800;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

    :root {
      --bg:           #f5f0e8;
      --bg-soft:      #ede7da;
      --bg-deep:      #e4ddd0;
      --card:         #faf7f2;
      --card-alt:     #f0ebe0;
      --border:       #d9d0c0;
      --border-soft:  rgba(0,0,0,0.07);
      --text:         #2c2416;
      --muted:        #7a6a54;
      --muted-2:      #a8977e;
      --accent:       #2a9d8f;
      --accent-hover: #21867a;
      --accent-soft:  rgba(42, 157, 143, 0.12);
      --accent-glow:  rgba(42, 157, 143, 0.22);
      --yellow:       #e9c46a;
      --yellow-soft:  rgba(233, 196, 106, 0.22);
      --yellow-hover: #d4b05a;
      --sand:         #c9b99a;
      --max:          1120px;
      --radius:       16px;
      --shadow:       0 4px 24px rgba(44, 36, 22, 0.10);
      --shadow-lg:    0 12px 48px rgba(44, 36, 22, 0.14);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      background:
        radial-gradient(ellipse at top right, rgba(42,157,143,0.08), transparent 40%),
        radial-gradient(ellipse at bottom left, rgba(233,196,106,0.12), transparent 40%),
        var(--bg);
      color: var(--text);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    /* ─── HEADER ──────────────────────────────────────── */

    .site-header {
      padding: 20px 0;
      text-align: center;
    }

    .site-header a {
      display: inline-block;
    }

    .site-header img {
      max-height: 80px;
      width: auto;
      display: inline-block;
    }

    /* ─── HERO ────────────────────────────────────────── */

    .hero {
      padding: 80px 0 56px;
    }

    .hero-wrap {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 24px;
      align-items: stretch;
    }

    .hero-main,
    .hero-side {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      box-shadow: var(--shadow-lg);
    }

    .hero-main {
      padding: 44px;
      position: relative;
      overflow: hidden;
    }

    .hero-main::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 90% 10%, rgba(233,196,106,0.18), transparent 30%),
        radial-gradient(circle at 0% 100%, rgba(42,157,143,0.10), transparent 30%);
      pointer-events: none;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      background: var(--accent-soft);
      border: 1px solid rgba(42,157,143,0.22);
      border-radius: 999px;
      padding: 6px 14px;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .hero h1 {
      position: relative;
      margin: 0 0 16px;
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(2.6rem, 5.5vw, 4.4rem);
      line-height: 1.0;
      letter-spacing: -0.02em;
      color: var(--text);
      font-weight: 400;
    }

    .hero p.lead {
      position: relative;
      margin: 0 0 30px;
      color: var(--muted);
      font-size: 1.06rem;
      max-width: 58ch;
      line-height: 1.65;
    }

    /* ─── SEARCH CARD ─────────────────────────────────── */

    .search-card {
      position: relative;
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 18px;
    }

    .search-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
    }

    .search-input {
      width: 100%;
      min-height: 56px;
      border-radius: 12px;
      border: 1.5px solid var(--border);
      background: white;
      color: var(--text);
      padding: 0 18px;
      font-size: 1rem;
      font-family: 'DM Sans', sans-serif;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }

    .search-input::placeholder { color: var(--muted-2); }

    .search-input:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }

    .button {
      min-height: 56px;
      border: 0;
      border-radius: 12px;
      padding: 0 24px;
      background: var(--accent);
      color: white;
      font-family: 'DM Sans', sans-serif;
      font-weight: 800;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.18s ease, transform 0.15s ease, box-shadow 0.15s ease;
      white-space: nowrap;
    }

    .button:hover,
    .button:focus-visible {
      background: var(--accent-hover);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(42,157,143,0.28);
    }

    .button-secondary {
      background: var(--yellow);
      color: var(--text);
    }

    .button-secondary:hover,
    .button-secondary:focus-visible {
      background: var(--yellow-hover);
      box-shadow: 0 6px 20px rgba(233,196,106,0.35);
    }

    .button-ghost {
      background: var(--bg-deep);
      color: var(--text);
    }

    .button-ghost:hover,
    .button-ghost:focus-visible {
      background: var(--bg-soft);
      box-shadow: 0 4px 12px rgba(44,36,22,0.10);
    }

    .search-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.92rem;
    }

    .search-links a {
      color: var(--muted);
      transition: color 0.2s;
    }

    .search-links a:hover { color: var(--accent); }

    /* ─── HERO SIDE ───────────────────────────────────── */

    .hero-side {
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 20px;
    }

    .stat-block h2 {
      margin: 0 0 8px;
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.3rem;
      font-weight: 400;
      letter-spacing: -0.01em;
      color: var(--text);
    }

    .stat-block p {
      margin: 0;
      color: var(--muted);
      font-size: 0.96rem;
    }

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

    .tld-chip {
      background: var(--bg-soft);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 12px 14px;
      transition: border-color 0.2s, background 0.2s;
    }

    .tld-chip:hover {
      border-color: var(--accent);
      background: var(--accent-soft);
    }

    .tld-chip strong {
      display: block;
      font-size: 1.05rem;
      margin-bottom: 3px;
      color: var(--text);
    }

    .tld-chip span {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .note {
      color: var(--muted-2);
      font-size: 0.88rem;
      line-height: 1.5;
      margin: 0;
    }

    /* ─── SECTIONS ────────────────────────────────────── */

    .section {
      padding: 30px 0 70px;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 28px;
    }

    .section-heading h2 {
      margin: 0;
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .section-heading p {
      margin: 0;
      color: var(--muted);
      max-width: 52ch;
      font-size: 0.97rem;
    }

    /* ─── CARDS ───────────────────────────────────────── */

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

    .card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .card .icon {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: inline-grid;
      place-items: center;
      margin-bottom: 18px;
      background: var(--accent-soft);
      color: var(--accent);
      font-weight: 800;
      font-size: 1.1rem;
      border: 1px solid rgba(42,157,143,0.18);
    }

    .card h3 {
      margin: 0 0 10px;
      font-size: 1.18rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .card p {
      margin: 0 0 18px;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .card a {
      color: var(--accent);
      font-weight: 700;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .card a:hover { color: var(--accent-hover); }

    /* ─── PRICING CARDS ───────────────────────────────── */

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

    .price-card {
      position: relative;
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 26px;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .price-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .price-card.featured {
      border-color: var(--accent);
      box-shadow: 0 0 0 1px var(--accent-glow), var(--shadow-lg);
      background: linear-gradient(160deg, #f0faf9, var(--card) 60%);
    }

    .badge {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 0.76rem;
      background: var(--accent-soft);
      color: var(--accent);
      border: 1px solid rgba(42,157,143,0.25);
      padding: 5px 10px;
      border-radius: 999px;
      font-weight: 700;
      letter-spacing: 0.04em;
    }

    .price-card h3 {
      margin: 0 0 10px;
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .price-card .price {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.8rem;
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--text);
      margin-bottom: 6px;
    }

    .price-card .meta {
      color: var(--muted);
      font-size: 0.93rem;
    }

    .price-card ul {
      padding-left: 18px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 0.93rem;
    }

    .price-card li {
      margin-bottom: 6px;
    }

    /* ─── TRUST STRIP ─────────────────────────────────── */

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .trust-item {
      border: 1px solid var(--border);
      background: var(--card);
      border-radius: 14px;
      padding: 16px;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .trust-item strong {
      display: block;
      margin-bottom: 5px;
      font-size: 0.96rem;
      color: var(--text);
    }

    .trust-item .note {
      font-size: 0.84rem;
    }

    /* ─── CTA BAND ────────────────────────────────────── */

    .cta-band {
      padding: 20px 0 80px;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      background: linear-gradient(120deg, var(--accent-soft), var(--yellow-soft));
      border: 1px solid rgba(42,157,143,0.20);
      border-radius: 20px;
      padding: 32px;
    }

    .cta-panel h2 {
      margin: 0 0 8px;
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: clamp(1.6rem, 3.5vw, 2.2rem);
      font-weight: 400;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .cta-panel p {
      margin: 0;
      color: var(--muted);
      max-width: 56ch;
      font-size: 0.97rem;
    }

    /* ─── FOOTER ──────────────────────────────────────── */

    .site-footer {
      border-top: 1px solid var(--border);
      background: var(--bg-deep);
      padding: 40px 0 48px;
    }

    .footer-wrap {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand .brand {
      margin-bottom: 14px;
      display: inline-flex;
    }

    .footer-brand p {
      color: var(--muted);
      font-size: 0.93rem;
      margin: 0;
      max-width: 32ch;
      line-height: 1.6;
    }

    .footer-col h3 {
      margin: 0 0 14px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--muted-2);
    }

    .footer-col ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-col a {
      color: var(--muted);
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .footer-col a:hover { color: var(--accent); }

    .footer-bottom {
      margin-top: 32px;
      padding-top: 20px;
      border-top: 1px solid var(--border);
      color: var(--muted-2);
      font-size: 0.90rem;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .muted-link { color: var(--muted); }
    .muted-link:hover { color: var(--accent); }

    /* ─── DOMAIN RESULT STATES ────────────────────────── */

    .price-card.available {
      border-color: var(--accent);
    }

    .price-card.unavailable {
      opacity: 0.75;
    }

    /* ─── RESPONSIVE ──────────────────────────────────── */

    @media (max-width: 980px) {
      .hero-wrap,
      .grid-3,
      .pricing-grid,
      .footer-wrap,
      .cta-panel,
      .trust-strip {
        grid-template-columns: 1fr;
      }


    }

    @media (max-width: 640px) {
      .container {
        width: min(var(--max), calc(100% - 24px));
      }

      .hero {
        padding-top: 40px;
      }

      .hero-main,
      .hero-side,
      .card,
      .price-card,
      .cta-panel {
        padding: 20px;
      }

      .search-row {
        grid-template-columns: 1fr;
      }

      .button {
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
      }
    }

    /* ─── TLD PRICING GRID ────────────────────────────────── */

    .tld-pricing-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 12px;
    }

    .tld-price-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 18px 12px;
      text-align: center;
      box-shadow: var(--shadow);
      transition: box-shadow 0.2s, transform 0.2s;
    }

    .tld-price-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .tld-price-ext {
      font-family: 'DM Serif Display', Georgia, serif;
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--accent);
      margin-bottom: 8px;
    }

    .tld-price-was {
      display: block;
      font-size: 0.82rem;
      color: var(--muted-2);
      text-decoration: line-through;
      margin-bottom: 2px;
    }

    .tld-price-now {
      display: block;
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .tld-price-label {
      font-size: 0.78rem;
      color: var(--muted-2);
      margin-top: 4px;
    }

    @media (max-width: 980px) {
      .tld-pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .tld-pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
