  :root {
    --ink:        #1f1f1e;
    --ink-mid:    #4a4946;
    --ink-muted:  #7a7873;
    --ink-faint:  #b5b3ad;
    --paper:      #f4f2ec;
    --card:       #ebe9e0;
    --border:     #dfddd4;

    /* Warna tinta/coretan */
    --green:      #237a54;
    --amber:      #b36d00;
    --red:        #b83b2e;

    /* Warna stabilo/highlighter */
    --hl-green:   #c2e0d3;
    --hl-amber:   #f0dc9a;
    --hl-red:     #f0c0bc;
    --hl-yellow:  #ece485; /* Stabilo kuning terang khas buku catatan */
    --hl-blue:    #bae6fd; /* Stabilo biru untuk CTA */

    --notebook-line:   #e6e3db;
    --notebook-margin: #e8c4c4;
    --postit-bg:       #fefce8;
    --postit-tape:     #e8e4c8;
    --postit-shadow:   rgba(0, 0, 0, 0.05);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    background-color: var(--paper);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    color: var(--ink);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
  }

  .container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ─── ANIMATIONS ─── */
  @keyframes heroFade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes revealUp {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes revealUpRotated {
    from { opacity: 0; transform: translateY(14px) rotate(var(--rot)); }
    to   { opacity: 1; transform: translateY(0) rotate(var(--rot)); }
  }
  @keyframes drawLine {
    from { width: 0; }
    to { width: 100%; }
  }
  @keyframes drawMarker {
    from { width: 0; }
    to { width: calc(100% + 12px); }
  }

  .will-reveal { opacity: 0; }
  .in-view { animation: revealUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

  @media (prefers-reduced-motion: reduce) {
    .will-reveal { opacity: 1; }
    .in-view { animation: none; }
    .pick-card-item.in-view { animation: none; opacity: 1; transform: rotate(var(--rot)); }
    .hl-effect::after, .section-label::after, .hero-date::after { animation: none !important; width: calc(100% + 12px) !important; }
  }

  /* ─── NAV ─── */
  nav {
    background: transparent;
    padding: 18px 0;
  }
  .nav-inner { display: flex; justify-content: space-between; align-items: center; }
  .logo { font-weight: 600; font-size: 16px; letter-spacing: -0.2px; color: var(--ink); }
  .logo em { color: var(--green); font-style: normal; }
  .nav-date { font-size: 13px; color: var(--ink-muted); font-family: 'Instrument Serif', serif; font-style: italic; font-size: 18px; }

  /* ─── HERO (Journal Entry Header) ─── */
  .hero {
    padding: 32px 0 36px;
  }
  .hero-date-wrap {
    margin-bottom: 28px;
  }
  .hero-date {
    display: inline-block;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 26px;
    color: var(--ink);
    position: relative;
    z-index: 1;
    animation: heroFade 0.4s both;
  }
  .hero-date::after {
    content: '';
    position: absolute;
    left: -4px;
    bottom: 2px;
    height: 14px;
    background-color: var(--hl-yellow);
    z-index: -1;
    transform: rotate(-1deg);
    transform-origin: left center;
    animation: drawMarker 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
  .hero-lead {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 32px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.3;
    margin-bottom: 16px;
    max-width: 600px;
    animation: heroFade 0.5s 0.1s both;
  }
  .hero-sub {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
    animation: heroFade 0.45s 0.24s both;
  }

  /* ─── SECTION SPACING ─── */
  .section-sm { padding: 20px 0; }
  .section-md { padding: 24px 0; }
  .section-lg { padding: 32px 0; }

  .section-label {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 30px;
    font-weight: 400;
    text-transform: lowercase;
    color: var(--ink);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    z-index: 1;
  }
  .section-label::after {
    content: '';
    position: absolute;
    left: -6px;
    bottom: 4px;
    height: 14px;
    width: 0;
    background-color: var(--hl-yellow);
    z-index: -1;
    transform: rotate(-0.5deg);
    border-radius: 2px;
  }
  .section-label.in-view::after {
    animation: drawMarker 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .section-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-bottom: 28px;
    margin-top: -8px;
  }

  /* ─── SNAPSHOT PROSE ─── */
  .snapshot-prose {
    font-size: 15.5px;
    color: var(--ink-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 640px;
  }

  /* ─── TEMUAN HARI INI ─── */
  .temuan-block {
    margin-top: 24px;
    padding-left: 16px;
    border-left: 2px solid var(--ink);
  }
  .temuan-label {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 12px;
  }
  .temuan-picks { display: flex; flex-direction: column; gap: 10px; width: 100%; }
  .temuan-pick {
    display: grid;
    grid-template-columns: 76px 1fr 14px;
    grid-template-rows: auto auto;
    column-gap: 10px;
    row-gap: 2px;
    width: 100%;
    align-items: center;
  }
  .temuan-ticker {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 22px;
    color: var(--ink);
    letter-spacing: -0.3px;
    grid-column: 1;
    grid-row: 1;
  }
  .temuan-sector {
    font-size: 14px;
    color: var(--ink-faint);
    grid-column: 2;
    grid-row: 1;
  }
  .temuan-dot {
    width: 8px; height: 8px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    flex-shrink: 0;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }
  .temuan-dot.dot-green { background: var(--green); }
  .temuan-dot.dot-amber { background: var(--amber); }
  .temuan-dot.dot-red   { background: var(--red); }
  .temuan-hook {
    grid-column: 2 / -1;
    grid-row: 2;
    font-size: 13px;
    color: var(--ink-muted);
    font-style: italic;
    line-height: 1.4;
  }

  /* ─── SCROLL INVITE ─── */
  .scroll-invite {
    text-align: center;
    margin-top: 64px;
  }
  .scroll-invite-text {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 18px;
    color: var(--ink-muted);
    display: block;
    margin-bottom: 4px;
  }
  .scroll-invite-arrow {
    display: block;
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 24px;
    color: var(--green);
    animation: bounceDown 1.8s ease-in-out infinite;
  }
  @keyframes bounceDown {
    0%, 100% { transform: translateY(0); opacity: 0.7; }
    50% { transform: translateY(5px); opacity: 1; }
  }

  /* ─── NOTEBOOK PAPER ─── */
  .notebook-paper {
    position: relative;
    padding-left: 20px;
    border-left: 2px solid var(--notebook-margin);
    background-image: repeating-linear-gradient(transparent, transparent 27px, var(--notebook-line) 27px, var(--notebook-line) 28px);
    background-position: 0 6px;
    margin-bottom: 24px;
  }
  .notebook-paper p, .notebook-paper .narrative-block {
    font-size: 15px;
    line-height: 28px;
    margin-bottom: 28px;
    color: var(--ink-mid);
  }
  .notebook-paper p:last-child, .notebook-paper .narrative-block:last-child {
    margin-bottom: 0;
  }
  .notebook-paper strong {
    color: var(--ink);
    font-weight: 600;
  }
  .notebook-paper .narrative-block strong {
    display: block;
    line-height: 28px;
    margin-bottom: 0;
  }

  /* ─── SECTOR HIGHLIGHTS ─── */
  .sector-note {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    margin-top: 40px;
    margin-bottom: 16px;
    font-style: italic;
  }

  .sector-highlights-top {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    font-family: 'Instrument Serif', serif;
    font-size: 19px;
  }
  .hl-text-green { color: var(--green); }
  .hl-text-amber { color: var(--amber); }
  .hl-text-red { color: var(--red); }

  .sector-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .sector-list-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 14.5px;
    color: var(--ink-mid);
  }
  .sector-list-dots {
    flex: 1;
    border-bottom: 2px dotted var(--ink-faint);
    margin: 0 16px;
    position: relative;
    top: -4px;
  }

  /* ─── SECTOR DEEP ─── */
  .sector-deep-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .sector-deep-item {
    padding-left: 16px;
    border-left: 3px solid var(--ink-faint);
  }
  .sector-deep-item.sd-green { border-left-color: var(--green); }
  .sector-deep-item.sd-amber { border-left-color: var(--amber); }
  .sector-deep-item.sd-red   { border-left-color: var(--red); }
  .sector-deep-header {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 4px;
    flex-wrap: wrap;
  }
  .sector-deep-name {
    font-weight: 600;
    color: var(--ink);
    font-size: 15px;
  }
  .sector-deep-tickers {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 16px;
    color: var(--ink-mid);
  }
  .sector-deep-why {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.55;
    margin: 0;
  }

  /* Highlighter effect for tags */
  .hl-effect {
    position: relative;
    display: inline;
    font-weight: 600;
    color: var(--ink);
    padding: 0 4px;
    white-space: normal;
    word-break: break-word;
  }
  .hl-effect::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    height: 10px;
    width: 0;
    z-index: -1;
  }
  .in-view .hl-effect::after {
    animation: drawLine 0.6s 0.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
.hl-green::after { background-color: var(--hl-green); }
.hl-amber::after { background-color: var(--hl-amber); }
.hl-red::after   { background-color: var(--hl-red); }
.hl-blue::after  { background-color: var(--hl-blue); }
.hl-yellow::after { background-color: var(--hl-yellow); }

  /* ─── PICKS GRID ─── */
  .picks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
  .pick-card-item {
    background: var(--postit-bg);
    border: none;
    border-radius: 2px;
    padding: 26px 22px;
    position: relative;
    box-shadow: 2px 4px 12px var(--postit-shadow), 1px 1px 3px rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease, z-index 0s;
    --rot: 0deg;
    transform: rotate(var(--rot));
    z-index: 1;
  }
  .pick-card-item.in-view {
    animation: revealUpRotated 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .pick-card-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: var(--postit-tape);
  }
  .pick-card-item:nth-child(odd) { --rot: -1.5deg; }
  .pick-card-item:nth-child(even) { --rot: 1.2deg; margin-top: 16px; }
  .picks-grid .pick-card-item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    --rot: -0.5deg;
  }
  .pick-card-item:hover {
    --rot: 0deg;
    transform: rotate(var(--rot)) translateY(-4px);
    box-shadow: 3px 10px 24px rgba(0,0,0,0.08);
    z-index: 10;
  }

  .pick-card-ticker {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 26px;
    letter-spacing: -0.5px;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 4px;
  }
  .pick-card-name {
    font-size: 13.5px;
    color: var(--ink-muted);
    font-weight: 400;
    margin-bottom: 18px;
    line-height: 1.4;
  }
  .pick-field {
    margin-bottom: 14px;
    font-size: 13.5px;
    line-height: 1.6;
  }
  .pick-field:last-of-type { margin-bottom: 0; }
  .pick-field-label {
    display: block;
    font-weight: 600;
    color: var(--ink-mid);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
  }
  .pick-field-value {
    display: block;
    color: var(--ink-mid);
  }

  /* Tags inside Post-it */
  .pick-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
  .tag {
    display: inline-block;
    font-family: 'Instrument Serif', serif;
    font-size: 16px;
    font-style: italic;
    color: var(--ink-mid);
  }
  .tag::before { content: '# '; color: var(--ink-faint); }

  /* ─── SCREENER DISCLAIMER ─── */
  .screener-disclaimer {
    font-size: 14px;
    color: var(--ink-muted);
    border-left: 2px solid var(--border);
    padding-left: 16px;
    margin-bottom: 32px;
    line-height: 1.6;
    font-style: italic;
  }
  .broker-badge {
    display: inline-block;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 6px;
    border: 1px solid var(--ink);
    color: var(--ink);
    margin-left: 8px;
    vertical-align: middle;
    transform: translateY(-2px);
  }

  /* ─── CTA ─── */
  .cta-inline { padding-bottom: 0; }

  .cta-checklist {
    margin-bottom: 20px;
  }
  .cta-check-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
  }
  .cta-check-box {
    font-family: 'Instrument Serif', serif;
    font-size: 20px;
    color: var(--ink);
    line-height: 1;
    margin-top: 2px;
  }
  .cta-check-content { flex: 1; }
  .cta-check-title {
    font-weight: 600;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 2px;
  }
  .cta-check-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.5;
  }

  .cta-lead {
    font-family: 'Instrument Serif', serif;
    font-size: 34px;
    font-style: italic;
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
  }
  .cta-sub {
    font-size: 15px;
    color: var(--ink-mid);
    margin-bottom: 20px;
    line-height: 1.65;
  }

  .cta-form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 12px;
    max-width: 500px;
  }
  .cta-input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .cta-input-label {
    font-size: 12px;
    color: var(--ink-muted);
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .cta-form input {
    width: 100%;
    padding: 8px 0;
    border: none;
    border-bottom: 2px dashed var(--ink-muted);
    border-radius: 0;
    font-size: 16px;
    font-family: 'DM Sans', sans-serif;
    background: transparent;
    color: var(--ink);
    transition: border-color 0.2s;
  }
  .cta-form input::placeholder { color: var(--ink-faint); font-style: italic; font-family: 'Instrument Serif', serif; font-size: 18px; }
  .cta-form input:focus { outline: none; border-bottom: 2px solid var(--ink); }

  .cta-form button {
    padding: 8px 16px;
    background: transparent;
    color: var(--ink);
    border: 2px solid var(--ink);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: all 0.15s;
    transform: translateY(-2px);
  }
  .cta-form button:hover { background: var(--ink); color: var(--paper); }
  .cta-form button:active { transform: translateY(0); }

  .cta-note {
    font-size: 12.5px;
    color: var(--ink-faint);
    margin-bottom: 48px;
    font-style: italic;
  }

  .cta-success {
    padding: 12px 0;
    color: var(--green);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    margin-bottom: 12px;
    display: none;
  }

  .cta-divider {
    border: none;
    border-top: 1px dashed var(--border);
    margin-bottom: 24px;
  }

  .cta-ebook {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }
  .cta-ebook-label { font-size: 14.5px; color: var(--ink-muted); }
  .cta-ebook-link {
    font-family: 'Instrument Serif', serif;
    font-size: 20px;
    font-style: italic;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--ink);
  }
  .cta-ebook-link:hover { opacity: 0.7; }
  .cta-ebook-note { font-size: 12.5px; color: var(--ink-faint); }

  /* ─── FOOTER ─── */
  footer {
    padding: 48px 0 0;
  }
  .footer-main { padding-bottom: 40px; text-align: center; }
  .footer-logo { font-weight: 700; font-size: 16px; letter-spacing: -0.2px; margin-bottom: 10px; color: var(--ink); }
  .footer-logo em { color: var(--green); font-style: normal; }
  .footer-tagline { font-size: 13.5px; color: var(--ink-muted); line-height: 1.6; max-width: 380px; margin: 0 auto; }

  .footer-legal {
    border-top: 2px solid var(--ink);
    padding: 20px 0 32px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.5;
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 600px) {
    .picks-grid { grid-template-columns: 1fr; gap: 20px; }
    .picks-grid .pick-card-item:last-child:nth-child(odd) { grid-column: auto; }
    .pick-card-item:nth-child(even) { margin-top: 0; }
    .cta-form { flex-direction: column; align-items: stretch; }
    .cta-form button { margin-top: 8px; transform: none; }
    .section-sm { padding: 14px 0; }
    .section-md { padding: 18px 0; }
    .section-lg { padding: 24px 0; }
    .sector-list-item { flex-direction: column; gap: 4px; padding-bottom: 12px; border-bottom: 1px dotted var(--border); }
    .sector-list-dots { display: none; }
    .sector-list-item:last-child { border-bottom: none; }
  }

/* ── CTA Button ── */
.cta-button-external {
  display: inline-block;
  padding: 12px 24px;
  background: var(--green);
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--green);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 4px 4px 0px rgba(35, 122, 84, 0.2);
}
.cta-button-external:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px rgba(35, 122, 84, 0.25);
}
.cta-button-external:active {
  transform: translate(2px, 2px);
  box-shadow: 0px 0px 0px rgba(35, 122, 84, 0);
}
