:root {
  --font-body: Arial, Helvetica, sans-serif;
  --font-display: "Arial Black", Arial, Helvetica, sans-serif;
  --ink: #15191d;
  --paper: #f4f1e9;
  --coral: #ff6847;
  --blue: #4972f2;
  --yellow: #f4c94e;
  --line: rgba(21, 25, 29, 0.16);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font-body); }
a { color: inherit; text-decoration: none; }
.holding-page { display: flex; flex-direction: column; min-height: 100vh; }
.site-header { align-items: center; display: flex; justify-content: space-between; margin: 0 auto; max-width: 1440px; padding: 28px 5vw; width: 100%; }
.brand { align-items: center; display: flex; font-weight: 700; gap: 12px; letter-spacing: -.02em; }
.brand-mark { align-items: center; background: var(--ink); border-radius: 50%; color: var(--paper); display: inline-flex; font-family: var(--font-display); font-size: 15px; height: 34px; justify-content: center; transform: rotate(-8deg); width: 34px; }
.contact-link { border: 1px solid var(--ink); border-radius: 999px; font-size: 14px; padding: 10px 18px; transition: background .2s ease, color .2s ease; }
.contact-link:hover { background: var(--ink); color: white; }
.hero { align-items: center; display: grid; flex: 1; gap: 6vw; grid-template-columns: 1.08fr .92fr; margin: 0 auto; max-width: 1440px; padding: 60px 5vw 90px; width: 100%; }
.eyebrow { align-items: center; display: flex; font-size: 12px; font-weight: 700; gap: 10px; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow span { background: var(--coral); border-radius: 50%; height: 8px; width: 8px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(62px, 8vw, 118px); font-weight: 700; letter-spacing: -.075em; line-height: .9; margin: 36px 0; }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-intro { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.55; max-width: 590px; }
.button { align-items: center; background: var(--ink); border-radius: 999px; color: white; display: inline-flex; font-size: 14px; font-weight: 700; gap: 28px; margin-top: 32px; padding: 17px 22px; transition: background .2s ease, transform .2s ease; }
.button:hover { background: var(--blue); transform: translateY(-2px); }
.hero-art { min-height: 520px; position: relative; }
.orbit { border: 1px solid var(--line); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); }
.orbit-one { height: 470px; width: 470px; }
.orbit-two { height: 340px; width: 340px; }
.idea-card { background: var(--ink); border-radius: 28px; box-shadow: 0 30px 80px rgba(21,25,29,.23); color: white; left: 50%; min-height: 365px; padding: 30px; position: absolute; top: 50%; transform: translate(-50%, -50%) rotate(3deg); width: min(340px, 78vw); }
.card-label { color: rgba(255,255,255,.55); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.idea-card p { bottom: 28px; font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -.045em; line-height: 1.08; margin: 0; position: absolute; }
.idea-line { border-radius: 999px; height: 13px; margin-top: 15px; }
.idea-line.coral { background: var(--coral); margin-top: 48px; width: 75%; }
.idea-line.blue { background: var(--blue); width: 50%; }
.idea-line.yellow { background: var(--yellow); width: 63%; }
.shape { border-radius: 18px; box-shadow: 0 14px 35px rgba(21,25,29,.12); position: absolute; z-index: 2; }
.shape-one { background: var(--coral); height: 80px; left: 4%; top: 18%; transform: rotate(-9deg); width: 80px; }
.shape-two { background: var(--yellow); bottom: 13%; height: 58px; right: 4%; transform: rotate(12deg); width: 105px; }
footer { align-items: center; background: var(--ink); color: rgba(255,255,255,.58); display: flex; font-size: 11px; justify-content: space-between; gap: 30px; padding: 24px 5vw; }
footer p { margin: 0; }
.privacy-copy { text-align: right; }
.privacy-copy a { color: white; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 850px) { .hero { grid-template-columns: 1fr; padding-top: 75px; } .hero-art { min-height: 470px; } }
@media (max-width: 560px) { .site-header { padding: 20px 22px; } .hero { padding: 55px 22px 75px; } .hero h1 { font-size: 55px; } .hero-art { min-height: 410px; } .orbit-one { height: 370px; width: 370px; } .orbit-two { height: 280px; width: 280px; } .idea-card { min-height: 320px; padding: 24px; } .shape-one { left: -5px; } .shape-two { right: -5px; } footer { align-items: flex-start; flex-direction: column; padding: 28px 22px; } .privacy-copy { text-align: left; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; } }
