/* =========================================================
   Seafarer — Modern Static V1 (Dark Mode)
   ========================================================= */

   :root {
    --max: 980px;
  
    /* Backgrounds */
    --bg: #101a30;
    --card: rgba(17, 24, 39, 0.75);      /* slate-900 w/ blur */
    --card-solid: #111827;
  
    /* Text */
    --text: #e5e7eb;                    /* slate-200 */
    --muted: #9ca3af;                   /* slate-400 */
  
    /* UI */
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.35);
  
    /* Accent */
    --link: #60a5fa;                    /* blue-400 */
    --link-hover: #93c5fd;              /* blue-300 */
  
    --radius: 18px;
  }
  
  .logo {
    display: block;
    max-width: 280px;
    margin: 40px auto;
  }
  
  .logo2 {
    display: block;
    max-width: 180px;
    margin: 5px auto;
  }
  

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    background:
      radial-gradient(900px 550px at 20% 0%, rgba(17, 24, 39, 0.75), transparent 100%),
      radial-gradient(900px 550px at 80% 10%, rgba(17, 24, 39, 0.75), transparent 100%),
      var(--bg);
  
    color: var(--text);
  
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto,
      Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
    font-size: 16px;
    line-height: 1.7;
  
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }
  
  .container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 56px 18px;
  }
  
  .card {
    max-width: 820px;
    margin: 0 auto;
    padding: 34px 28px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--card);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
  }
  
  /* Header / hero */
  .hero_title {
    margin-bottom: 22px;
    text-align: center;

  }
  
  .hero {
    margin-bottom: 22px;

  }

  .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
  }
  
  /* Typography */
  h1,
  h2,
  h3 {
    margin: 0 0 10px;
    letter-spacing: -0.02em;
    color: var(--text);
  }
  
  h1 {
    margin-top: 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
  }
  
  .lead {
    margin: 10px 0 0;
    font-size: 18px;
    color: var(--muted);
    max-width: 65ch;
  }

  .lead_title {
    margin: 10px 0 0;
    font-size: 18px;
    color: var(--muted);
    max-width: 65ch;
    text-align: center;
  }
  
  
  p {
    margin: 0 0 14px;
    color: var(--muted);
  }
  
  h2 {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    font-size: clamp(18px, 2.2vw, 22px);
    line-height: 1.25;
  }
  
  /* Lists */
  ul {
    margin: 10px 0 16px;
    padding-left: 18px;
    color: var(--muted);
  }
  
  li {
    margin: 8px 0;
  }
  
  /* Actions / buttons */
  .actions {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    flex-wrap: wrap;
  }
  
  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.35);
    background: rgba(96, 165, 250, 0.18);
    color: var(--link);
    font-weight: 700;
    text-decoration: none;
  }
  
  .button:hover {
    background: rgba(96, 165, 250, 0.26);
    border-color: rgba(96, 165, 250, 0.5);
    color: var(--link-hover);
  }
  
  .button-ghost {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
  }
  
  .button-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  
  /* Links */
  a {
    color: var(--link);
    text-decoration: none;
    text-underline-offset: 3px;
  }
  
  a:hover {
    color: var(--link-hover);
    text-decoration: underline;
  }
  
  /* Footer */
  .footer {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    flex-wrap: wrap;
  }
  
  .footer .dot {
    opacity: 0.5;
  }
  
  /* Media */
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Selection */
  ::selection {
    background: rgba(96, 165, 250, 0.28);
  }
  
  /* Mobile tuning */
  @media (max-width: 640px) {
    .container {
      padding: 42px 14px;
    }
  
    .card {
      padding: 26px 18px;
    }
  
    .lead {
      font-size: 16.5px;
    }


  }
  