/* HERO — common */

.hero { padding: clamp(36px, 5vw, 64px) 0 clamp(60px, 7vw, 110px); position: relative; }
.hero-shell { position: relative; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  max-width: 560px;
}
.hero-since {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
}

.hero-h1 .italic {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--clay);
}
.hero-h1 { max-width: 14ch; }
.hero-h1-editorial { font-size: clamp(56px, 9.5vw, 156px); line-height: 0.92; letter-spacing: -0.045em; font-weight: 360; max-width: none; }
.hero-h1-editorial .italic { color: var(--clay-deep); }

.hero-sub { margin-top: 28px; max-width: 50ch; }

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 600px;
}
.hero-meta-item { min-width: 0; }
.h-stat {
  font-size: 28px;
  font-weight: 480;
  letter-spacing: -0.025em;
  font-feature-settings: "tnum";
  color: var(--ink);
  line-height: 1.1;
}
.h-stat span { font-size: 14px; color: var(--ink-mute); margin-left: 2px; }
.hero-meta .lab {
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
  letter-spacing: -0.005em;
}
.hero-meta-divider {
  width: 1px; height: 36px;
  background: var(--line);
}

/* HERO A — calendar layout */
.hero-a .hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 1080px) {
  .hero-a .hero-shell { grid-template-columns: 1fr; }
  .hero-a .hero-visual { margin-top: 24px; }
}

.hero-marquee {
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 32px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-group {
  display: flex; gap: 32px; align-items: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.marquee-group span:nth-child(even) { color: var(--clay); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* HERO B — collage */
.hero-b .hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 4vw, 80px);
  align-items: center;
}
@media (max-width: 1080px) {
  .hero-b .hero-shell { grid-template-columns: 1fr; }
}

.hero-collage {
  position: relative;
  min-height: 540px;
}

.dev-laptop {
  position: absolute;
  top: 20px; left: 0;
  width: 100%;
  max-width: 580px;
  filter: drop-shadow(0 30px 40px rgba(20,17,13,0.18));
}
.dev-laptop-screen {
  border: 1px solid var(--line-strong);
  border-radius: 14px 14px 4px 4px;
  background: var(--card);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
}
.dev-laptop-base {
  height: 14px;
  margin: 0 -22px;
  background: linear-gradient(180deg, #e6dcc8 0%, #c9bea6 100%);
  border-radius: 0 0 14px 14px;
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}
.dev-laptop-base::after {
  content:""; position: absolute; left: 50%; top: 0; transform: translateX(-50%);
  width: 120px; height: 6px;
  background: rgba(20,17,13,0.12);
  border-radius: 0 0 8px 8px;
}
.mock-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mock-bar > span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.mock-url {
  margin-left: 12px;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-soft);
  background: var(--ivory-2);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}
.laptop-art {
  display: grid; grid-template-columns: 1.1fr 1fr;
  height: calc(100% - 38px);
}
.la-hero { padding: 32px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.la-eyebrow { font-size: 10px; letter-spacing: 0.14em; color: var(--ink-soft);}
.la-title { font-size: 32px; line-height: 1.02; font-weight: 480; letter-spacing: -0.02em; }
.la-cta { font-size: 13px; color: var(--clay); font-weight: 500; }
.la-img {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.5), transparent 50%),
    linear-gradient(160deg, #e8c5a6 0%, #c8856a 60%, #9a5a3e 100%);
  position: relative;
}
.la-img::after {
  content: "";
  position: absolute; inset: 12% 14%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(255,235,210,0.6), rgba(255,235,210,0) 60%);
}

.dev-phone {
  position: absolute;
  right: -10px;
  bottom: 0;
  width: 230px;
  background: var(--ink);
  border-radius: 38px;
  padding: 10px;
  filter: drop-shadow(0 40px 60px rgba(20,17,13,0.30));
  transform: rotate(4deg);
  z-index: 3;
}
.dev-phone-notch {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 18px;
  background: var(--ink);
  border-radius: 0 0 12px 12px;
  z-index: 2;
}
.phone-screen {
  background: var(--paper);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9/19;
  position: relative;
}
.phs-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px 8px;
  font-size: 12px;
}
.phs-icons { display: flex; gap: 4px;}
.phs-icons span { width: 10px; height: 10px; border-radius: 2px; background: var(--ink); opacity: 0.6;}
.phs-body { padding: 24px 18px; }
.phs-eyebrow { font-size: 9px; letter-spacing: 0.18em; color: var(--ink-soft); }
.phs-title { font-size: 22px; line-height: 1.0; letter-spacing: -0.02em; margin: 8px 0 18px; font-weight: 480; }
.phs-slots {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 6px;
  font-family: var(--mono);
  font-size: 11px;
}
.phs-slot {
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-2);
}
.phs-slot.taken { background: var(--ivory-2); color: var(--ink-mute); text-decoration: line-through; border-color: transparent; }
.phs-slot.sel { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.phs-pay {
  margin-top: 16px;
  display: flex; justify-content: space-between;
  font-size: 13px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.phs-pay strong { font-weight: 500; }
.phs-btn {
  margin-top: 12px;
  height: 38px;
  background: var(--clay);
  color: var(--paper);
  border-radius: var(--r-pill);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 500;
}

.dev-ticket {
  position: absolute;
  left: 8%; bottom: -10px;
  width: 220px;
  background: var(--paper);
  border-radius: 12px;
  padding: 16px 16px 26px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transform: rotate(-3deg);
  z-index: 2;
}
.dev-ticket-top { display: flex; justify-content: space-between; align-items: center; }
.ticket-kicker { font-size: 9px; letter-spacing: 0.16em; color: var(--moss);}
.ticket-num { font-size: 10px; color: var(--ink-mute); }
.ticket-name { font-size: 17px; font-weight: 500; margin-top: 6px; margin-bottom: 14px; letter-spacing: -0.01em; }
.ticket-line {
  display: flex; justify-content: space-between;
  font-size: 11px;
  padding: 8px 0;
  border-top: 1px dashed var(--line);
  color: var(--ink-soft);
}
.ticket-line strong { color: var(--ink); font-weight: 500;}
.ticket-perf {
  position: absolute; left: 0; right: 0; bottom: 14px;
  height: 6px;
  background-image: radial-gradient(circle at 4px 3px, var(--ivory) 3px, transparent 4px);
  background-size: 10px 6px;
  background-repeat: repeat-x;
}

/* HERO C — editorial */
.hero-c { padding-top: clamp(48px, 7vw, 110px); }
.hero-shell-c { display: flex; flex-direction: column; gap: 56px; }
.hero-top-row { display: flex; justify-content: space-between; align-items: center; gap: 24px;}
.hero-c .hero-h1 { max-width: none; }
.hero-c-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
}
@media (max-width: 980px) {
  .hero-c-bottom { grid-template-columns: 1fr; }
}
.hero-c-bottom-left .hero-sub { margin-top: 0; }

.hero-c-mini {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px;
  box-shadow: var(--shadow-soft);
}
.cmini-head { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--ink-soft); border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 14px; }
.cmini-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); }
.cmini-week { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; }
.cmini-day {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 10px 6px;
  text-align: center;
}
.cmini-day.on { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.cmini-day.on .mono { color: var(--paper); opacity: 0.7;}
.cmini-day .mono { font-size: 9px; letter-spacing: 0.1em; color: var(--ink-mute); }
.cmini-num { font-size: 16px; font-weight: 500; margin: 4px 0 8px; letter-spacing: -0.02em; }
.cmini-bars { display: flex; flex-direction: column; gap: 3px; }
.cmini-bar {
  height: 4px; border-radius: 2px;
  background: rgba(20,17,13,0.06);
}
.cmini-day.on .cmini-bar { background: rgba(255,255,255,0.12); }
.cmini-bar.f { background: var(--clay); }
.cmini-day.on .cmini-bar.f { background: var(--clay-soft); }
.cmini-foot {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px; color: var(--ink-soft);
}

@media (max-width: 720px) {
  .hero-meta { flex-wrap: wrap; gap: 18px; }
  .hero-meta-divider { display: none; }
}
