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

  :root {
    --teal-50: #E1F5EE;
    --teal-200: #5DCAA5;
    --teal-400: #1D9E75;
    --teal-600: #0F6E56;
    --teal-800: #085041;
    --teal-900: #04342C;
    --sage: #2D4A3E;
    --sage-light: #3D6B5A;
    --cream: #F5F0E8;
    --cream-dark: #E8E0D0;
    --ink: #1A1F1C;
    --ink-soft: #3A4040;
    --muted: #6B7B74;
    --online: #3BA55D;
    --idle: #FAA61A;
    --dnd: #ED4245;
    --offline: #747F8D;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* ── SOFTER NOISE TEXTURE ── */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
  }

  /* ── GLASS NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 4rem;
    background: rgba(245, 240, 232, 0.78);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border-bottom: 1px solid rgba(29, 158, 117, 0.1);
    box-shadow: 0 1px 24px rgba(0,0,0,0.03);
  }

  .nav-logo {
    position: absolute;
    left: 4rem;
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--teal-600);
    letter-spacing: 0.12em;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  .nav-logo:hover { opacity: 0.8; }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: all 0.25s;
    position: relative;
    padding: 0.25rem 0;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--teal-400);
    transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
  }

  .nav-links a:hover { color: var(--teal-600); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    background: var(--teal-600);
    color: white !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2rem;
    font-weight: 500 !important;
    transition: all 0.25s !important;
    box-shadow: 0 4px 16px rgba(15,110,86,0.2);
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--teal-400) !important; color: white !important; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(15,110,86,0.3); }

  /* ── HAMBURGER TOGGLE ── */
  .nav-toggle {
    display: none;
    position: absolute;
    right: 4rem;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 110;
  }
  .nav-toggle .bar {
    width: 24px;
    height: 2.5px;
    background: var(--ink-soft);
    border-radius: 2px;
    transition: 0.3s;
  }
  .nav-toggle.active .bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.active .bar:nth-child(2) { opacity: 0; }
  .nav-toggle.active .bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ── MOBILE MENU ── */
  .mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.35);
    z-index: 98;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .mobile-overlay.open { display: block; opacity: 1; pointer-events: auto; }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100vh;
    background: var(--cream);
    z-index: 99;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5.5rem 2rem 2rem;
    box-shadow: -8px 0 32px rgba(0,0,0,0.06);
    overflow-y: auto;
  }
  .mobile-menu.open { transform: translateX(0); }

  .mobile-menu .nav-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
  }
  .mobile-menu .nav-links a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-soft);
    text-decoration: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: color 0.2s;
  }
  .mobile-menu .nav-links a:hover { color: var(--teal-600); }
  .mobile-menu .nav-links a::after { display: none; }

  @media (max-width: 900px) {
    nav { padding: 0.85rem 1.5rem; }
    .nav-logo { left: 1.5rem; }
    .theme-switch { display: none; }
    .nav-toggle { right: 1.5rem; display: flex; }
    .mobile-menu { display: block; }
    .mobile-overlay { display: block; }
  }

  /* ── HERO 2-COL LAYOUT ── */
  .hero-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .hero-right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* ── HERO ILLUSTRATION ── */
  .hero-illustration {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(29,158,117,0.06) 0%, rgba(93,202,165,0.1) 100%);
    border: 1px solid rgba(29,158,117,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    box-shadow: 0 4px 24px rgba(29,158,117,0.06), 0 1px 4px rgba(0,0,0,0.02);
    transition: box-shadow 0.3s;
  }
  .hero-illustration:hover { box-shadow: 0 8px 40px rgba(29,158,117,0.1); }

  .hero-illus-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: contain;
    max-height: 220px;
  }

  /* ── HERO ── */
  .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 7rem 6rem 3rem;
  overflow: hidden;
  }

  .hero-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,158,117,0.1) 0%, transparent 70%);
    pointer-events: none;
  }
  .hero-bg-circle.c1 { width: 700px; height: 700px; top: -200px; right: -100px; }
  .hero-bg-circle.c2 { width: 500px; height: 500px; bottom: -100px; left: -150px; background: radial-gradient(circle, rgba(29,158,117,0.06) 0%, transparent 70%); }

  .hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  text-align: left;
  margin-left: 0;
  margin-right: auto;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(29,158,117,0.1);
    color: var(--teal-600);
    border: 1px solid rgba(29,158,117,0.2);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 2rem;
    text-transform: uppercase;
    box-shadow: 0 1px 3px rgba(29,158,117,0.05);
  }

  .hero-badge .pulse {
    width: 7px; height: 7px;
    background: var(--online);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    line-height: 1.05;
    color: var(--ink);
    margin-bottom: 0.3rem;
  }

  .hero h1 span {
    color: var(--teal-400);
    font-style: italic;
    text-shadow: 0 2px 12px rgba(29,158,117,0.1);
  }

  .hero-tagline {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    color: var(--teal-400);
    letter-spacing: 0.12em;
    margin-bottom: 1.5rem;
    margin-top: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .hero-tagline .tag-word {
    display: inline-block;
  }

  .hero-tagline .tag-dot {
    color: rgba(29,158,117,0.35);
    font-size: 1rem;
  }

  .hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--ink-soft);
    max-width: 520px;
    margin-bottom: 2.5rem;
  }

  .hero-stats {
    display: flex;
    gap: 0;
    margin-bottom: 2.5rem;
    background: white;
    border: 1px solid rgba(29,158,117,0.12);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(29,158,117,0.06);
  }
  .hero-stats:hover { box-shadow: 0 8px 32px rgba(29,158,117,0.1); }

  .hero-stat-item {
    flex: 1;
    padding: 1.2rem 1.4rem;
    border-right: 1px solid rgba(29,158,117,0.08);
    text-align: center;
    transition: background 0.25s;
  }

  .hero-stat-item:last-child { border-right: none; }
  .hero-stat-item:hover { background: rgba(29,158,117,0.03); }

  .hero-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 2.2rem;
    color: var(--teal-600);
    line-height: 1;
  }

  .hero-stat-label {
    font-size: 0.7rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
  }

  /* Hero right panel */
  .hero-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .hero-right-card {
    background: white;
    border: 1px solid rgba(29,158,117,0.12);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 8px 40px rgba(29,158,117,0.06), 0 1px 4px rgba(0,0,0,0.02);
    position: relative;
    z-index: 2;
    transition: box-shadow 0.3s;
  }
  .hero-right-card:hover { box-shadow: 0 12px 48px rgba(29,158,117,0.1); }

  .hero-right-card .stat-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .hero-right-stat {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    background: var(--cream);
    border: 1px solid rgba(29,158,117,0.08);
    transition: all 0.25s;
    cursor: default;
  }

  .hero-right-stat:hover {
    border-color: rgba(29,158,117,0.25);
    background: rgba(29,158,117,0.04);
    transform: translateX(4px);
  }

  .hero-right-stat-icon {
    width: 44px; height: 44px;
    background: var(--teal-50);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: transform 0.25s;
  }
  .hero-right-stat:hover .hero-right-stat-icon { transform: scale(1.05); }

  .hero-right-stat-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: var(--teal-600);
    line-height: 1;
  }

  .hero-right-stat-label {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
  }

  .hero-right-desc {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(29,158,117,0.08);
  }

  .hero-right-desc p {
    font-size: 0.88rem;
    color: var(--ink-soft);
    line-height: 1.7;
  }

  .hero-right-desc strong {
    color: var(--teal-600);
    font-weight: 600;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-600);
    color: white;
    padding: 0.85rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(15,110,86,0.2);
    border: none;
    cursor: pointer;
  }
  .btn-primary:hover {
    background: var(--teal-400);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(15,110,86,0.35);
  }
  .btn-primary:active {
    transform: translateY(-1px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-600);
    padding: 0.85rem 1.5rem;
    border-radius: 3rem;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    border: 1.5px solid rgba(29,158,117,0.3);
    transition: all 0.3s;
    cursor: pointer;
    background: transparent;
  }
  .btn-secondary:hover {
    border-color: var(--teal-400);
    background: rgba(29,158,117,0.06);
    transform: translateY(-2px);
  }

  /* ── DISCORD WIDGET STRIP ── */
  .widget-strip {
    background: var(--sage);
    padding: 0.9rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
  }

  .widget-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.02), transparent 30%, transparent 70%, rgba(255,255,255,0.02));
    pointer-events: none;
  }

  .widget-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .widget-server-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.25rem;
    color: white;
    letter-spacing: 0.06em;
  }

  .widget-online {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
  }

  .widget-online .dot {
    width: 8px; height: 8px;
    background: var(--online);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(59,165,93,0.4);
  }

  /* avatar scroll */
  .avatar-scroll-wrap {
    flex: 1;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }

  .avatar-scroll {
    display: flex;
    gap: 0;
    animation: scrollAvatar 40s linear infinite;
    width: max-content;
  }

  .avatar-scroll:hover {
    animation-play-state: paused;
  }

  @keyframes scrollAvatar {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  .avatar-item {
    position: relative;
    flex-shrink: 0;
    margin-right: -8px;
    transition: transform 0.2s;
  }
  .avatar-item:hover { transform: translateY(-2px); z-index: 2; }

  .avatar-item img {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--sage);
    object-fit: cover;
    display: block;
    transition: border-color 0.2s;
  }
  .avatar-item:hover img { border-color: var(--teal-200); }

  .status-dot {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid var(--sage);
  }
  .status-dot.online { background: var(--online); }
  .status-dot.idle { background: var(--idle); }
  .status-dot.dnd { background: var(--dnd); }
  .status-dot.offline { background: var(--offline); }

  /* ── ABOUT — HELIX ACRONYM ── */
  .section {
    padding: 6rem 4rem;
    position: relative;
    min-height: 100vh;
  }

  .section-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.73rem;
    color: var(--teal-400);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .section-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
  }

  .section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 3.5rem;
  }

  .helix-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }

  .helix-card {
    background: white;
    border: 1px solid rgba(29,158,117,0.1);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }

  .helix-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-200));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .helix-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(29,158,117,0.12);
    border-color: rgba(29,158,117,0.2);
  }
  .helix-card:hover::before { transform: scaleX(1); }

  .helix-letter {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    color: rgba(29,158,117,0.12);
    line-height: 1;
    margin-bottom: 0.4rem;
    font-style: italic;
    transition: color 0.3s;
  }
  .helix-card:hover .helix-letter { color: rgba(29,158,117,0.25); }

  .helix-card-title {
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--teal-600);
    margin-bottom: 0.5rem;
    letter-spacing: 0.02em;
  }

  .helix-card-desc {
    font-size: 0.78rem;
    color: var(--ink-soft);
    line-height: 1.6;
  }

  /* ── FOCUS PILLARS ── */
  .pillars-section {
    background: var(--sage);
    position: relative;
    overflow: hidden;
  }

  .pillars-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px; height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    pointer-events: none;
  }

  .pillars-section .section-title,
  .pillars-section .section-label {
    color: white;
  }

  .pillars-section .section-sub { color: rgba(255,255,255,0.5); }

  .pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .pillar-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(4px);
  }

  .pillar-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(93,202,165,0.06), transparent);
    pointer-events: none;
  }

  .pillar-card:hover {
    background: rgba(255,255,255,0.09);
    border-color: rgba(93,202,165,0.35);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  }

  .pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    display: block;
    transition: transform 0.35s;
  }
  .pillar-card:hover .pillar-icon { transform: scale(1.1); }

  .pillar-name {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.8rem;
  }

  .pillar-tag {
    display: inline-block;
    background: rgba(93,202,165,0.15);
    color: var(--teal-200);
    font-size: 0.7rem;
    padding: 0.25rem 0.8rem;
    border-radius: 2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(93,202,165,0.15);
  }

  .pillar-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
  }

  /* ── RULES ── */
  .aturan-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
  }

  .aturan-layout .disclaimer-box {
    margin-bottom: 0;
    height: 100%;
  }

  .rule-card {
    background: white;
    border: 1px solid rgba(29,158,117,0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    height: 100%;
  }

  .rule-card:hover { box-shadow: 0 8px 30px rgba(29,158,117,0.06); border-color: rgba(29,158,117,0.15); }

  .rule-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
  }

  .rule-num {
    width: 36px; height: 36px;
    background: var(--teal-50);
    color: var(--teal-600);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 1rem;
    flex-shrink: 0;
    font-weight: 600;
  }

  .rule-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--ink);
    letter-spacing: 0.02em;
  }

  .rule-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .rule-items li {
    font-size: 0.82rem;
    color: var(--ink-soft);
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
  }

  .rule-items li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--teal-200);
    font-size: 0.8rem;
  }

  /* ── DISCLAIMER ── */
  .disclaimer-box {
    background: rgba(237,66,69,0.04);
    border: 1px solid rgba(237,66,69,0.15);
    border-radius: 16px;
    padding: 2rem 2.5rem;
    margin-bottom: 3.5rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: border-color 0.3s;
  }
  .disclaimer-box:hover { border-color: rgba(237,66,69,0.25); }

  .disclaimer-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
  }

  .disclaimer-title {
    font-weight: 600;
    color: #c0392b;
    font-size: 0.88rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .disclaimer-items {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .disclaimer-items li {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
  }

  .disclaimer-items li::before {
    content: '⊘';
    position: absolute;
    left: 0;
    color: rgba(237,66,69,0.4);
    font-size: 0.75rem;
    top: 2px;
  }

  /* ── RULES SLIDER (Swiper) ── */
  .rules-slider-wrap {
    background: white;
    border: 1px solid rgba(29,158,117,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(29,158,117,0.04);
  }

  .rules-slider-wrap .swiper {
    width: 100%;
    padding-bottom: 4.5rem !important;
  }

  .rules-slider-wrap .rule-card {
    border: none;
    border-radius: 0;
    box-shadow: none;
    height: 100%;
  }

  /* Tombol navigasi */
  .rules-slider-wrap .swiper-button-prev,
  .rules-slider-wrap .swiper-button-next {
    width: 34px;
    height: 34px;
    background: white;
    border: 1.5px solid rgba(29,158,117,0.2);
    border-radius: 50%;
    color: var(--teal-600) !important;
    transition: all 0.3s;
    top: auto;
    bottom: 0.6rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }

  .rules-slider-wrap .swiper-button-prev { left: calc(50% - 56px); }
  .rules-slider-wrap .swiper-button-next { right: calc(50% - 56px); }

  .rules-slider-wrap .swiper-button-prev::after,
  .rules-slider-wrap .swiper-button-next::after {
    font-size: 0.75rem;
    font-weight: 700;
  }

  .rules-slider-wrap .swiper-button-prev:hover,
  .rules-slider-wrap .swiper-button-next:hover {
    background: var(--teal-600);
    border-color: var(--teal-600);
    color: white !important;
    transform: scale(1.05);
  }

  /* Scrollbar */
  .rules-slider-wrap .swiper-scrollbar {
    bottom: 0.35rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: rgba(29,158,117,0.1);
    border-radius: 2px;
  }

  .rules-slider-wrap .swiper-scrollbar-drag {
    background: var(--teal-400);
    border-radius: 2px;
  }

  /* ── LEVELS ── */
  .levels-section {
    background: var(--cream-dark);
  }

  .levels-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
  }

  .level-item {
    background: white;
    border: 1px solid rgba(29,158,117,0.08);
    border-radius: 12px;
    padding: 1.4rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }

  .level-item:hover {
    border-color: rgba(29,158,117,0.25);
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(29,158,117,0.06);
  }

  .level-badge {
    background: var(--teal-50);
    color: var(--teal-600);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.73rem;
    font-weight: 600;
    padding: 0.3rem 0;
    border-radius: 0.5rem;
    white-space: nowrap;
    flex-shrink: 0;
    width: 5.5rem;
    min-width: 5.5rem;
    text-align: center;
    display: block;
  }

  .level-text { flex: 1; min-width: 0; }

  .level-role {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ink);
    margin-bottom: 0.2rem;
  }

  .level-desc {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.45;
  }

  .level-bar {
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: 5px;
    background: var(--cream-dark);
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
  }

  .level-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--teal-400), var(--teal-200));
    border-radius: 3px;
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* ── MEMBERS ── */
  .members-section {
    background: var(--sage);
    overflow: hidden;
  }

  .members-section .section-title,
  .members-section .section-label { color: white; }
  .members-section .section-sub { color: rgba(255,255,255,0.5); }

  .members-wrap {
    position: relative;
    max-height: 500px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .members-wrap.expanded {
    max-height: none;
  }

  .members-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(transparent, var(--sage));
    pointer-events: none;
    transition: opacity 0.5s;
  }

  .members-wrap.expanded::after {
    opacity: 0;
    pointer-events: none;
  }

  .members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.85rem;
  }

  .members-toggle {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
    position: relative;
    z-index: 2;
  }

  .members-toggle button {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
    padding: 0.6rem 1.8rem;
    border-radius: 2rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
  }

  .members-toggle button:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(93,202,165,0.3);
    color: white;
  }

  .members-toggle button .arrow {
    display: inline-block;
    transition: transform 0.35s;
    font-size: 0.9rem;
  }

  .members-toggle button .arrow.open {
    transform: rotate(180deg);
  }

  .member-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.25s;
  }

  .member-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(93,202,165,0.25);
    transform: translateY(-2px);
  }

  .member-avatar {
    position: relative;
    flex-shrink: 0;
  }

  .member-avatar img {
    width: 42px; height: 42px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid rgba(255,255,255,0.08);
    transition: border-color 0.2s;
  }
  .member-card:hover .member-avatar img { border-color: rgba(93,202,165,0.3); }

  .member-avatar .sdot {
    position: absolute;
    bottom: 1px; right: 1px;
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 2px solid var(--sage);
    box-shadow: 0 0 4px rgba(0,0,0,0.2);
  }

  .member-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
    word-break: break-word;
  }

  .member-activity {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.3);
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  .member-voice {
    font-size: 0.68rem;
    color: #3BA55D;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  /* ── QUOTE / CTA ── */
  .cta-section {
    text-align: center;
    padding: 7rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
  }

  .cta-section::before {
    content: '"';
    font-family: 'DM Serif Display', serif;
    font-size: 30rem;
    color: rgba(29,158,117,0.03);
    position: absolute;
    top: -8rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
    pointer-events: none;
    font-style: italic;
  }

  .cta-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-style: italic;
    color: var(--ink);
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto 0.8rem;
    position: relative;
  }

  .cta-attr {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    margin-bottom: 3rem;
  }

  /* ── SOCIAL SECTION ── */
  .social-section {
    background: var(--cream-dark);
    padding: 3rem 4rem;
    text-align: center;
    border-top: 1px solid rgba(29,158,117,0.1);
  }

  .social-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
  }

  .social-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1.5px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
  }

  .social-icon-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), transparent);
    pointer-events: none;
  }

  .social-icon-btn:hover {
    background: var(--teal-600);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(15,110,86,0.35);
    border-color: var(--teal-600);
  }

  /* ── FOOTER MAIN ── */
  .footer-main {
    background: var(--ink);
    color: rgba(255,255,255,0.5);
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 3rem;
    padding: 4rem 4rem 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .footer-logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: white;
    letter-spacing: 0.12em;
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .footer-logo-sub {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
    margin-bottom: 1.2rem;
  }

  .footer-logo-sub em {
    color: var(--teal-200);
    font-style: italic;
  }

  .footer-brand-desc {
    font-size: 0.75rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.25);
    max-width: 280px;
  }

  .footer-col-title {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.2rem;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: all 0.2s;
    display: flex;
    align-items: center;
  }

  .footer-links a:hover { color: var(--teal-200); transform: translateX(3px); }

  .footer-join-desc {
    font-size: 0.8rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1.2rem;
  }

  .footer-join-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--teal-600);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(15,110,86,0.2);
  }

  .footer-join-btn:hover {
    background: var(--teal-400);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15,110,86,0.35);
  }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 4rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.2);
  }

  .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
  }

  .footer-bottom-links a {
    color: rgba(255,255,255,0.2);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-bottom-links a:hover { color: var(--teal-200); }

  /* ── ANIMATIONS ── */
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .fade-in.visible { opacity: 1; transform: translateY(0); }

  /* ── FAQ ── */
  .faq-section {
    background: var(--cream-dark);
  }

  .faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .faq-item {
    background: white;
    border: 1px solid rgba(29,158,117,0.1);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }

  .faq-item:hover { border-color: rgba(29,158,117,0.2); }
  .faq-item.open {
    border-color: rgba(29,158,117,0.3);
    box-shadow: 0 4px 24px rgba(29,158,117,0.08);
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.3rem 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    transition: color 0.2s;
  }

  .faq-question:hover { color: var(--teal-600); }

  .faq-icon {
    width: 28px; height: 28px;
    background: var(--teal-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--teal-600);
    font-size: 1.1rem;
    font-weight: 300;
    transition: transform 0.35s, background 0.3s, color 0.3s;
    line-height: 1;
  }

  .faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--teal-400);
    color: white;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s;
    padding: 0 1.8rem;
  }

  .faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.4rem;
  }

  .faq-answer p {
    font-size: 0.85rem;
    color: var(--ink-soft);
    line-height: 1.75;
    border-top: 1px solid rgba(29,158,117,0.08);
    padding-top: 1rem;
  }

  @media (max-width: 768px) {
    .aturan-layout { grid-template-columns: 1fr; }
    nav { padding: 1rem 1.5rem; }
    .nav-links { display: none; }
    .hero, .section, .cta-section { padding: 5rem 1.5rem 3rem; }
    .widget-strip { padding: 0.8rem 1.5rem; flex-wrap: wrap; gap: 1rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; padding: 1.2rem 1.5rem; }
    .social-section { padding: 2.5rem 1.5rem; }
    .helix-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-two-col { grid-template-columns: 1fr; gap: 2rem; }
    .hero-right { display: none; }
    .hero-stats { flex-direction: column; gap: 0; }
    .hero-actions { flex-direction: column; align-items: stretch; }
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary { text-align: center; justify-content: center; }

    .levels-list { max-width: 100%; }

    .level-item {
      display: grid;
      grid-template-columns: auto 1fr;
      grid-template-rows: auto auto;
      gap: 0.5rem 0.8rem;
      padding: 1rem 1.1rem;
      align-items: center;
      transform: none !important;
    }

    .level-badge {
      grid-column: 1;
      grid-row: 1;
      width: auto;
      min-width: 4.2rem;
    }

    .level-text {
      grid-column: 2;
      grid-row: 1;
    }

    .level-role { margin-bottom: 0; }

    .level-desc { display: none; }

    .level-text .level-desc {
      display: block;
      font-size: 0.75rem;
      margin-top: 0.15rem;
    }

    .level-bar {
      grid-column: 1 / -1;
      grid-row: 2;
      width: 100%;
      min-width: unset;
      max-width: unset;
      height: 5px;
    }

    .members-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
  }

  /* ── DARK MODE ── */
  [data-theme="dark"] {
    --cream: #141816;
    --cream-dark: #1A1F1C;
    --ink: #E8E0D0;
    --ink-soft: #B0B8B0;
    --muted: #7A8A83;
    --sage: #1B2F26;
    --sage-light: #2A4A3E;
    --teal-50: #0A2E24;
    --teal-200: #7ADBBB;
    --teal-400: #2BB88A;
    --teal-600: #1D9E75;
  }

  [data-theme="dark"] body {
    background: #141816;
  }

  [data-theme="dark"] body::before {
    opacity: 0.08;
  }

  [data-theme="dark"] nav {
    background: rgba(20, 24, 22, 0.85);
    border-bottom-color: rgba(29, 158, 117, 0.08);
  }

  [data-theme="dark"] .mobile-menu {
    background: var(--cream-dark);
  }

  [data-theme="dark"] .hero-stats,
  [data-theme="dark"] .hero-right-card,
  [data-theme="dark"] .helix-card,
  [data-theme="dark"] .rule-card,
  [data-theme="dark"] .rules-slider-wrap,
  [data-theme="dark"] .level-item,
  [data-theme="dark"] .faq-item,
  [data-theme="dark"] .stats-bar,
  [data-theme="dark"] .staff-card {
    background: #1E2220;
    border-color: rgba(29, 158, 117, 0.1);
  }

  [data-theme="dark"] .hero-right-stat {
    background: rgba(20, 24, 22, 0.6);
  }

  [data-theme="dark"] .hero-stat-item {
    border-color: rgba(29, 158, 117, 0.08);
  }

  [data-theme="dark"] .hero-stat-item:hover {
    background: rgba(29, 158, 117, 0.04);
  }

  [data-theme="dark"] .hero-badge {
    background: rgba(29, 158, 117, 0.15);
  }

  [data-theme="dark"] .rules-slider-wrap .swiper-button-prev,
  [data-theme="dark"] .rules-slider-wrap .swiper-button-next {
    background: #1E2220;
  }

  [data-theme="dark"] .disclaimer-box {
    background: rgba(237, 66, 69, 0.06);
    border-color: rgba(237, 66, 69, 0.12);
  }

  [data-theme="dark"] .cta-section::before {
    color: rgba(29, 158, 117, 0.05);
  }

  [data-theme="dark"] .level-badge {
    background: rgba(29, 158, 117, 0.12);
  }

  [data-theme="dark"] .level-item[style*="border-color"] {
    border-color: rgba(29, 158, 117, 0.2) !important;
    background: rgba(29, 158, 117, 0.04) !important;
  }

  [data-theme="dark"] .faq-icon {
    background: rgba(29, 158, 117, 0.12);
  }

  [data-theme="dark"] .social-section {
    background: #1E2220;
    border-top-color: rgba(29,158,117,0.06);
  }

  [data-theme="dark"] .social-icon-btn {
    background: #2A302E;
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.06);
  }

  [data-theme="dark"] .social-icon-btn:hover {
    background: var(--teal-600);
    color: white;
    border-color: var(--teal-600);
  }

  [data-theme="dark"] .footer-main {
    background: #1A1F1C;
  }

  [data-theme="dark"] .footer-logo-text,
  [data-theme="dark"] .footer-col-title {
    color: white;
  }

  [data-theme="dark"] .footer-logo-sub,
  [data-theme="dark"] .footer-brand-desc,
  [data-theme="dark"] .footer-join-desc,
  [data-theme="dark"] .footer-main,
  [data-theme="dark"] .footer-bottom {
    color: rgba(255,255,255,0.5);
  }

  [data-theme="dark"] .footer-links a,
  [data-theme="dark"] .footer-bottom-links a {
    color: rgba(255,255,255,0.45);
  }

  [data-theme="dark"] .footer-links a:hover,
  [data-theme="dark"] .footer-bottom-links a:hover {
    color: var(--teal-200);
  }

  [data-theme="dark"] .footer-inner {
    border-bottom-color: rgba(255,255,255,0.06);
  }

  /* ── THEME TOGGLE (SWITCH) ── */
  .theme-switch {
    position: absolute;
    right: 4rem;
    display: inline-block;
    width: 46px;
    height: 24px;
    flex-shrink: 0;
    cursor: pointer;
  }

  .theme-switch input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    pointer-events: none;
  }

  .theme-slider {
    position: absolute;
    pointer-events: none;
    inset: 0;
    background: #E1F5EE;
    border: 1.5px solid rgba(29, 158, 117, 0.2);
    border-radius: 24px;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    align-items: center;
    padding: 0 3px;
  }

  .theme-slider-icons {
    pointer-events: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    line-height: 1;
    position: relative;
    z-index: 1;
    padding: 0 1px;
  }

  .theme-slider-knob {
    pointer-events: none;
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
  }

  .theme-switch:hover .theme-slider {
    border-color: var(--teal-400);
  }

  [data-theme="dark"] .theme-slider {
    background: #0F6E56;
    border-color: rgba(93, 202, 165, 0.25);
  }

  [data-theme="dark"] .theme-slider-knob {
    transform: translateX(22px);
    background: #085041;
  }

  [data-theme="dark"] .theme-switch:hover .theme-slider {
    border-color: var(--teal-200);
  }

  .mobile-theme-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    cursor: pointer;
  }

  .mobile-theme-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink-soft);
  }

  [data-theme="dark"] .mobile-theme-row {
    border-bottom-color: rgba(255,255,255,0.05);
  }
