:root {
  --ink: #151126;
  --muted: #625a7b;
  --paper: #fffaf3;
  --pink: #ff4ecd;
  --violet: #6b45ff;
  --blue: #48c8ff;
  --yellow: #ffdf5d;
  --line: rgba(21, 17, 38, .14);
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Avenir Next, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; letter-spacing: .008em; overflow-x: hidden; }
.page-shell { width: min(1180px, calc(100% - 48px)); margin: auto; position: relative; z-index: 2; }
.noise { position: fixed; inset: 0; z-index: 10; pointer-events: none; opacity: .045; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.orb { position: fixed; border-radius: 50%; filter: blur(12px); opacity: .55; pointer-events: none; z-index: 0; animation: drift 13s ease-in-out infinite alternate; }
.orb-pink { width: 320px; height: 320px; top: 6%; right: -100px; background: #ffa7e8; }
.orb-blue { width: 260px; height: 260px; bottom: 9%; left: -100px; background: #a8e9ff; animation-delay: -4s; }
.topbar { display: flex; align-items: center; justify-content: space-between; padding: 28px 0; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 700; letter-spacing: -.03em; }
.brand-mark { color: var(--pink); font-size: 26px; line-height: 1; text-shadow: 3px 3px 0 var(--yellow); }
.brand-dot { color: var(--pink); }
.hero { min-height: 615px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; padding: 60px 0 72px; }
h1, h2, p { margin-top: 0; }
h1, h2, .feature-card h2 { font-family: Baskerville, "Iowan Old Style", Georgia, "Times New Roman", serif; }
h1 { margin-bottom: 24px; font-size: clamp(80px, 11vw, 148px); line-height: .78; letter-spacing: -.035em; font-weight: 700; }
h1 span { color: var(--pink); font-weight: 600; font-style: italic; }
.lede { max-width: 390px; color: var(--muted); font-size: 17px; line-height: 1.62; letter-spacing: .012em; }
.hero-art { min-height: 475px; position: relative; }
.image-frame { position: absolute; inset: 0 0 18px; overflow: hidden; border: 2px solid var(--ink); border-radius: 18px; background: #f5dfd1; box-shadow: 12px 12px 0 var(--ink); transform: rotate(1.5deg); }
.image-frame:after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.6); border-radius: 11px; pointer-events: none; }
.image-frame img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 120px; }
.feature-card { min-height: 350px; padding: 32px; border: 1px solid var(--ink); border-radius: 8px; box-shadow: 8px 9px 0 var(--ink); display: grid; grid-template-rows: 128px auto 1fr; align-items: start; }
.feature-card-pink { background: #ffb7ea; } .feature-card-yellow { background: var(--yellow); } .feature-card-blue { background: var(--blue); }
.feature-icon { display: block; width: 112px; height: 112px; object-fit: contain; object-position: left center; margin: -6px 0 6px; } .feature-card h2 { margin: 0 0 14px; font-size: 28px; line-height: .95; letter-spacing: -.015em; } .feature-card p { margin: 0; font-size: 14px; line-height: 1.52; letter-spacing: .012em; max-width: 28ch; }
.editorial-note { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: end; padding: 70px 0 90px; border-top: 1px solid var(--line); }
.editorial-note h2 { margin-bottom: 0; font-size: clamp(44px, 6vw, 72px); line-height: .88; letter-spacing: -.02em; }
.editorial-note h2 em { color: var(--violet); font-style: normal; }
.note-copy { max-width: 490px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.68; letter-spacing: .012em; }
.footer { display: flex; justify-content: space-between; padding: 22px 0 28px; color: #8a829e; border-top: 1px solid var(--line); font: 11px Avenir Next, -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif; text-transform: uppercase; letter-spacing: .12em; }
@keyframes drift { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(30px,-20px,0); } }
@media (max-width: 780px) {
  .page-shell { width: min(100% - 32px, 560px); }
  .hero { grid-template-columns: 1fr; row-gap: 88px; padding-top: 48px; }
  .hero-copy { padding: 12px 0; }
  .hero-art { min-height: 430px; margin-top: -12px; }
  .feature-grid, .editorial-note { grid-template-columns: 1fr; }
  .feature-grid { gap: 22px; padding-bottom: 75px; }
  .feature-card { min-height: 300px; padding: 26px; grid-template-rows: 112px auto 1fr; }
  .editorial-note { gap: 42px; }
  .footer { gap: 12px; flex-direction: column; }
}
@media (max-width: 450px) { .topbar { align-items: flex-start; gap: 16px; flex-direction: column; } .hero-art { min-height: 340px; } }
@media (prefers-reduced-motion: reduce) { .orb { animation: none; } }
@media (min-width: 781px) {
  .hero-copy h1 { margin-bottom: 0; }
  .hero-copy .lede { margin-top: 44px; }
}
