<style>
    
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text); font-family: var(--font-b); font-size: 16px; line-height: 1.7; min-height: 100vh; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--surface); }
    ::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

    /* HERO + LOGO merged */
    .hero {
      position: relative;
      padding: 60px 20px 50px;
      text-align: center;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(233,69,96,.18) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 80% 80%, rgba(0,200,255,.1) 0%, transparent 60%);
      pointer-events: none;
    }
    .hero img.logo { width: 150px; height: auto; display: block; margin: 0 auto 24px; position: relative; }
    .hero h1 { font-family: var(--font-d); font-size: clamp(3rem,8vw,4rem); letter-spacing: .04em; line-height: 1; color: #fff; position: relative; }
    .hero h1 span { color: var(--accent); }
    .hero p { margin: 14px auto 28px; max-width: 560px; color: var(--muted); font-size: 1.05rem; position: relative; }

    /* BUTTON */
    .btn { display: inline-block; padding: 13px 32px; border-radius: 8px; font-weight: 500; font-size: .95rem; cursor: pointer; text-decoration: none; border: none; transition: transform .18s, box-shadow .18s; }
    .btn:hover { transform: translateY(-2px); }
    .btn:active { transform: translateY(0); }
    .btn-primary { background: var(--accent); color: #fff; }
    .btn-primary:hover { box-shadow: 0 8px 28px rgba(233,69,96,.45); }

    /* SECTION */
    section { padding: 60px 0; }
    section + section { border-top: 1px solid var(--border); }
    .section-head { margin-bottom: 36px; }
    .section-head h2 { font-family: var(--font-d); font-size: clamp(1.8rem,4vw,2.6rem); letter-spacing: .05em; color: #fff; }
    .section-head h2 span { color: var(--accent); }
    .section-head p { color: var(--muted); margin-top: 6px; }

    /* CARDS */
    .cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
    .card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; transition: transform .22s, border-color .22s; }
    .card:hover { transform: translateY(-5px); border-color: var(--accent); }
    .card-thumb { position: relative; aspect-ratio: 2/3; overflow: hidden; }
    .card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
    .card:hover .card-thumb img { transform: scale(1.06); }
    .badge { position: absolute; top: 8px; right: 8px; background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: .06em; }
    .card-body { padding: 12px 14px 16px; }
    .card-body h3 { font-size: .95rem; font-weight: 500; color: #fff; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .card-meta { font-size: .78rem; color: var(--muted); display: flex; gap: 8px; }
    .rating { color: var(--gold); }

    /* IMG CENTER */
    .img-center { display: block; margin: 0 auto 36px; max-width: 100%; border-radius: var(--r); }

    /* BLOCKQUOTE */
    blockquote { border-left: 4px solid var(--accent); margin: 28px 0; padding: 16px 24px; background: rgba(233,69,96,.07); border-radius: 0 var(--r) var(--r) 0; font-style: italic; color: var(--text); }
    blockquote cite { display: block; margin-top: 8px; font-size: .82rem; color: var(--muted); font-style: normal; }

    /* TABLE */
    .table-wrap { overflow-x: auto; border-radius: var(--r); border: 1px solid var(--border); }
    table { width: 100%; border-collapse: collapse; font-size: .9rem; }
    thead tr { background: var(--surface); }
    th { padding: 14px 16px; text-align: left; font-family: var(--font-d); letter-spacing: .06em; color: var(--accent2); font-size: .85rem; border-bottom: 1px solid var(--border); }
    td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text); }
    tbody tr:last-child td { border-bottom: none; }
    tbody tr:hover { background: rgba(255,255,255,.03); }
    .dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; }
    .dot-green { background: #22c55e; } .dot-yellow { background: var(--gold); } .dot-red { background: var(--accent); }

    /* LIST */
    ul.feature-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
    ul.feature-list li { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 14px 18px; display: flex; align-items: flex-start; gap: 12px; transition: border-color .2s; }
    ul.feature-list li:hover { border-color: var(--accent2); }
    ul.feature-list li .icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    ul.feature-list li strong { display: block; color: #fff; font-size: .9rem; margin-bottom: 2px; }
    ul.feature-list li span { font-size: .82rem; color: var(--muted); }

    /* ARTICLE */
    article { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: clamp(24px,4vw,48px); }
    article h2 { font-family: var(--font-d); font-size: clamp(1.6rem,3.5vw,2.2rem); letter-spacing: .04em; color: #fff; margin-bottom: 8px; }
    article h3 { font-size: 1.05rem; font-weight: 500; color: var(--accent2); margin: 24px 0 8px; }
    article p { color: var(--text); margin-bottom: 14px; }
    article a { color: var(--accent2); text-decoration: underline; text-underline-offset: 3px; }
    article a:hover { color: var(--accent); }
    .article-label { display: inline-block; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); border: 1px solid var(--accent); border-radius: 4px; padding: 2px 8px; margin-bottom: 14px; font-family: var(--font-d); }
    .article-btn { text-align: center; margin-top: 28px; }

    /* FOOTER */
    footer { background: var(--surface); border-top: 1px solid var(--border); padding: 40px 20px; text-align: center; }
    footer p { color: var(--muted); font-size: .85rem; }
    footer a { color: var(--accent); text-decoration: none; }
    footer a:hover { text-decoration: underline; }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .cards { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
      ul.feature-list { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .cards { grid-template-columns: 1fr 1fr; }
    }
  </style>