:root {
  --ink: #17130d;
  --ink-2: #2b2418;
  --paper: #f7f1e5;
  --paper-2: #eee2ce;
  --paper-3: #fffaf0;
  --moss: #2f4a33;
  --moss-2: #476346;
  --clay: #b95633;
  --saffron: #e2b84b;
  --sage: #c9d7b7;
  --sky: #d8e5ef;
  --muted: #665f51;
  --line: rgba(23, 19, 13, 0.14);
  --line-strong: rgba(23, 19, 13, 0.72);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow: 0 28px 80px rgba(50, 35, 18, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 4%, rgba(226, 184, 75, .34), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(216, 229, 239, .82), transparent 29rem),
    radial-gradient(circle at 80% 82%, rgba(201, 215, 183, .55), transparent 34rem),
    linear-gradient(135deg, var(--paper), #fbf6eb 48%, var(--paper-2));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 19, 13, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 19, 13, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 88%);
}

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .1;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; }

.site-header,
.section-shell,
.footer {
  width: min(1160px, calc(100vw - 44px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(23, 19, 13, .1);
  border-radius: 999px;
  background: rgba(255, 250, 240, .72);
  backdrop-filter: blur(18px) saturate(1.2);
  box-shadow: 0 12px 42px rgba(53, 38, 22, .08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: var(--paper-3);
  background: linear-gradient(145deg, var(--moss), var(--ink));
  font-family: "Fraunces", serif;
  font-size: 13px;
  font-weight: 900;
  font-variation-settings: "SOFT" 85, "WONK" 1;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,.16);
}

nav { display: flex; gap: 2px; }
nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}
nav a:hover { color: var(--ink); background: rgba(47, 74, 51, .08); }

h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Fraunces", serif;
  font-weight: 820;
  font-variation-settings: "SOFT" 72, "WONK" 1;
  letter-spacing: -0.035em;
  word-spacing: .045em;
  line-height: .96;
}
h1 { max-width: 820px; margin-bottom: 24px; font-size: clamp(54px, 8vw, 112px); }
h2 { font-size: clamp(38px, 5.4vw, 74px); }
h3 { margin-bottom: 10px; font-size: 22px; letter-spacing: -0.04em; }

.eyebrow {
  margin: 0 0 16px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .56fr);
  gap: 34px;
  align-items: end;
  padding: 94px 0 56px;
}

.hero::before {
  content: "Brisbane’s student builder room";
  position: absolute;
  right: 0;
  top: 62px;
  max-width: 230px;
  color: rgba(23, 19, 13, .34);
  font-family: "Fraunces", serif;
  font-size: 18px;
  font-style: italic;
  line-height: 1.1;
  transform: rotate(3deg);
}

.hero-lede {
  max-width: 740px;
  color: #393226;
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 650;
  line-height: 1.42;
  letter-spacing: -0.025em;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  font-weight: 850;
  letter-spacing: -0.02em;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
  cursor: pointer;
}
.button:hover { transform: translateY(-2px); }
.button.primary { color: var(--paper-3); background: var(--moss); box-shadow: 5px 5px 0 var(--saffron); }
.button.primary:hover { box-shadow: 8px 8px 0 var(--saffron); }
.button.secondary { background: rgba(255, 250, 240, .42); }

.proof-strip { display: flex; flex-wrap: wrap; gap: 8px; max-width: 820px; }
.proof-strip span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 250, 240, .54);
  color: #51483a;
  font-size: 14px;
  font-weight: 760;
}

.hero-card {
  position: relative;
  min-height: 530px;
  padding: 30px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(47, 74, 51, .95), rgba(24, 22, 14, .98)),
    var(--moss);
  color: var(--paper-3);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card::before,
.hero-card::after { content: ""; position: absolute; border-radius: 50%; }
.hero-card::before { width: 210px; height: 210px; right: -58px; top: -56px; background: rgba(226, 184, 75, .92); }
.hero-card::after { width: 260px; height: 260px; left: -120px; bottom: -110px; border: 1px solid rgba(255, 250, 240, .22); }
.card-topline, .hero-card h2, .session-list, .card-note { position: relative; z-index: 1; }
.card-topline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 250, 240, .22);
  border-radius: 999px;
  color: rgba(255, 250, 240, .78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 8px rgba(226, 184, 75, .16); }
.hero-card h2 { margin: 78px 0 26px; color: var(--paper-3); font-size: clamp(44px, 4.6vw, 64px); }
.session-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.session-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid rgba(255, 250, 240, .16);
  border-radius: 18px;
  background: rgba(255, 250, 240, .075);
  font-weight: 760;
}
.session-list span { color: var(--saffron); font-size: 13px; font-weight: 900; }
.card-note { margin: 24px 0 0; color: rgba(255, 250, 240, .74); font-weight: 680; }

.manifesto, .grid-section, .why, .format, .mentor-band, .vision, .apply { padding: 76px 0; }
.manifesto {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: 70px;
  border-block: 1.5px solid var(--line-strong);
}
.manifesto p:last-child { color: #393226; font-size: clamp(22px, 3vw, 34px); font-weight: 700; line-height: 1.28; letter-spacing: -0.035em; }
.section-heading { max-width: 850px; margin-bottom: 30px; }
.section-heading p:last-child { color: var(--muted); font-size: 20px; font-weight: 620; line-height: 1.5; }

.builder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile {
  min-height: 300px;
  padding: 24px;
  border: 1.5px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(255, 250, 240, .42);
  box-shadow: 0 14px 0 rgba(23, 19, 13, .055);
}
.tile:nth-child(2) { background: var(--moss); color: var(--paper-3); transform: rotate(-.7deg); }
.tile:nth-child(3) { background: var(--sage); transform: rotate(.7deg); }
.tile span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 64px;
  border-radius: 50%;
  background: var(--clay);
  color: var(--paper-3);
  font-weight: 900;
}
.tile h3 { font-family: "Fraunces", serif; font-size: 27px; line-height: 1; }
.tile p { color: inherit; opacity: .78; font-weight: 640; line-height: 1.5; }

.why {
  border-top: 1px solid var(--line);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.outcome-card {
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1.5px solid var(--line-strong);
  border-radius: 26px;
  background: rgba(255, 250, 240, .44);
}

.outcome-card:nth-child(2) {
  background: var(--sage);
}

.outcome-card:nth-child(3) {
  background: var(--moss);
  color: var(--paper-3);
}

.outcome-card:nth-child(4) {
  background: var(--saffron);
}

.outcome-card strong {
  width: max-content;
  padding: 7px 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.outcome-card:nth-child(3) strong {
  color: var(--saffron);
}

.outcome-card h3 {
  margin-top: auto;
  font-family: "Fraunces", serif;
  font-size: 25px;
  line-height: 1.02;
}

.outcome-card p {
  margin-bottom: 0;
  color: inherit;
  opacity: .76;
  font-weight: 640;
  line-height: 1.48;
}

.timeline {
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: var(--ink);
  color: var(--paper-3);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.timeline-item {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 26px;
  padding: 28px;
  border-bottom: 1px solid rgba(255, 250, 240, .13);
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-item strong {
  color: var(--saffron);
  font-family: "Fraunces", serif;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.05em;
}
.timeline-item h3 { font-family: "Fraunces", serif; font-size: 28px; }
.timeline-item p { margin-bottom: 0; color: rgba(255, 250, 240, .72); font-size: 18px; font-weight: 610; line-height: 1.46; }

.mentor-band { padding-block: 44px; border-block: 1px solid var(--line); }
.mentor-track { display: flex; flex-wrap: wrap; gap: 10px; }
.mentor-track span {
  padding: 14px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: rgba(255, 250, 240, .58);
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.6vw, 34px);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.mentor-track span:nth-child(even) { background: var(--moss); color: var(--paper-3); }
.mentor-track span:nth-child(3n) { background: var(--saffron); color: var(--ink); }

.compact-heading {
  max-width: 980px;
}

.mentor-notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.mentor-notes article {
  padding: 22px;
  border: 1.5px solid var(--line-strong);
  border-radius: 24px;
  background: rgba(255, 250, 240, .42);
}

.mentor-notes h3 {
  font-family: "Fraunces", serif;
  font-size: 28px;
}

.mentor-notes p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 640;
  line-height: 1.5;
}

.vision {
  letter-spacing: -0.025em;
}

.vision { display: grid; grid-template-columns: 1fr .72fr; gap: 20px; align-items: stretch; }
.vision-card, .principles, .apply { border-radius: var(--radius-xl); }
.vision-card { padding: 38px; background: var(--moss); color: var(--paper-3); box-shadow: var(--shadow); }
.vision-card p:last-child { max-width: 850px; color: rgba(255, 250, 240, .76); font-size: 21px; font-weight: 630; line-height: 1.48; }
.principles { display: grid; gap: 12px; }
.principles div {
  display: grid;
  align-content: space-between;
  min-height: 150px;
  padding: 22px;
  border: 1.5px solid var(--line-strong);
  border-radius: 26px;
  background: rgba(255, 250, 240, .42);
}
.principles strong { color: var(--clay); }
.principles span { font-size: 20px; font-weight: 830; letter-spacing: -0.04em; }

.apply {
  display: grid;
  grid-template-columns: .82fr 1fr;
  gap: 34px;
  margin-bottom: 70px;
  padding: 36px;
  border: 1.5px solid var(--line-strong);
  background:
    radial-gradient(circle at 92% 10%, rgba(201, 215, 183, .58), transparent 20rem),
    rgba(255, 250, 240, .45);
  box-shadow: var(--shadow);
}
.apply-copy p:last-child { color: var(--muted); font-size: 20px; font-weight: 620; line-height: 1.5; }
.invite-form { display: grid; gap: 16px; }
.invite-card {
  align-content: center;
  padding: 28px;
  border: 1.5px solid var(--line-strong);
  border-radius: 28px;
  background: rgba(255, 250, 240, .64);
}
.invite-card h3 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(30px, 3vw, 44px);
}
.invite-card p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.5;
}
.invite-card .button { width: fit-content; }
label { display: grid; gap: 8px; font-size: 12px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
input, textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: 17px;
  padding: 15px 16px;
  background: rgba(255, 250, 240, .72);
  color: var(--ink);
  font: inherit;
  font-weight: 680;
  outline: none;
}
input:focus, textarea:focus { box-shadow: 0 0 0 4px rgba(226, 184, 75, .28); }
.form-note { margin: 0; color: var(--muted); font-size: 13px; font-weight: 700; line-height: 1.45; }

/* Success page */
.success-body { min-height: 100vh; display: flex; flex-direction: column; }
.success-header { flex: 0 0 auto; }
.success-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .52fr);
  gap: 24px;
  align-items: stretch;
  padding: 86px 0 58px;
}
.success-panel, .success-next { border: 1.5px solid var(--line-strong); border-radius: 38px; box-shadow: var(--shadow); }
.success-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 62px);
  background:
    radial-gradient(circle at 86% 18%, rgba(226, 184, 75, .92), transparent 14rem),
    radial-gradient(circle at 6% 94%, rgba(201, 215, 183, .44), transparent 18rem),
    var(--moss);
  color: var(--paper-3);
}
.success-panel::after { content: ""; position: absolute; right: -7rem; bottom: -8rem; width: 24rem; height: 24rem; border: 1.5px solid rgba(255, 250, 240, .22); border-radius: 50%; }
.success-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 240, .22);
  border-radius: 999px;
  color: rgba(255, 250, 240, .82);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.success-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--saffron); box-shadow: 0 0 0 8px rgba(226, 184, 75, .16); }
.success-panel h1, .success-lede, .success-copy, .success-actions { position: relative; z-index: 1; }
.success-panel h1 { max-width: 780px; margin-bottom: 22px; color: var(--paper-3); font-size: clamp(64px, 9.6vw, 126px); }
.success-lede { max-width: 790px; color: var(--paper-3); font-size: clamp(23px, 2.8vw, 36px); font-weight: 780; line-height: 1.2; letter-spacing: -0.045em; }
.success-copy { max-width: 680px; color: rgba(255, 250, 240, .76); font-size: 19px; font-weight: 630; line-height: 1.5; }
.success-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.success-panel .button.primary { color: var(--ink); background: var(--saffron); box-shadow: 5px 5px 0 rgba(255, 250, 240, .22); }
.success-panel .button.secondary { border-color: rgba(255, 250, 240, .7); color: var(--paper-3); background: rgba(255, 250, 240, .08); }
.success-next { padding: 28px; background: rgba(255, 250, 240, .42); }
.success-steps { display: grid; gap: 12px; list-style: none; margin: 0; padding: 0; }
.success-steps li { display: grid; grid-template-columns: 46px 1fr; gap: 16px; padding: 20px; border: 1.5px solid var(--line-strong); border-radius: 24px; background: rgba(255, 250, 240, .58); }
.success-steps span { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--clay); color: var(--paper-3); font-size: 13px; font-weight: 900; }
.success-steps h2 { margin-bottom: 8px; font-size: 30px; letter-spacing: -0.06em; }
.success-steps p { margin: 0; color: var(--muted); font-weight: 700; line-height: 1.45; }

.footer { display: flex; justify-content: space-between; padding: 34px 0 46px; color: var(--muted); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); animation: reveal .8s cubic-bezier(.2,.8,.2,1) forwards; }
.delay-1 { animation-delay: .12s; }
.delay-2 { animation-delay: .24s; }
.delay-3 { animation-delay: .36s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 900px) {
  .site-header { position: static; border-radius: 28px; align-items: flex-start; }
  nav { overflow-x: auto; max-width: 100%; }
  .hero, .manifesto, .vision, .apply, .success-main { grid-template-columns: 1fr; }
  .hero { padding-top: 58px; }
  .hero::before { display: none; }
  .hero-card { min-height: auto; }
  .builder-grid, .outcome-grid, .mentor-notes { grid-template-columns: 1fr; }
  .tile, .tile:nth-child(2), .tile:nth-child(3) { transform: none; }
}

@media (max-width: 640px) {
  .site-header, .section-shell, .footer { width: min(100vw - 24px, 1180px); }
  .site-header, .footer { flex-direction: column; }
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  .hero { padding-bottom: 36px; }
  .timeline-item { grid-template-columns: 1fr; gap: 8px; }
  .apply, .vision-card, .success-panel, .success-next { padding: 22px; }
  .success-main { padding-top: 42px; }
  .success-panel h1 { font-size: 52px; }
  .success-steps li { grid-template-columns: 1fr; }
}
