
:root {
  --orange: #f04b17;
  --orange-dark: #d73714;
  --navy: #061f3f;
  --navy-2: #0c315f;
  --cream: #fff9f1;
  --peach: #fff0e5;
  --white: #ffffff;
  --ink: #102033;
  --muted: #667085;
  --line: #f0dbcb;
  --green: #2f8c44;
  --shadow: 0 18px 45px rgba(31, 30, 28, .10);
  --radius: 10px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(240, 75, 23, .07), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 42%, #fff 100%);
  line-height: 1.5;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select { font: inherit; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(1200px, calc(100% - 44px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0 26px;
  gap: 20px;
}
.brand {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 33px;
  color: var(--orange);
  letter-spacing: 0;
  line-height: .9;
  position: relative;
  width: max-content;
}
.brand small {
  display: block;
  font-size: 10px;
  color: var(--navy);
  letter-spacing: .01em;
  font-weight: 900;
  margin-top: 9px;
}
.askjen-word {
  font-family: Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  color: var(--orange);
}
.grant-ribbon {
  background: var(--orange);
  color: white;
  font-weight: 900;
  padding: 13px 32px 13px 92px;
  border-radius: 0;
  box-shadow: 0 8px 20px rgba(240, 90, 36, .22);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: 1;
  position: relative;
  min-width: 410px;
  text-align: center;
}
.grant-ribbon::before,
.grant-ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  width: 32px;
  height: 100%;
  background: var(--orange);
}
.grant-ribbon::before {
  left: -31px;
  clip-path: polygon(0 0, 100% 0, 64% 50%, 100% 100%, 0 100%, 36% 50%);
}
.grant-ribbon::after {
  right: -31px;
  clip-path: polygon(0 0, 100% 0, 64% 50%, 100% 100%, 0 100%, 36% 50%);
  transform: scaleX(-1);
}
.grant-ribbon span {
  position: absolute;
  left: 22px;
  top: 50%;
  translate: 0 -50%;
  width: 54px;
  height: 54px;
  border: 4px solid var(--orange);
  border-radius: 50%;
  background: white;
  color: var(--orange);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px white;
  z-index: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(430px, .96fr);
  gap: 42px;
  align-items: start;
  padding: 14px 0 34px;
}
.eyebrow {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}
h1, h2, h3 { margin-top: 0; line-height: 1.05; }
h1 {
  font-family: var(--serif);
  color: var(--navy);
  font-size: clamp(48px, 5.55vw, 70px);
  letter-spacing: 0;
  margin-bottom: 34px;
  max-width: 640px;
  position: relative;
}
h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 360px;
  max-width: 58vw;
  height: 8px;
  border-bottom: 3px solid var(--orange);
  border-radius: 50%;
  transform: rotate(-2deg);
}
h1 em { color: var(--orange); font-style: normal; font-weight: 900; }
h2 {
  color: var(--navy);
  font-size: clamp(27px, 3.2vw, 40px);
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 900;
}
h3 { color: var(--navy); font-size: 21px; }
.lead {
  font-size: 18px;
  color: #101827;
  max-width: 56ch;
  margin: 0 0 20px;
}
.hand-note {
  font-family: "Bradley Hand", "Comic Sans MS", cursive;
  color: var(--navy);
  transform: rotate(-2deg);
  font-size: 19px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.hero-action {
  padding-top: 45px;
}
.video-note {
  width: fit-content;
  margin: 0 auto 14px;
  text-align: center;
  position: relative;
}
.video-note::before {
  content: "↙";
  position: absolute;
  left: -36px;
  top: 12px;
  color: var(--navy);
  font-size: 31px;
}
.video-shell {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #fff5ed, #fffaf6);
  border: 2px dashed rgba(240, 75, 23, .72);
  border-radius: 10px;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 70px rgba(240, 75, 23, .08);
}
.video-shell video,
.video-shell iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-placeholder {
  text-align: center;
  color: var(--orange);
  font-weight: 900;
}
.play {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 30px;
  box-shadow: 0 12px 30px rgba(240,90,36,.3);
}
.card {
  background: rgba(255,255,255,.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.grant-benefits {
  margin-top: 30px;
  padding: 28px 31px 26px;
  max-width: 585px;
  background: rgba(255,255,255,.82);
}
.grant-benefits h3 {
  color: var(--orange);
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 26px;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  font-weight: 900;
}
.check::before {
  content: "✓";
  color: white;
  background: var(--orange);
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 1px;
}
.form-card {
  background: linear-gradient(145deg, #061a33, #08294f);
  color: white;
  padding: 29px 35px 27px;
  margin-top: 14px;
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(3, 22, 43, .24);
}
.form-card h3 {
  color: white;
  text-align: center;
  margin-bottom: 7px;
  text-transform: uppercase;
  font-size: 18px;
}
.form-card .mini { text-align: center; color: #e8eef7; font-size: 13px; margin-top: 0; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}
.form-grid .full { grid-column: 1 / -1; }
input, select {
  width: 100%;
  min-height: 45px;
  padding: 12px 13px;
  border: 1px solid #cfd7e2;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  font-size: 13px;
}
.session-title {
  font-size: 13px;
  font-weight: 900;
  margin: 18px 0 9px;
  text-transform: uppercase;
}
.session-option {
  background: white;
  color: var(--navy);
  border-radius: 6px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  cursor: pointer;
  border: 1px solid #d8e0ea;
}
.session-option + .session-option {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  margin-top: -1px;
}
.session-option:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.session-option:has(input:checked) { border-color: var(--orange); background: #fff7f2; }
.session-option input { width: auto; }
.session-option span {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  font-size: 12px;
  line-height: 1.15;
}
.session-option strong { display: block; font-size: 23px; line-height: 1; }
.form-card .session-option + .btn,
.form-card .session-option + .session-option + .btn {
  margin-top: 18px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  padding: 15px 22px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.btn-primary {
  color: white;
  background: linear-gradient(90deg, var(--orange), #ff6a1f);
  box-shadow: 0 10px 22px rgba(240,75,23,.22);
}
.btn-navy { color: white; background: var(--navy); }
.btn-green { color: white; background: var(--green); }
.btn-block { width: 100%; }
.form-note { color: #d7e0ea; text-align: center; font-size: 12px; margin-bottom: 0; }

.countdown-bar {
  background: linear-gradient(90deg, #d6281c, #ff6a1f);
  color: white;
  padding: 19px 0;
  box-shadow: 0 8px 30px rgba(230, 53, 24, .18);
}
.countdown-repeat {
  margin: 4px 0 0;
}
.countdown-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: center;
}
.countdown-copy {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 24px;
  max-width: 520px;
  line-height: 1.1;
  position: relative;
  padding-left: 78px;
}
.countdown-copy::before {
  content: "⏱";
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  font-size: 58px;
  line-height: 1;
}
.timer {
  display: flex;
  gap: 13px;
}
.timebox {
  min-width: 79px;
  padding: 10px 9px;
  border-radius: 8px;
  background: white;
  color: var(--navy);
  text-align: center;
  font-weight: 900;
}
.timebox span { display: block; font-size: 30px; line-height: 1; }
.timebox small { font-size: 9px; text-transform: uppercase; color: var(--orange); }

.section { padding: 62px 0; }
.timeback-section { padding-bottom: 52px; }
.mission-section { padding-top: 52px; }
.section.center { text-align: center; }
.section.center h2 { margin-bottom: 8px; }
.section-sub { color: var(--orange); font-weight: 800; margin-top: 0; font-size: 18px; }
.week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 42px;
  margin-top: 30px;
}
.week-card {
  background: linear-gradient(180deg, #fff9f3, #fff3ea);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  min-height: 188px;
  box-shadow: 0 10px 26px rgba(27, 37, 49, .05);
}
.week-card strong {
  color: var(--navy);
  display: block;
  font-size: 12px;
  margin-bottom: 14px;
}
.week-card .icon { font-size: 45px; margin: 8px 0 14px; }
.week-card span { font-size: 13px; color: #17243a; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.soft-card {
  padding: 34px 39px;
  background: linear-gradient(135deg, #fff8f1, #fff1e7);
  border-radius: 10px;
}
.answers-card {
  min-height: 325px;
  position: relative;
  overflow: hidden;
}
.built-card {
  background:
    linear-gradient(90deg, rgba(255,249,243,.96) 0 58%, rgba(255,249,243,.72)),
    linear-gradient(135deg, #fff, #eef4f7);
  min-height: 325px;
}
.built-card p {
  color: var(--navy);
  font-size: 13px;
}
.photo-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: linear-gradient(125deg, #ffffff 0%, #f7e9df 100%);
}
.photo-card::after {
  content: "PHOTO / TEAM IMAGE";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(9,36,69,.32);
  font-weight: 900;
  letter-spacing: .08em;
}
.feature-list { display: grid; gap: 13px; }
.feature-list div { display: flex; gap: 12px; align-items: flex-start; font-size: 14px; }
.feature-list div::before {
  content: "✓";
  color: var(--orange);
  border: 1.5px solid var(--orange);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 900;
}
.soft-card .feature-list + .btn {
  margin-top: 30px;
}
.timeback-card {
  padding: 22px 30px;
}
.timeback-card h2 {
  font-family: "Bradley Hand", "Comic Sans MS", cursive;
  text-transform: none;
  font-size: clamp(28px, 3.4vw, 42px);
  max-width: 650px;
}
.timeback-promise {
  color: var(--orange);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  max-width: 680px;
  margin: 42px 0 0;
  text-transform: uppercase;
}

.mission {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 20px;
  align-items: center;
  padding: 24px 28px;
  border-radius: 10px;
}
.quote {
  font-family: var(--sans);
  font-size: 24px;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.12;
}
.quote em { color: var(--orange); font-style: normal; }
footer {
  background: linear-gradient(90deg, #061b35, #08294f);
  color: white;
  padding: 22px 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.footer-note { color: #cbd5e1; font-size: 13px; }

/* confirmation */
.confirm-hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
  align-items: center;
  padding: 42px 0;
}
.confirm-hero h1::after {
  display: none;
}
.success-mark {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: grid;
  place-items: center;
  font-size: 50px;
  flex: 0 0 auto;
}
.success-wrap { display: flex; align-items: center; gap: 24px; }
.event-summary { padding: 26px; background: #fff8f2; }
.event-summary .selected { color: var(--orange); font-weight: 900; }
.next-video {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  padding: 24px;
  align-items: center;
}
.expect-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  padding: 25px;
}
.expect-item { border-left: 1px solid #d8e1eb; padding-left: 18px; }
.expect-item strong { display: block; color: var(--navy); }

@media (max-width: 900px) {
  .hero, .two-col, .confirm-hero, .next-video, .mission { grid-template-columns: 1fr; }
  .hero-action { padding-top: 0; }
  .week-grid { grid-template-columns: repeat(2, 1fr); }
  .expect-grid { grid-template-columns: 1fr 1fr; }
  .countdown-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .container { width: min(100% - 28px, 1200px); }
  .site-header { align-items: flex-start; flex-direction: column; }
  .grant-ribbon {
    font-size: 10px;
    min-width: 0;
    width: calc(100% - 34px);
    margin-left: 17px;
    padding: 11px 16px 11px 62px;
  }
  .grant-ribbon::before,
  .grant-ribbon::after {
    width: 18px;
  }
  .grant-ribbon::before { left: -17px; }
  .grant-ribbon::after { right: -17px; }
  .grant-ribbon span { width: 42px; height: 42px; left: 13px; border-width: 3px; }
  .form-grid, .check-grid, .week-grid, .expect-grid { grid-template-columns: 1fr; }
  h1 { font-size: 46px; }
  h1::after { width: 245px; }
  .form-card { padding: 24px 18px; }
  .countdown-copy { font-size: 18px; padding-left: 0; }
  .countdown-copy::before { display: none; }
  .timer { width: 100%; justify-content: center; }
  .timebox { min-width: 58px; }
  .success-wrap { align-items: flex-start; }
  .success-mark { width: 64px; height: 64px; font-size: 34px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
