@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  --paper: #FBFBF9;
  --raised: #FFFFFF;
  --tint: #EBF3FA;
  --ink: #182B3C;
  --muted: #5C6B7A;
  --faint: #8A98A5;
  --line: #E2E8ED;
  --accent: #1F6FB8;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Archivo', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;
}

/* ============ Base ============ */

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

[id] { scroll-margin-top: 88px; }

.tmp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.tmp-btn {
  display: inline-block;
  background: var(--ink);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  padding: 16px 26px;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
}

.tmp-btn:hover { background: #24405A; }
.tmp-btn:active { transform: scale(0.98); }

.tmp-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 6px 10px;
}

.tmp-kicker {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

.tmp-h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(27px, 3.8vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

.tmp-sub {
  color: var(--muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 0 8px;
}

/* ============ Signup form ============ */

.tmp-signup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin: 28px 0 0;
}
.tmp-signup label{
    flex: 1 1 160px;
    display: flex;
}
.tmp-signup input {
  flex: 1;
  background: var(--raised);
  border: 1px solid #D6DEE5;
  border-radius: 10px;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 15px 16px;
  min-width: 0;
}

.tmp-signup input::placeholder { color: var(--faint); }

.tmp-signup input:focus {
  border-color: var(--accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(31, 111, 184, 0.15);
}

.tmp-signup .tmp-btn { flex: 0 0 auto; }

.tmp-form-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
  margin: 14px 0 0;
}

/* ============ Header ============ */

.tmp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.tmp-header.tmp-scrolled { border-bottom-color: var(--line); }

.tmp-header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
}

.tmp-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

.tmp-logo span { color: var(--accent); }

.tmp-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tmp-handle {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-decoration: none;
}

.tmp-handle:hover { color: var(--ink); }

.tmp-header .tmp-btn {
  padding: 11px 18px;
  font-size: 14px;
}

/* ============ Footer ============ */

.tmp-footer {
  border-top: 1px solid var(--line);
  margin-top: 96px;
  padding: 48px 0 40px;
}

.tmp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.tmp-footer-links {
  display: flex;
  gap: 24px;
}

.tmp-footer-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}

.tmp-footer-links a:hover { color: var(--ink); }

.tmp-footer-legal {
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--faint);
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 720px;
}

/* ============ Page: home ============ */

.tmp-hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 80px;
}

.tmp-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
}

.tmp-hero-sub {
  color: var(--muted);
  font-size: 18px;
  max-width: 520px;
  margin: 0;
}

.tmp-hero-cover img,
.tmp-hero-cover video {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
  background: #0E1B28;
}

.tmp-hero-cover video {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center bottom;
}

.tmp-hero .priorly-embed__message {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.tmp-cover-caption {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 12px 0 0;
}

.tmp-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #F4F7F9;
  padding: 18px 0;
}

.tmp-strip-in {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.tmp-section { padding-top: 88px; }

.tmp-checklist {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 880px;
}

.tmp-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 16px;
  color: var(--ink);
}

.tmp-tick {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 1px;
  background: var(--tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
}

.tmp-callout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 28px;
  background: var(--tint);
  border: 1px solid #CFE2F2;
  border-radius: 14px;
  padding: 26px 30px;
  max-width: 880px;
}

.tmp-callout p {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.01em;
}

.tmp-contents {
  list-style: none;
  counter-reset: tmp-ch;
  margin: 36px 0 0;
  padding: 0;
  max-width: 880px;
}

.tmp-contents li {
  counter-increment: tmp-ch;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.tmp-contents li:last-child { border-bottom: 1px solid var(--line); }

.tmp-contents li::before {
  content: counter(tmp-ch, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--accent);
  padding-top: 4px;
}

.tmp-contents h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
}

.tmp-contents p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
}

.tmp-timing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
  max-width: 880px;
}

.tmp-timing-card {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
}

.tmp-timing-card .tmp-label { margin-bottom: 16px; }

.tmp-timing-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin: 0 0 10px;
}

.tmp-timing-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.tmp-timing-card.tmp-now {
  border-color: #BBD7EE;
  background: #F5FAFE;
}

.tmp-timing-card.tmp-now .tmp-label {
  border-color: #BBD7EE;
  color: var(--accent);
}

.tmp-farzin {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 56px;
  align-items: center;
}

.tmp-farzin img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
}

.tmp-farzin blockquote {
  margin: 24px 0 0;
  padding-left: 20px;
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 18px;
}

.tmp-faq {
  margin-top: 36px;
  max-width: 880px;
}

.tmp-faq details {
  border-top: 1px solid var(--line);
}

.tmp-faq details:last-child { border-bottom: 1px solid var(--line); }

.tmp-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
}

.tmp-faq summary::-webkit-details-marker { display: none; }

.tmp-faq summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--accent);
  flex: 0 0 auto;
}

.tmp-faq details[open] summary::after { content: '\2013'; }

.tmp-faq details p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 16px;
  max-width: 680px;
}

.tmp-final {
  margin-top: 96px;
  background: var(--ink);
  border-radius: 18px;
  padding: 64px 48px;
  text-align: center;
}

.tmp-final .priorly-embed__message {
    width: 100%;
    color: #fff;
}

.tmp-final .tmp-kicker { color: #8FBEE6; }

.tmp-final .tmp-h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.tmp-final .tmp-sub {
  color: #A9BCCB;
  margin: 0 auto;
}

.tmp-final .tmp-signup {
  margin: 32px auto 0;
  justify-content: center;
}

.tmp-final .tmp-signup input {
  background: #22394E;
  border-color: #3A5468;
  color: #FFFFFF;
}

.tmp-final .tmp-signup input::placeholder { color: #8FA3B4; }

.tmp-final .tmp-btn {
  background: #FFFFFF;
  color: var(--ink);
}

.tmp-final .tmp-btn:hover { background: #E8EEF3; }

.tmp-final .tmp-form-note { color: #8FA3B4; }

/* ============ Page: download ============ */

.tmp-dl {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 96px;
  text-align: center;
}

.tmp-dl h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}

.tmp-dl-sub {
  color: var(--muted);
  font-size: 17px;
  margin: 0 0 32px;
}

.tmp-dl .tmp-btn {
  font-size: 17px;
  padding: 18px 32px;
}

.tmp-dl-inbox {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--faint);
  margin: 22px 0 0;
}

.tmp-next {
  margin: 72px auto 0;
  max-width: 640px;
  text-align: left;
}

.tmp-next ol {
  list-style: none;
  counter-reset: tmp-nx;
  margin: 24px 0 0;
  padding: 0;
}

.tmp-next ol li {
  counter-increment: tmp-nx;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
}

.tmp-next ol li::before {
  content: counter(tmp-nx, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  padding-top: 3px;
}

.tmp-next ol li strong {
  color: var(--ink);
  font-weight: 600;
}

.tmp-about-hero {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 56px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 64px;
}
 
.tmp-about-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
}
 
.tmp-about-hero .tmp-sub {
  font-size: 18px;
  max-width: 520px;
}
 
.tmp-about-hero img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid var(--line);
  display: block;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
 
.tmp-prose {
  max-width: 1080px;
  padding-top: 64px;
}
 
.tmp-prose p {
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
  margin: 0 0 20px;
}
 
.tmp-prose p strong {
  color: var(--ink);
  font-weight: 600;
}
 
.tmp-prose .tmp-kicker { 
    margin-top: 48px;
    margin-bottom: 10px;
    font-weight: 900; 
}
 
.tmp-prose-lead {
  font-size: 20px !important;
  line-height: 1.65 !important;
  color: var(--ink) !important;
}
 
.tmp-pull {
  margin: 48px 0;
  padding: 32px 0 32px 24px;
  border-left: 3px solid var(--accent);
}
 
.tmp-pull p {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px !important;
  line-height: 1.35 !important;
  color: var(--ink) !important;
  margin: 0;
}
 
.tmp-about-cta {
  margin-top: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
 
.tmp-about-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 440px;
}
 
.tmp-about-cta p strong {
  color: var(--ink);
}


/* ============ Mobile ============ */

@media (max-width: 880px) {
  .tmp-header {
    padding: 0px 10px;
  }
  .tmp-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 48px;
    padding-bottom: 56px;
  }

  .tmp-hero-cover {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }

  .tmp-hero-cover video { aspect-ratio: 1 / 1; }

  .tmp-section { padding-top: 64px; }

  .tmp-checklist { grid-template-columns: 1fr; }

  .tmp-timing { grid-template-columns: 1fr; }

  .tmp-farzin {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .tmp-farzin img { max-width: 360px; }

  .tmp-callout { justify-content: center; text-align: center; }

  .tmp-final { padding: 48px 24px; }

  .tmp-signup .tmp-btn { flex: 1 1 100%; }

  .tmp-header .tmp-handle { display: none; }

  .tmp-strip-in { justify-content: center; }

  .tmp-footer-top { flex-direction: column; }

  .tmp-dl { padding-top: 64px; }

.tmp-about-hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 48px;
    padding-bottom: 48px;
  }
 
  .tmp-about-hero img { max-width: 320px; }
 
  .tmp-prose { padding-top: 48px; }
 
  .tmp-pull { margin: 36px 0; }
 
  .tmp-about-cta { justify-content: flex-start; }
}