@charset "UTF-8";
/* ============================================================
   AI Day Plan — "Timeline" — timeline.aidayplan.com (PageMotor bespoke theme)
   Hand-authored from aidayplan-build/timeline/style.css.
   Fonts: Bunny only. PageMotor chrome neutralised; the whole
   page lives in content row 1 wrapped in .aidp-timeline.
   ============================================================ */

/* --- Neutralise inherited PageMotor chrome (full-bleed bespoke page) --- */
#header, #nav, #footer, .column-sidebar, .headline-area, .page-title, .byline { display: none !important; }
#content, .container, .columns, .column-content, .page-content, .page, body > .container, .bleed, .text {
  max-width: none !important; width: 100% !important; margin: 0 !important; padding: 0 !important; float: none !important;
}
html, body { margin: 0 !important; padding: 0 !important; }

/* ============================================================
   AI Day Plan — Timeline direction
   Daylight palette, self-assembling vertical day-timeline.
   Fonts loaded from fonts.bunny.net via @import above.
   Every selector scoped under .aidp-timeline.
   ============================================================ */

.aidp-timeline {
  /* daylight palette */
  --paper:      #FBFAF7;
  --paper-2:    #F4F1EA;
  --ink:        #1A1D24;
  --ink-soft:   #4B515E;
  --ink-faint:  #6B7280; /* AA-compliant on white/paper (>=4.5:1) */
  --sky:        #3B82F6; /* the calm accent for fills, borders, nodes, links */
  --sky-deep:   #2563EB; /* used for text/buttons on light (AA on white) */
  --sky-wash:   #EAF1FE;
  --line:       #E6E2D8;
  --line-soft:  #EFEBE2;

  /* dawn-to-dusk gradient stops */
  --dawn:  #FCEFD8;
  --noon:  #EAF1FE;
  --dusk:  #E7DEF0;

  --shadow:     0 1px 2px rgba(26,29,36,.04), 0 12px 30px -16px rgba(26,29,36,.18);
  --shadow-lg:  0 2px 4px rgba(26,29,36,.05), 0 30px 60px -24px rgba(26,29,36,.28);

  --font-ui: "Inter Tight", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;

  --radius: 16px;
  --radius-sm: 11px;
  --maxw: 1140px;
}

.aidp-timeline * { box-sizing: border-box; }

.aidp-timeline { scroll-behavior: smooth; }

.aidp-timeline {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.aidp-timeline .wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.aidp-timeline img { max-width: 100%; display: block; }

.aidp-timeline a { color: var(--sky-deep); text-decoration: none; }

/* accessibility helpers */
.aidp-timeline .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.aidp-timeline .skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff;
  padding: 10px 16px; border-radius: 10px; z-index: 100;
  transition: top .18s ease;
  font-weight: 600;
}
.aidp-timeline .skip-link:focus { top: 12px; }

.aidp-timeline :focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- header ---------- */
.aidp-timeline .site-header {
  position: sticky; top: 0; z-index: 40;
  background: rgba(251,250,247,.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.aidp-timeline .header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 20px;
}
.aidp-timeline .brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-weight: 600; }
.aidp-timeline .brand-word { font-family: var(--font-display); font-size: 1.18rem; letter-spacing: -.01em; }
.aidp-timeline .brand-mark { display: inline-flex; gap: 4px; align-items: center; }
.aidp-timeline .brand-mark .dot { width: 9px; height: 9px; border-radius: 50%; display: block; }
.aidp-timeline .dot.dawn { background: #F4C66B; }
.aidp-timeline .dot.noon { background: var(--sky); }
.aidp-timeline .dot.dusk { background: #A78BD0; }

.aidp-timeline .site-nav { display: flex; align-items: center; gap: 26px; }
.aidp-timeline .site-nav a { color: var(--ink-soft); font-weight: 500; font-size: .95rem; transition: color .15s; }
.aidp-timeline .site-nav a:hover { color: var(--ink); }
.aidp-timeline .nav-cta {
  background: var(--ink); color: #fff !important;
  padding: 9px 16px; border-radius: 999px; font-weight: 600;
}
.aidp-timeline .nav-cta:hover { background: #2a2e38; }

/* ---------- buttons ---------- */
.aidp-timeline .btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-ui); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border-radius: 999px; cursor: pointer;
  border: 1.5px solid transparent; transition: transform .15s ease, background .15s ease, box-shadow .15s;
}
.aidp-timeline .btn:active { transform: translateY(1px); }
.aidp-timeline .btn-primary { background: var(--sky-deep); color: #fff; box-shadow: 0 8px 20px -8px rgba(37,99,235,.6); }
.aidp-timeline .btn-primary:hover { background: #1D4FD8; }
.aidp-timeline .btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.aidp-timeline .btn-ghost:hover { border-color: var(--ink-faint); background: var(--paper-2); }

/* ---------- hero ---------- */
.aidp-timeline .hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    radial-gradient(120% 80% at 88% 0%, var(--dusk) 0%, transparent 55%),
    radial-gradient(110% 90% at 0% 0%, var(--dawn) 0%, transparent 50%),
    linear-gradient(180deg, var(--noon) 0%, var(--paper) 58%);
}
.aidp-timeline .hero-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center;
}
.aidp-timeline .eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .76rem; font-weight: 600;
  color: var(--sky-deep); margin: 0 0 16px;
}
.aidp-timeline .eyebrow.centre { text-align: center; }
.aidp-timeline .hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 5.2vw, 3.8rem);
  line-height: 1.04; letter-spacing: -.02em;
  margin: 0 0 22px;
}
.aidp-timeline .accentword {
  color: var(--sky-deep);
  font-style: italic;
}
.aidp-timeline .lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 36ch; margin: 0 0 28px; }
.aidp-timeline .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 18px; }
.aidp-timeline .hero-note { font-size: .9rem; color: var(--ink-faint); margin: 0; }

/* ---------- timeline card (shared) ---------- */
.aidp-timeline .hero-stage { perspective: 1200px; }
.aidp-timeline .timeline-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 26px 26px 30px;
  min-height: 440px;
  /* contain the scattered chip start-positions (they fly in from off-card);
     clip (not hidden) keeps the sticky nav unaffected, clip-margin lets
     chip shadows breathe. Fixes 414px horizontal overflow. */
  overflow: clip;
  overflow-clip-margin: 14px;
}
.aidp-timeline .timeline-card.big { min-height: 480px; }
.aidp-timeline .timeline-head { margin-bottom: 18px; }
.aidp-timeline .tl-label { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.aidp-timeline .tl-sub { display: block; font-size: .9rem; color: var(--ink-faint); margin-top: 2px; }

.aidp-timeline .timeline-track {
  position: relative;
  padding-left: 8px;
  list-style: none;
  margin: 0;
}
/* the spine, drawn dawn-to-dusk */
.aidp-timeline .timeline-track::before {
  content: "";
  position: absolute;
  left: 70px; top: 6px; bottom: 6px; width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #F4C66B 0%, var(--sky) 48%, #A78BD0 100%);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform .9s cubic-bezier(.22,.61,.36,1);
}
.aidp-timeline .timeline-track.drawn::before { transform: scaleY(1); }

/* a slot = time label + chip, positioned in the track */
.aidp-timeline .slot {
  position: relative;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 0 16px;
  min-height: 46px;
}
.aidp-timeline .slot:last-child { margin-bottom: 0; }
.aidp-timeline .slot-time {
  font-variant-numeric: tabular-nums;
  font-size: .82rem; font-weight: 600; color: var(--ink-faint);
  text-align: right;
}
.aidp-timeline .slot-node {
  position: absolute; left: 65px; top: 50%; transform: translateX(-50%);
  width: 13px; height: 13px; border-radius: 50%;
  background: #fff; border: 3px solid var(--sky);
  margin-top: -6.5px;
  z-index: 2;
}
.aidp-timeline .slot:first-child .slot-node { border-color: #F4C66B; }
.aidp-timeline .slot:last-child .slot-node { border-color: #A78BD0; }

/* the chip that flies in and snaps */
.aidp-timeline .chip {
  background: var(--sky-wash);
  border: 1px solid #d6e3fb;
  color: var(--ink);
  padding: 11px 15px;
  border-radius: var(--radius-sm);
  font-weight: 500; font-size: .96rem;
  box-shadow: 0 6px 14px -10px rgba(37,99,235,.5);
  /* start state set inline by JS as custom props */
  opacity: 0;
  transform: translate(var(--fx, 0), var(--fy, -40px)) rotate(var(--fr, 0deg)) scale(.9);
}
.aidp-timeline .chip .chip-meta { display: block; font-size: .76rem; color: var(--ink-faint); font-weight: 500; margin-top: 1px; }
.aidp-timeline .chip.first { background: #FDF3E0; border-color: #f1dcae; }
.aidp-timeline .chip.last  { background: #F2ECF8; border-color: #ddd0ee; }

/* the snap animation: spring from scattered start to settled */
.aidp-timeline .chip.snap {
  animation: snapIn .62s cubic-bezier(.2,.85,.25,1.05) forwards;
}
@keyframes snapIn {
  0%   { opacity: 0; transform: translate(var(--fx,0), var(--fy,-40px)) rotate(var(--fr,0deg)) scale(.9); }
  60%  { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1.04); }
  78%  { transform: translate(0,0) rotate(0deg) scale(.985); }
  100% { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); }
}

.aidp-timeline .replay {
  position: absolute; right: 18px; bottom: 16px;
  background: var(--paper-2); border: 1px solid var(--line);
  color: var(--ink-soft); font-family: var(--font-ui); font-weight: 600;
  font-size: .82rem; padding: 7px 13px; border-radius: 999px; cursor: pointer;
}
.aidp-timeline .replay:hover { background: #fff; border-color: var(--ink-faint); }

/* ---------- how it works ---------- */
.aidp-timeline .how { padding: 92px 0; background: var(--paper); }
.aidp-timeline .section-title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.1; letter-spacing: -.02em;
  margin: 0 0 16px; max-width: 22ch;
}
.aidp-timeline .section-title.light { color: var(--ink); }
.aidp-timeline .section-lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 52ch; margin: 0 0 44px; }
.aidp-timeline .section-lede.centre { margin-left: auto; margin-right: auto; text-align: center; }

.aidp-timeline .steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  counter-reset: step;
}
.aidp-timeline .step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px 26px;
  box-shadow: var(--shadow);
}
.aidp-timeline .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--sky-wash); color: var(--sky-deep);
  font-family: var(--font-display); font-weight: 600; font-size: 1.2rem;
  margin-bottom: 16px;
}
.aidp-timeline .step h3 { font-size: 1.18rem; margin: 0 0 8px; letter-spacing: -.01em; }
.aidp-timeline .step p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- demo ---------- */
.aidp-timeline .demo {
  padding: 92px 0;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.aidp-timeline .demo-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.aidp-timeline .dump { display: flex; flex-wrap: wrap; gap: 9px; margin: 0 0 28px; max-width: 40ch; }
.aidp-timeline .dump-chip {
  background: #fff; border: 1px dashed var(--line); color: var(--ink-soft);
  padding: 7px 13px; border-radius: 999px; font-size: .88rem;
  transform: rotate(var(--r, 0deg));
}
.aidp-timeline .dump-chip:nth-child(odd)  { --r: -1.6deg; }
.aidp-timeline .dump-chip:nth-child(3n)   { --r: 2deg; }
.aidp-timeline .dump-chip:nth-child(4n)   { --r: -.8deg; }
.aidp-timeline .demo-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.aidp-timeline .demo-status { min-height: 1.4em; margin: 16px 0 0; color: var(--sky-deep); font-weight: 600; font-size: .95rem; }

/* ---------- why ---------- */
.aidp-timeline .why {
  padding: 96px 0;
  background:
    radial-gradient(100% 120% at 100% 0%, #20242E 0%, transparent 60%),
    var(--ink);
  color: #EDEFF3;
}
.aidp-timeline .why .section-title { color: #fff; max-width: 24ch; }
.aidp-timeline .why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 8px; }
.aidp-timeline .why-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px 26px;
}
.aidp-timeline .why-card h3 { font-size: 1.2rem; margin: 0 0 10px; color: #fff; letter-spacing: -.01em; }
.aidp-timeline .why-card h3::before {
  content: ""; display: inline-block; width: 9px; height: 9px; border-radius: 50%;
  background: var(--sky); margin-right: 9px; vertical-align: middle;
}
.aidp-timeline .why-card p { margin: 0; color: #B9BEC9; font-size: .98rem; }

/* ---------- closing / waitlist ---------- */
.aidp-timeline .closing {
  padding: 100px 0;
  background:
    radial-gradient(90% 80% at 50% 0%, var(--dawn) 0%, transparent 55%),
    linear-gradient(180deg, var(--noon) 0%, var(--paper) 70%);
  text-align: center;
}
.aidp-timeline .closing-inner { max-width: 620px; margin: 0 auto; }
.aidp-timeline .closing .section-title { margin-left: auto; margin-right: auto; text-align: center; max-width: 18ch; }
.aidp-timeline .waitlist-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  margin: 32px auto 0; max-width: 480px;
}
.aidp-timeline .waitlist-form input[type="email"] {
  flex: 1 1 240px; min-width: 0;
  font-family: var(--font-ui); font-size: 1rem;
  padding: 14px 18px; border: 1.5px solid var(--line);
  border-radius: 999px; background: #fff; color: var(--ink);
}
.aidp-timeline .waitlist-form input::placeholder { color: var(--ink-faint); }
.aidp-timeline .waitlist-form input:focus-visible { border-color: var(--sky); outline-offset: 1px; }
.aidp-timeline .form-msg { min-height: 1.4em; margin: 14px 0 0; font-weight: 600; color: var(--sky-deep); }
.aidp-timeline .form-msg.error { color: #C0392B; }
.aidp-timeline .closing-note { color: var(--ink-faint); font-size: .9rem; margin: 18px 0 0; }

/* ---------- footer ---------- */
.aidp-timeline .site-footer { background: var(--paper); border-top: 1px solid var(--line-soft); padding: 36px 0; }
.aidp-timeline .footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 22px; }
.aidp-timeline .footer-brand { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
.aidp-timeline .footer-tag { color: var(--ink-soft); }
.aidp-timeline .footer-legal { color: var(--ink-faint); font-size: .86rem; margin-left: auto; }

/* ---------- reveal on scroll (sections) ---------- */
.aidp-timeline .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.aidp-timeline .reveal.in { opacity: 1; transform: none; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .aidp-timeline .hero-grid, .aidp-timeline .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .aidp-timeline .hero { padding: 52px 0 72px; }
  .aidp-timeline .demo-stage { order: -1; }
  .aidp-timeline .steps { grid-template-columns: 1fr; }
  .aidp-timeline .why-grid { grid-template-columns: 1fr; }
  .aidp-timeline .site-nav a:not(.nav-cta) { display: none; }
}

@media (max-width: 480px) {
  .aidp-timeline .wrap { padding: 0 18px; }
  .aidp-timeline .how, .aidp-timeline .demo, .aidp-timeline .why, .aidp-timeline .closing { padding: 64px 0; }
  .aidp-timeline .timeline-card { padding: 22px 18px 26px; min-height: 420px; }
  .aidp-timeline .slot { grid-template-columns: 52px 1fr; gap: 14px; }
  .aidp-timeline .timeline-track::before { left: 56px; }
  .aidp-timeline .slot-node { left: 56px; }
  .aidp-timeline .lede { font-size: 1.08rem; }
  .aidp-timeline .hero-actions .btn, .aidp-timeline .demo-actions .btn { flex: 1 1 auto; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .aidp-timeline { scroll-behavior: auto; }
  .aidp-timeline * { animation-duration: .001ms !important; animation-iteration-count: 1 !important;
      transition-duration: .001ms !important; }
  .aidp-timeline .chip { opacity: 1 !important; transform: none !important; }
  .aidp-timeline .timeline-track::before { transform: scaleY(1) !important; }
  .aidp-timeline .reveal { opacity: 1 !important; transform: none !important; }
}
