:root {
  --primary: #3d6b5a;
  --primary-deep: #1a3d32;
  --on-primary: #ffffff;
  --primary-container: #d8e8df;
  --on-primary-container: #1a3d32;
  --sage: #6f8f7e;
  --streak: #c4a35a;
  --surface: #f6f3ee;
  --surface-elevated: #efebe4;
  --surface-container: #ffffff;
  --on-surface: #1c1f1d;
  --on-surface-variant: #5c635f;
  --outline: #d4cfc6;
  --outline-variant: #e8e3da;
  --error: #b54a4a;
  --max: 42rem;
  --wide: 70rem;
  --radius: 1rem;
  --radius-btn: 0.85rem;
  --font-display: "Fraunces", "Literata", Georgia, serif;
  --font-body: "Source Sans 3", "Source Sans Pro", "Segoe UI", sans-serif;
  --shadow-soft: 0 18px 40px rgba(28, 31, 29, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 143, 126, 0.55) transparent;
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-track {
  background: transparent;
}

html::-webkit-scrollbar-thumb {
  background: rgba(111, 143, 126, 0.45);
  border-radius: 999px;
  border: 2px solid var(--surface);
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(61, 107, 90, 0.62);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--on-surface);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

body.landing {
  background:
    radial-gradient(1100px 520px at 78% -8%, #e4efe8 0%, transparent 55%),
    radial-gradient(800px 420px at -8% 18%, #efe8d8 0%, transparent 48%),
    var(--surface);
}

a {
  color: var(--primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  text-decoration-thickness: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header / footer */

.site-header {
  border-bottom: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.88);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header--float {
  border-bottom-color: transparent;
  background: rgba(246, 243, 238, 0.82);
}

.site-header-inner,
.site-footer-inner,
.page {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.site-header-inner--wide,
.site-footer-inner--wide {
  width: min(100% - 2rem, var(--wide));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 40;
  padding: 0.55rem 0.9rem;
  border-radius: 0.65rem;
  background: var(--primary);
  color: var(--on-primary);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  position: fixed;
  top: 0.75rem;
}

.site-header-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: inherit;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 0.55rem;
  object-fit: cover;
  flex-shrink: 0;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.55rem;
  background: var(--primary-container);
  color: var(--on-primary-container);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  margin-left: auto;
  font-size: 0.95rem;
}

.nav a {
  color: var(--on-surface-variant);
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--primary);
  text-decoration: underline;
}

.nav__cta {
  padding: 0.38rem 0.8rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--on-primary) !important;
  text-decoration: none !important;
}

.nav__cta:hover {
  opacity: 0.92;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid var(--outline);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--on-surface);
  cursor: pointer;
  place-items: center;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  position: relative;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

.site-header.is-nav-open .nav-toggle__bars {
  background: transparent;
}

.site-header.is-nav-open .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  padding: 0.15rem;
  border: 1px solid var(--outline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang-switch__btn {
  appearance: none;
  border: none;
  background: transparent;
  color: var(--on-surface-variant);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.38rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
}

.lang-switch__btn:hover {
  color: var(--primary);
}

.lang-switch__btn.is-active {
  background: var(--primary-container);
  color: var(--on-primary-container);
}

.site-footer {
  border-top: 1px solid var(--outline);
  background: var(--surface-elevated);
  margin-top: 2rem;
}

.site-footer-inner {
  padding: 1.75rem 0 2rem;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
}

.site-footer-inner--wide {
  display: grid;
  gap: 1.25rem;
}

.footer-brand .brand {
  margin-bottom: 0.35rem;
}

.footer-brand p {
  margin: 0;
  max-width: 22rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}

.site-footer a {
  color: var(--on-surface-variant);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-copy {
  margin: 0;
  opacity: 0.85;
}

#ozellikler,
#sinav,
#koc,
#sss,
#indir,
#ekranlar,
#rehber,
#plan,
#icerik {
  scroll-margin-top: 5.75rem;
}

/* Shared page content (legal / support) */

.page {
  padding: 2.5rem 0 4rem;
}

.hero {
  margin-bottom: 2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

h1,
h2 {
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
}

.lead {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 1.08rem;
}

.meta {
  margin-top: 1rem;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
}

.card-grid {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.card {
  background: var(--surface-container);
  border: 1px solid var(--outline);
  border-radius: 0.85rem;
  padding: 1.25rem 1.35rem;
}

.card h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0;
  color: var(--on-surface-variant);
}

.actions,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.25rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  background: var(--primary);
  color: var(--on-primary);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--primary-deep);
  border-color: var(--outline);
}

.button:hover {
  transform: translateY(-1px);
  text-decoration: none;
  background: var(--primary-deep);
  color: var(--on-primary);
}

.button.secondary:hover {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-color: transparent;
}

article section {
  margin-top: 2rem;
}

article h2 {
  margin: 0 0 0.65rem;
  font-size: 1.25rem;
}

article h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 600;
}

article p,
article ul {
  margin: 0 0 0.85rem;
}

article ul {
  padding-left: 1.2rem;
}

article li {
  margin-bottom: 0.35rem;
}

.note {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  margin: 1.25rem 0;
}

/* Landing hero */

.hero-stage {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: min(100vh, 54rem);
  display: grid;
  align-items: center;
  padding: 1.5rem 0 3rem;
}

.hero-stage__glow {
  position: absolute;
  inset: 8% 5% auto auto;
  width: min(52vw, 34rem);
  height: min(52vw, 34rem);
  border-radius: 50%;
  background: radial-gradient(circle, #c5d9ce 0%, transparent 70%);
  opacity: 0.55;
  z-index: -1;
  animation: glow-drift 12s ease-in-out infinite alternate;
}

.hero-stage__paper {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(61, 107, 90, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 107, 90, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(
    ellipse 70% 60% at 70% 40%,
    #000 20%,
    transparent 75%
  );
  mask-image: radial-gradient(
    ellipse 70% 60% at 70% 40%,
    #000 20%,
    transparent 75%
  );
}

.hero-stage__inner {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.1rem;
}

.brand-lockup__mark {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(61, 107, 90, 0.16);
}

.brand-lockup__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3.4vw, 2.35rem);
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  line-height: 1.05;
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 6vw, 3.75rem);
  margin: 0 0 0.9rem;
  color: var(--on-surface);
  animation: rise 700ms ease both;
}

.hero-lead {
  margin: 0;
  max-width: 32rem;
  color: var(--on-surface-variant);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  animation: rise 700ms ease 80ms both;
}

.hero-note {
  margin: 1rem 0 0;
  color: var(--sage);
  font-size: 0.92rem;
  font-weight: 600;
  animation: rise 700ms ease 200ms both;
}

.hero-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.hero-roles a {
  color: var(--on-surface-variant);
  text-decoration: none;
}

.hero-roles a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.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;
}

/* Waitlist form */

.waitlist-form {
  margin-top: 1.5rem;
  max-width: 32rem;
  animation: rise 700ms ease 120ms both;
}

.waitlist-form__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.waitlist-form input[type="email"] {
  flex: 1 1 9rem;
  min-width: 0;
  max-width: 100%;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--outline);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.9);
  color: var(--on-surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.35;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.waitlist-form input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(61, 107, 90, 0.15);
}

.waitlist-form input[type="email"]::placeholder {
  color: var(--sage);
}

.waitlist-form .button {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0.62rem 1rem;
  white-space: nowrap;
}

.waitlist-form .button:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.waitlist-form__note {
  margin: 0.55rem 0 0;
  font-size: 0.82rem;
  color: var(--sage);
}

.waitlist-form__note a {
  color: var(--primary);
  text-decoration: none;
}

.waitlist-form__note a:hover {
  text-decoration: underline;
}

.waitlist-form__status {
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.35em;
}

.waitlist-form__status--success {
  color: var(--primary-deep);
}

.waitlist-form__status--error {
  color: var(--error);
}

.waitlist-form--done input[type="email"],
.waitlist-form--done .button {
  display: none;
}

.waitlist-form--compact {
  margin-top: 1.25rem;
  max-width: 28rem;
}

.hero-copy .store-badges {
  margin: 1.35rem 0 0;
  animation: rise 700ms ease 140ms both;
}

.hero-copy .hero-actions {
  margin-top: 1rem;
  animation: rise 700ms ease 180ms both;
}

.article-cta .store-badges {
  margin: 0 0 1rem;
}

.article-cta .hero-actions {
  margin-top: 0;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 28rem;
  gap: 0.75rem;
}

.hero-visual__caption {
  margin: 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: -0.01em;
}

.phone-stack {
  position: relative;
  width: min(100%, 28rem);
  aspect-ratio: 1 / 1.15;
  animation: float-y 7s ease-in-out infinite;
}

.phone {
  margin: 0;
  position: absolute;
  width: 50%;
  background: transparent;
  filter: drop-shadow(0 22px 36px rgba(28, 31, 29, 0.22));
}

.phone img {
  width: 100%;
  height: auto;
}

.phone--back {
  left: 0;
  top: 18%;
  transform: rotate(-8deg);
  opacity: 0.72;
  z-index: 1;
  animation: rise 900ms ease 120ms both;
}

.phone--front {
  right: 0;
  top: 0;
  width: 70%;
  transform: rotate(4deg);
  z-index: 2;
  animation: rise 900ms ease 40ms both;
}

/* Strip */

.strip {
  border-top: 1px solid rgba(212, 207, 198, 0.7);
  border-bottom: 1px solid rgba(212, 207, 198, 0.7);
  background: rgba(239, 235, 228, 0.75);
}

.strip__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 1.15rem 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem 1.25rem;
  text-align: center;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

.strip__inner strong {
  color: var(--primary-deep);
  font-family: var(--font-display);
  font-weight: 600;
}

.strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0;
}

.strip .sketch-mark {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.strip .sketch-mark path {
  animation: sketch-check 480ms ease forwards;
}

.strip__item:nth-child(1) .sketch-mark path { animation-delay: 80ms; }
.strip__item:nth-child(2) .sketch-mark path { animation-delay: 160ms; }
.strip__item:nth-child(3) .sketch-mark path { animation-delay: 240ms; }
.strip__item:nth-child(4) .sketch-mark path { animation-delay: 320ms; }
.strip__item:nth-child(5) .sketch-mark path { animation-delay: 400ms; }

/* Feature blocks */

.feature-block {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.feature-block--flip .feature-block__copy {
  order: 2;
}

.feature-block--flip .feature-block__media {
  order: 1;
}

.feature-block h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.feature-block__copy > p:not(.section-kicker) {
  margin: 0 0 1rem;
  color: var(--on-surface-variant);
  max-width: 34rem;
}

.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.feature-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--on-surface);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
}

.feature-block__media {
  margin: 0;
  display: grid;
  place-items: center;
}

.feature-block__media img {
  width: min(100%, 20rem);
  background: transparent;
  filter: drop-shadow(0 22px 36px rgba(28, 31, 29, 0.18));
}

.feature-block__media--pair {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 0.85rem;
}

.feature-block__media--pair img {
  width: min(46%, 12rem);
}

.feature-block__media--pair img:first-child {
  transform: rotate(-4deg) translateY(0.5rem);
}

.feature-block__media--pair img:last-child {
  transform: rotate(5deg);
}

/* Exam spotlight — visual panels (no screenshots yet) */

.exam-band {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0;
  background:
    linear-gradient(180deg, transparent, rgba(216, 232, 223, 0.4) 40%, transparent);
}

.exam-band__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.exam-band__copy h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.exam-band__copy > p:not(.section-kicker) {
  margin: 0 0 1rem;
  color: var(--on-surface-variant);
  max-width: 34rem;
}

.exam-stage {
  position: relative;
  min-height: 22rem;
  display: grid;
  place-items: center;
}

.exam-panel {
  width: min(100%, 26rem);
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.35rem 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  animation: rise 800ms ease both;
}

.exam-panel__label {
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.exam-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.exam-chip {
  padding: 0.35rem 0.7rem;
  border-radius: 0.55rem;
  font-size: 0.85rem;
  font-weight: 600;
  background: var(--surface-elevated);
  color: var(--on-surface-variant);
  border: 1px solid transparent;
}

.exam-chip--active {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-color: transparent;
}

.exam-countdown {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, #f9f7f2, #eef5f0);
  border: 1px solid var(--outline-variant);
}

.exam-countdown__days {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  line-height: 1;
}

.exam-countdown__days span {
  font-size: 0.45em;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--on-surface-variant);
  margin-left: 0.2em;
  letter-spacing: 0;
}

.exam-countdown__days [data-countdown-days] {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  color: inherit;
  margin-left: 0;
  letter-spacing: inherit;
}

.exam-countdown__meta {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
}

.exam-subjects {
  display: grid;
  gap: 0.55rem;
}

.exam-subject {
  display: grid;
  grid-template-columns: 5.5rem 1fr auto;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.88rem;
}

.exam-subject__name {
  font-weight: 600;
  color: var(--on-surface);
}

.exam-subject__bar {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--outline-variant);
  overflow: hidden;
}

.exam-subject__fill {
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transform-origin: left center;
  animation: bar-grow 1.1s ease 0.3s both;
}

.exam-subject__fill--amber {
  background: var(--streak);
}

.exam-subject__fill--muted {
  background: var(--sage);
}

.exam-subject__net {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--primary-deep);
  min-width: 2.5rem;
  text-align: right;
}

/* AI coach review panel */

.coach-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.85rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--primary-container);
  color: var(--on-primary-container);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.coach-status__dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.coach-summary {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  color: var(--on-surface);
  line-height: 1.5;
}

.coach-gap-label {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.coach-gap {
  margin: 0 0 1rem;
  padding: 0.7rem 0.85rem;
  border-radius: 0.7rem;
  background: linear-gradient(135deg, #f9f7f2, #eef5f0);
  border: 1px solid var(--outline-variant);
  font-size: 0.9rem;
  color: var(--on-surface-variant);
}

.coach-recs {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.coach-recs li {
  padding-left: 1.15rem;
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
}

.coach-recs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--primary);
}

.coach-apply {
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 0.7rem;
  background: var(--primary);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.pro-chip {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.12rem 0.45rem;
  border-radius: 0.4rem;
  background: var(--streak);
  color: #1c1f1d;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* Deneme trend panel */

.trend-band {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 0 0 clamp(3rem, 6vw, 4.5rem);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}

.trend-band--flip .trend-band__visual {
  order: -1;
}

.trend-band h2 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.trend-band__copy > p:not(.section-kicker) {
  margin: 0 0 1rem;
  color: var(--on-surface-variant);
  max-width: 34rem;
}

.trend-panel {
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.35rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.trend-panel__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.trend-panel__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

.trend-panel__score {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  color: var(--primary-deep);
  letter-spacing: -0.02em;
}

.trend-panel__score small {
  font-family: var(--font-body);
  font-size: 0.55em;
  font-weight: 600;
  color: var(--sage);
  margin-left: 0.2em;
}

.trend-chart {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

.trend-session {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-top: 1px solid var(--outline-variant);
  font-size: 0.9rem;
}

.trend-session:first-of-type {
  border-top: none;
  padding-top: 0;
}

.trend-session strong {
  font-weight: 600;
  color: var(--on-surface);
}

.trend-session span {
  color: var(--on-surface-variant);
  font-variant-numeric: tabular-nums;
}

.trend-session__delta {
  color: var(--primary) !important;
  font-weight: 600;
}

/* Feature mosaic (compact highlights) */

.mosaic {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 5vw, 4rem);
}

.mosaic__head {
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.mosaic__head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.mosaic__head p {
  margin: 0;
  color: var(--on-surface-variant);
}

.mosaic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.mosaic__item {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--outline-variant);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.mosaic__item:hover {
  background: var(--surface-container);
  border-color: var(--outline);
  transform: translateY(-2px);
}

.mosaic__icon {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.85rem;
  border-radius: 0.65rem;
  background: var(--primary-container);
  color: var(--on-primary-container);
  display: grid;
  place-items: center;
}

.mosaic__icon svg {
  width: 1.15rem;
  height: 1.15rem;
}

.mosaic__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.mosaic__item p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

/* Gallery */

.gallery {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 3rem;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(216, 232, 223, 0.35)
  );
}

.gallery__head {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto 1.35rem;
}

.gallery__head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.gallery__head p {
  margin: 0;
  color: var(--on-surface-variant);
  max-width: 36rem;
}

.gallery__stage {
  position: relative;
}

.gallery__viewport {
  min-width: 0;
}

.gallery--enhanced .gallery__viewport {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 2.25rem,
    #000 calc(100% - 2.25rem),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 2.25rem,
    #000 calc(100% - 2.25rem),
    transparent 100%
  );
}

.gallery--enhanced.gallery--at-start .gallery__viewport {
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(100% - 2.75rem),
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    #000 0,
    #000 calc(100% - 2.75rem),
    transparent 100%
  );
}

.gallery--enhanced.gallery--at-end .gallery__viewport {
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 2.75rem,
    #000 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0,
    #000 2.75rem,
    #000 100%
  );
}

.gallery--enhanced.gallery--at-start.gallery--at-end .gallery__viewport {
  -webkit-mask-image: none;
  mask-image: none;
}

.gallery__track {
  position: relative;
  display: flex;
  gap: 1.15rem;
  overflow-x: auto;
  padding: 0.65rem max(1rem, calc((100% - var(--wide)) / 2 + 1rem)) 1.35rem;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: max(1rem, calc((100% - var(--wide)) / 2 + 1rem));
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(111, 143, 126, 0.5) transparent;
  cursor: grab;
}

.gallery__track:active {
  cursor: grabbing;
}

.gallery__track:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
}

.gallery__track::-webkit-scrollbar {
  height: 8px;
}

.gallery__track::-webkit-scrollbar-track {
  background: transparent;
}

.gallery__track::-webkit-scrollbar-thumb {
  background: rgba(111, 143, 126, 0.4);
  border-radius: 999px;
}

.gallery--enhanced .gallery__track {
  scrollbar-width: none;
}

.gallery--enhanced .gallery__track::-webkit-scrollbar {
  display: none;
}

.gallery__track figure {
  margin: 0;
  flex: 0 0 auto;
  width: min(72vw, 16.75rem);
  scroll-snap-align: center;
  scroll-snap-stop: normal;
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.gallery--enhanced .gallery__track figure {
  opacity: 0.72;
  transform: scale(0.96);
}

.gallery--enhanced .gallery__track figure.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery__track img {
  width: 100%;
  background: transparent;
  filter: drop-shadow(0 16px 32px rgba(28, 31, 29, 0.18));
  user-select: none;
  -webkit-user-drag: none;
}

.gallery__track figcaption {
  margin-top: 0.7rem;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--on-surface-variant);
}

.gallery__nav {
  display: none;
  position: absolute;
  top: calc(50% - 1.1rem);
  z-index: 2;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--outline);
  background: rgba(255, 255, 255, 0.92);
  color: var(--on-primary-container);
  box-shadow: 0 8px 22px rgba(28, 31, 29, 0.1);
  cursor: pointer;
  place-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.gallery--enhanced .gallery__nav {
  display: grid;
}

.gallery__nav:hover:not(:disabled) {
  background: #fff;
  transform: translateY(-1px);
}

.gallery__nav:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.gallery__nav:disabled {
  opacity: 0.28;
  cursor: default;
  box-shadow: none;
}

.gallery__nav svg {
  width: 1.2rem;
  height: 1.2rem;
}

.gallery__nav--prev {
  left: max(0.4rem, calc((100% - var(--wide)) / 2 - 0.35rem));
}

.gallery__nav--next {
  right: max(0.4rem, calc((100% - var(--wide)) / 2 - 0.35rem));
}

.gallery__chrome {
  display: none;
  width: min(100% - 2rem, var(--wide));
  margin: 0.15rem auto 0;
  justify-items: center;
  gap: 0.85rem;
}

.gallery--enhanced .gallery__chrome {
  display: grid;
}

.gallery__progress {
  width: min(100%, 14rem);
  height: 3px;
  border-radius: 999px;
  background: rgba(61, 107, 90, 0.16);
  overflow: hidden;
}

.gallery__progress-bar {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: var(--primary);
  transform-origin: left center;
}

.gallery__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
}

.gallery__dot {
  appearance: none;
  width: 0.45rem;
  height: 0.45rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(61, 107, 90, 0.28);
  cursor: pointer;
  transition:
    width 180ms ease,
    background 180ms ease;
}

.gallery__dot:hover {
  background: var(--sage);
}

.gallery__dot.is-active {
  width: 1.25rem;
  background: var(--primary);
}

.gallery__dot:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* FAQ */

.faq {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.faq__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
}

.faq__inner h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.faq__list {
  display: grid;
  gap: 0.65rem;
  max-width: 40rem;
}

.faq__item {
  border: 1px solid var(--outline);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
}

.faq__item summary {
  padding: 1rem 1.15rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--on-surface);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary);
  transition: transform 160ms ease;
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
  color: var(--on-surface-variant);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Poster band — last page of the journal */

.poster-band {
  padding: clamp(2rem, 5vw, 3.5rem) 0 4.5rem;
}

.poster-band__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr minmax(16rem, 0.85fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 0.35rem 1rem 1rem 0.35rem;
  border: 1px solid var(--outline);
  background: #fbf8f2;
  box-shadow: var(--shadow-soft);
}

.poster-band__copy {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.35rem) clamp(1.4rem, 3vw, 2.1rem) clamp(1.6rem, 3vw, 2.4rem) clamp(1.85rem, 3.4vw, 2.75rem);
  background-image:
    linear-gradient(90deg, transparent 1.35rem, #d9b4b0 1.35rem, #d9b4b0 calc(1.35rem + 1px), transparent calc(1.35rem + 1px)),
    repeating-linear-gradient(
      transparent,
      transparent 31px,
      rgba(61, 107, 90, 0.1) 31px,
      rgba(61, 107, 90, 0.1) 32px
    );
  background-position: 0 1.15rem;
}

.poster-band__copy .notebook__folio {
  margin-bottom: 1.15rem;
}

.poster-band__copy .section-kicker {
  margin-bottom: 0.35rem;
}

.poster-band__copy h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  max-width: 16ch;
}

.poster-band__copy > p:not(.section-kicker):not(.notebook__folio) {
  margin: 0;
  color: var(--on-surface-variant);
  max-width: 34rem;
}

.poster-band__art {
  margin: 0;
  display: grid;
  place-items: end center;
  min-height: 22rem;
  padding: 1.75rem 1.25rem 0;
  background:
    linear-gradient(180deg, rgba(251, 248, 242, 0) 0%, rgba(216, 232, 223, 0.5) 100%);
  border-left: 1px solid rgba(212, 207, 198, 0.7);
}

.poster-band__art img {
  width: min(100%, 15.5rem);
  filter: drop-shadow(0 18px 28px rgba(26, 61, 50, 0.16));
}

/* Motion */

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow-drift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-4%, 6%) scale(1.08);
  }
}

@keyframes bar-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes draw-line {
  from {
    stroke-dashoffset: 220;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.trend-chart__line {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: draw-line 1.4s ease 0.4s forwards;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .phone-stack,
  .hero-stage__glow,
  .hero-copy h1,
  .hero-lead,
  .hero-copy .hero-actions,
  .hero-note,
  .phone--back,
  .phone--front,
  .exam-panel,
  .exam-subject__fill,
  .trend-chart__line {
    animation: none;
  }

  .gallery__track figure,
  .gallery--enhanced .gallery__track figure,
  .gallery--enhanced .gallery__track figure.is-active,
  .gallery__dot,
  .gallery__progress-bar {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .trend-chart__line,
  .strip .sketch-mark path {
    stroke-dashoffset: 0;
    animation: none;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .notebook__spread,
  .feature-block,
  .poster-band__inner,
  .exam-band__inner,
  .trend-band {
    grid-template-columns: 1fr;
  }

  .feature-block--flip .feature-block__copy,
  .feature-block--flip .feature-block__media {
    order: unset;
  }

  .trend-band--flip .trend-band__visual {
    order: unset;
  }

  .hero-stage {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-visual {
    min-height: auto;
  }

  .phone-stack {
    width: min(100%, 22rem);
    aspect-ratio: 1 / 1.05;
  }

  .strip__inner {
    grid-template-columns: 1fr 1fr;
  }

  .strip__inner p:last-child {
    grid-column: 1 / -1;
  }

  .mosaic__grid {
    grid-template-columns: 1fr 1fr;
  }

  .poster-band__art {
    order: unset;
    border-left: none;
    border-top: none;
    min-height: 19rem;
    padding-top: 0.35rem;
  }

  .poster-band__art img {
    width: min(68%, 13.75rem);
  }

  .exam-stage {
    min-height: auto;
  }

  .gallery__track figure {
    width: min(78vw, 16rem);
  }
}

@media (max-width: 640px) {
  .gallery__nav,
  .gallery--enhanced .gallery__nav {
    display: none;
  }

  .brand-lockup__name {
    font-size: 1.55rem;
  }

  .waitlist-form {
    max-width: 100%;
  }

  .waitlist-form__row {
    gap: 0.5rem;
  }

  .waitlist-form input[type="email"] {
    flex: 1 1 100%;
    font-size: 16px;
    padding: 0.55rem 0.8rem;
  }

  .waitlist-form .button {
    flex: 1 1 auto;
    width: 100%;
    justify-content: center;
    font-size: 0.92rem;
    padding: 0.55rem 0.85rem;
  }

  .feature-block__media--pair img {
    width: min(48%, 10.5rem);
  }

  .exam-subject {
    grid-template-columns: 4.2rem 1fr auto;
    font-size: 0.82rem;
  }

  .mosaic__grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .mosaic__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Guide / article pages */

.page--wide {
  width: min(100% - 2rem, var(--wide));
}

.page--article {
  width: min(100% - 2rem, 42rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.55rem;
  align-items: center;
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--on-surface-variant);
}

.breadcrumb a {
  color: var(--on-surface-variant);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.article-hero {
  margin-bottom: 2rem;
}

.article-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
}

.page--article article section {
  margin-top: 1.75rem;
}

.page--article article h2 {
  margin: 0 0 0.65rem;
  font-size: 1.3rem;
}

.page--article article p,
.page--article article ul,
.page--article article ol {
  margin: 0 0 0.9rem;
  color: var(--on-surface);
}

.page--article article ul,
.page--article article ol {
  padding-left: 1.25rem;
  color: var(--on-surface-variant);
}

.page--article article li {
  margin-bottom: 0.4rem;
}

.page--article article li strong {
  color: var(--on-surface);
}

.guide-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 2.5rem;
}

.guide-card {
  display: block;
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--outline-variant);
  text-decoration: none;
  color: inherit;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.guide-card:hover {
  background: var(--surface-container);
  border-color: var(--outline);
  transform: translateY(-2px);
  text-decoration: none;
}

.guide-card__kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.guide-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.2rem;
}

.guide-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.98rem;
}

.article-cta {
  margin: 2.5rem 0 0;
  padding: 1.4rem 1.45rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background:
    radial-gradient(500px 200px at 10% 0%, #d8e8df, transparent 55%),
    linear-gradient(145deg, #faf8f4, #eef3ef);
  border: 1px solid var(--outline-variant);
}

.article-cta h2 {
  margin: 0 0 0.45rem;
  font-size: 1.25rem;
}

.article-cta > p {
  margin: 0 0 1rem;
  color: var(--on-surface-variant);
}

.article-cta__links {
  margin: 1rem 0 0 !important;
  font-size: 0.92rem;
}

.related-guides {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--outline-variant);
}

.related-guides h2 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.related-guides ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.related-guides a {
  font-weight: 600;
  text-decoration: none;
}

.related-guides a:hover {
  text-decoration: underline;
}

/* Landing: guides strip + store badges */

.guides-band {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.guides-band__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
}

.guides-band__head {
  margin-bottom: 1.35rem;
  max-width: 36rem;
}

.guides-band__head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.guides-band__head p {
  margin: 0;
  color: var(--on-surface-variant);
}

.guides-band .guide-list {
  margin: 0;
  grid-template-columns: repeat(3, 1fr);
}

.guides-band__more {
  margin: 1.25rem 0 0;
}

.store-band {
  padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.store-band__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: calc(var(--radius) + 0.2rem);
  background: var(--surface-elevated);
  border: 1px solid var(--outline-variant);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.store-band__copy h2 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.store-band__copy p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
  max-width: 28rem;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
}

.store-qr {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 5.5rem;
  padding: 0.35rem 0.4rem 0.45rem;
  color: var(--on-surface-variant);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}

.store-qr img {
  display: block;
  width: 5.25rem;
  height: 5.25rem;
  padding: 0.28rem;
  background: #fff;
  border: 1px solid var(--outline-variant);
  border-radius: 0.45rem;
}

.store-qr:hover {
  color: var(--primary-deep);
  text-decoration: none;
}

.store-qr:hover img {
  border-color: var(--primary);
}

@media (hover: hover) and (pointer: fine) {
  .store-qr {
    display: flex;
  }
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 10.5rem;
  padding: 0.65rem 0.9rem;
  border-radius: 0.75rem;
  background: var(--on-surface);
  color: #f6f3ee;
  text-decoration: none;
  border: none;
  cursor: default;
  font-family: var(--font-body);
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

a.store-badge {
  cursor: pointer;
}

a.store-badge:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  text-decoration: none;
  color: #f6f3ee;
}

.store-badge--soon {
  opacity: 0.72;
}

.store-badge__mark {
  font-size: 1.35rem;
  line-height: 1;
  width: 1.5rem;
  text-align: center;
}

.store-badge__mark svg {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  margin-inline: auto;
}

.store-badge__meta {
  display: grid;
  gap: 0.05rem;
}

.store-badge__meta small {
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.75;
}

.store-badge__meta strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

@media (max-width: 900px) {
  .guides-band .guide-list {
    grid-template-columns: 1fr;
  }

  .store-band__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 800px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    display: none;
    order: 3;
    flex-basis: 100%;
    margin-left: 0;
    padding: 0.35rem 0 0.85rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .site-header.is-nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 0.7rem 0.85rem;
    border-radius: 0.7rem;
  }

  .nav a:hover,
  .nav a[aria-current="page"] {
    background: rgba(216, 232, 223, 0.55);
    text-decoration: none;
  }

  .nav__cta {
    text-align: center;
    margin-top: 0.25rem;
  }

  .header-tools {
    margin-left: auto;
  }

  body.nav-lock {
    overflow: hidden;
  }
}

/* Pricing */

.pricing {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.pricing__inner {
  width: min(100% - 2rem, var(--wide));
  margin: 0 auto;
}

.pricing__head {
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.pricing__head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.pricing__head p {
  margin: 0;
  color: var(--on-surface-variant);
}

.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  padding: 1.45rem 1.5rem 1.55rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--outline-variant);
}

.price-card--pro {
  background:
    radial-gradient(420px 180px at 10% 0%, #d8e8df, transparent 60%),
    #fff;
  border-color: rgba(61, 107, 90, 0.28);
  box-shadow: 0 16px 32px rgba(26, 61, 50, 0.08);
}

.price-card__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.price-card__kicker .pro-chip {
  margin-left: 0;
}

.price-card--pro .price-card__kicker {
  color: var(--on-surface);
}

.price-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.35rem;
}

.price-card__note {
  margin: 0 0 1rem;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

.price-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.price-card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.98rem;
  font-weight: 500;
}

.price-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.price-card__cta {
  margin: 1.15rem 0 0;
}

@media (max-width: 900px) {
  .pricing__grid {
    align-items: start;
    gap: 0.85rem;
  }

  .price-card {
    padding: 1.2rem 1.2rem 1.3rem;
  }
}

@media (max-width: 720px) {
  .pricing__head {
    margin-bottom: 1.15rem;
    max-width: none;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .price-card {
    padding: 1.05rem 1.1rem 1.15rem;
  }

  .price-card h3 {
    font-size: 1.22rem;
  }

  .price-card__note {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
  }

  .price-card__list {
    gap: 0.38rem;
  }

  .price-card__list li {
    font-size: 0.92rem;
    padding-left: 1.25rem;
  }

  .price-card__cta {
    margin-top: 0.9rem;
  }

  .price-card__cta .button {
    width: 100%;
  }
}

/* Download closer + sticky bar */

.poster-band .store-badges {
  margin-top: 1.25rem;
  position: relative;
  z-index: 1;
}

.download-bar {
  display: none;
}

@media (max-width: 800px) {
  .download-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 25;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--outline);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    box-shadow: 0 -10px 28px rgba(28, 31, 29, 0.08);
    transform: translateY(110%);
    transition: transform 220ms ease;
  }

  .download-bar.is-visible {
    transform: translateY(0);
  }

  .download-bar p {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--on-surface);
    max-width: 8.5rem;
    line-height: 1.3;
  }

  .download-bar .store-badges {
    gap: 0.45rem;
  }

  .download-bar .store-badge {
    min-width: 0;
    padding: 0.5rem 0.7rem;
  }

  .download-bar .store-badge__meta small {
    display: none;
  }

  body.has-download-bar {
    padding-bottom: 5.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-bar {
    transition: none;
  }
}

/* Mini tools */

button.exam-chip {
  font: inherit;
  cursor: pointer;
  appearance: none;
}

.exam-panel__tools,
.exam-band__tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.exam-panel__tools a,
.exam-band__tools a {
  color: var(--primary-deep);
}

.page--tool {
  width: min(100% - 2rem, 46rem);
}

.tool-hero {
  margin-bottom: 1.75rem;
}

.tool-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  letter-spacing: -0.03em;
}

.tool-list {
  display: grid;
  gap: 1rem;
  margin: 0 0 2.5rem;
}

.tool-card {
  display: grid;
  gap: 0.45rem;
  padding: 1.25rem 1.35rem;
  border-radius: calc(var(--radius) + 0.1rem);
  background: var(--surface);
  border: 1px solid var(--outline-variant);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
}

.tool-card:hover {
  border-color: var(--primary);
  text-decoration: none;
}

.tool-card h2 {
  margin: 0;
  font-size: 1.25rem;
}

.tool-card p {
  margin: 0;
  color: var(--on-surface-variant);
}

.tool-tabs,
.tool-tracks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}

.tool-tab,
.tool-track {
  font: inherit;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: 0.65rem;
  border: 1px solid var(--outline-variant);
  background: var(--surface-elevated);
  color: var(--on-surface-variant);
  cursor: pointer;
}

.tool-tab.is-active,
.tool-track.is-active {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-color: transparent;
}

label.tool-track {
  cursor: pointer;
}

label.tool-track input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

label.tool-track:has(input:checked) {
  background: var(--primary-container);
  color: var(--on-primary-container);
  border-color: transparent;
}

label.tool-track:has(input:focus-visible) {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.load-field {
  margin: 0 0 1.35rem;
  padding: 0;
  border: 0;
}

.load-field legend {
  padding: 0;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: var(--on-surface);
}

.load-field .tool-tabs {
  margin: 0;
}

.load-result__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.load-stats {
  display: grid;
  gap: 0.85rem;
  margin: 1.1rem 0 0;
}

@media (min-width: 560px) {
  .load-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.load-stats dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
}

.load-stats dd {
  margin: 0.2rem 0 0;
  font-weight: 600;
  color: var(--on-surface);
  font-variant-numeric: tabular-nums;
}

.load-faq {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--outline-variant);
}

.load-faq h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.load-faq h3 {
  margin: 1.25rem 0 0.35rem;
  font-size: 1rem;
}

.load-faq p {
  margin: 0;
  color: var(--on-surface-variant);
}

.countdown-clock {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1rem;
}

.countdown-unit {
  padding: 1rem 0.5rem 0.85rem;
  border-radius: 0.85rem;
  background: linear-gradient(135deg, #f9f7f2, #eef5f0);
  border: 1px solid var(--outline-variant);
  text-align: center;
}

.countdown-unit strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.countdown-unit span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.countdown-status {
  margin: 0 0 0.5rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.countdown-note {
  margin: 0.35rem 0 0;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
}

.net-row {
  display: grid;
  gap: 0.65rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--outline-variant);
}

.net-row:first-child {
  padding-top: 0;
}

.net-row__head {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: baseline;
}

.net-row__name {
  margin: 0;
  font-weight: 600;
}

.net-row__cap {
  margin: 0;
  font-size: 0.85rem;
  color: var(--on-surface-variant);
}

.net-row__fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.net-row__fields label {
  display: grid;
  gap: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--on-surface-variant);
}

.net-row__fields input {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border-radius: 0.65rem;
  border: 1px solid var(--outline);
  background: var(--surface);
  font: inherit;
  font-variant-numeric: tabular-nums;
}

.net-row__fields input:read-only {
  background: var(--surface-elevated);
  color: var(--on-surface-variant);
}

.net-row__net {
  margin: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--primary-deep);
  text-align: right;
}

.net-result {
  margin: 1.35rem 0 0;
  padding: 1.15rem 1.2rem;
  border-radius: 0.95rem;
  background: linear-gradient(135deg, #f9f7f2, #eef5f0);
  border: 1px solid var(--outline-variant);
}

.net-result__total {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--primary-deep);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.net-result__total small {
  display: block;
  margin-top: 0.35rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--on-surface-variant);
  letter-spacing: 0;
}

.net-result p {
  margin: 0.65rem 0 0;
  color: var(--on-surface-variant);
  font-size: 0.95rem;
}

.tool-cta {
  margin: 2.25rem 0 0;
}

.tool-cta ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--on-surface-variant);
}

@media (max-width: 640px) {
  .countdown-clock {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Who-for, class pulse, join code */

.who-for {
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 0.5rem;
}

.who-for__inner {
  width: min(100% - 2rem, var(--wide));
  margin-inline: auto;
}

.who-for__head {
  max-width: 36rem;
  margin-bottom: 1.35rem;
}

.who-for__head h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.who-for__head p {
  margin: 0;
  color: var(--on-surface-variant);
}

.who-for__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.who-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.3rem 1.05rem 1.45rem;
  background-color: var(--surface-container);
  background-image:
    linear-gradient(90deg, transparent 0.82rem, #d9b4b0 0.82rem, #d9b4b0 calc(0.82rem + 1px), transparent calc(0.82rem + 1px)),
    repeating-linear-gradient(
      transparent,
      transparent 27px,
      rgba(61, 107, 90, 0.08) 27px,
      rgba(61, 107, 90, 0.08) 28px
    );
  border: 1px solid var(--outline-variant);
  border-radius: calc(var(--radius) + 0.1rem);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.who-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
  border-color: rgba(61, 107, 90, 0.35);
  box-shadow: 0 14px 28px rgba(28, 31, 29, 0.08);
}

.who-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.who-card__kicker {
  margin: 0;
  padding-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
}

.who-card__figure {
  width: 4.65rem;
  height: 4.65rem;
  margin: -0.35rem -0.25rem 0 0;
  flex-shrink: 0;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 6px 10px rgba(26, 61, 50, 0.08));
  transition: transform 180ms ease;
}

.who-card:hover .who-card__figure,
.who-card:focus-visible .who-card__figure {
  transform: translateY(-2px) rotate(-3deg);
}

.who-card h3 {
  margin: 0;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.who-card p {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.98rem;
}

.who-card__more {
  margin-top: auto;
  padding-top: 0.45rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.who-stamp {
  display: block;
  width: min(100%, 13.5rem);
  height: 4.15rem;
  margin-top: 0.55rem;
  pointer-events: none;
  overflow: visible;
  transition: transform 160ms ease;
}

.who-stamp-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.35rem;
  width: 100%;
  margin-top: 0.55rem;
  transition: transform 160ms ease;
}

.who-stamp-row .who-stamp {
  margin-top: 0;
}

.who-stamp--log {
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  max-width: none;
  height: 3.6rem;
}

.who-stamp--pencil {
  flex: 0 0 1.85rem;
  width: 1.85rem;
  height: 3.85rem;
  overflow: visible;
}

.who-stamp .sketch-mark path {
  stroke-dashoffset: 18;
  animation: none;
  transition: stroke-dashoffset 420ms ease;
}

.who-stamp__rule {
  stroke: var(--sage);
  stroke-width: 1.2;
  opacity: 0.55;
}

.who-stamp__ink {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  fill: #1a3d32;
}

.who-stamp__ink--code {
  font-size: 18px;
  letter-spacing: 0.14em;
  font-variant-numeric: tabular-nums;
}

.who-stamp__pencil rect:first-child {
  fill: #f3e2b8;
  stroke: var(--primary-deep);
  stroke-width: 1.1;
}

.who-stamp__pencil-band {
  fill: var(--primary);
  stroke: var(--primary-deep);
  stroke-width: 1.1;
}

.who-stamp__pencil path {
  fill: #e8d5b0;
  stroke: var(--primary-deep);
  stroke-width: 1.1;
  stroke-linejoin: round;
}

.who-stamp__lead {
  fill: var(--primary-deep);
  stroke: none;
}

.who-stamp__clip path {
  fill: none;
  stroke: #8a8378;
  stroke-width: 1.5;
  stroke-linecap: round;
}

@media (hover: hover) and (pointer: fine) {
  .who-card:hover .who-stamp,
  .who-card:focus-visible .who-stamp,
  .who-card:hover .who-stamp-row,
  .who-card:focus-visible .who-stamp-row {
    transform: translateY(-1px);
  }

  .who-card:hover .who-stamp .sketch-mark path,
  .who-card:focus-visible .who-stamp .sketch-mark path {
    stroke-dashoffset: 0;
  }

  .who-card:hover .who-stamp__seen path,
  .who-card:focus-visible .who-stamp__seen path {
    transition-delay: 180ms;
  }
}

@media (hover: none) {
  .who-stamp .sketch-mark path {
    stroke-dashoffset: 0;
  }
}

.free-chip {
  display: inline-flex;
  align-items: center;
  margin-left: 0.4rem;
  padding: 0.08rem 0.45rem;
  border-radius: 999px;
  background: var(--primary-container);
  color: var(--on-primary-container);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.pulse-panel {
  width: min(100%, 26rem);
  background: var(--surface-container);
  border: 1px solid var(--outline-variant);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.2rem 1.3rem 1.25rem;
  box-shadow: var(--shadow-soft);
}

.pulse-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.pulse-panel__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
}

.pulse-panel__count {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary-deep);
}

.pulse-panel__bar {
  height: 0.45rem;
  border-radius: 999px;
  background: var(--outline-variant);
  overflow: hidden;
  margin-bottom: 1rem;
}

.pulse-panel__fill {
  display: block;
  height: 100%;
  width: 66.6%;
  background: var(--primary);
  border-radius: inherit;
}

.pulse-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 0.55rem 0.75rem;
  align-items: center;
  padding: 0.55rem 0.35rem;
  border-top: 1px solid var(--outline-variant);
  font-size: 0.92rem;
}

.pulse-row:hover {
  background: rgba(216, 232, 223, 0.35);
  border-radius: 0.45rem;
}

.pulse-row__name {
  font-weight: 600;
  color: var(--on-surface);
}

.pulse-row__meta {
  color: var(--on-surface-variant);
  font-size: 0.85rem;
}

.pulse-row__status {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--primary-deep);
}

.pulse-row--quiet .pulse-row__status {
  color: var(--streak);
}

.pulse-row--alert .pulse-row__status {
  color: var(--error);
}

.pulse-nudge {
  appearance: none;
  border: 1px solid var(--outline);
  background: #fff;
  color: var(--primary-deep);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 0.55rem;
  cursor: default;
}

.pulse-row--alert .pulse-nudge {
  animation: nudge-pulse 2.4s ease-in-out infinite;
}

@keyframes nudge-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(196, 163, 90, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(196, 163, 90, 0.22);
  }
}

.hero-visual .pulse-panel {
  animation: rise 800ms ease both;
}

.photo-coach-steps__kicker {
  margin: 1.25rem 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.photo-coach-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.photo-coach-steps li {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  font-weight: 500;
  line-height: 1.45;
}

.photo-coach-steps strong {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  flex: none;
  border-radius: 50%;
  background: var(--primary-container);
  color: var(--on-primary-container);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
}

.photo-coach-steps li > span {
  padding-top: 0.18rem;
  min-width: 0;
}

.persona-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin: 2rem 0 0;
}

.persona-page .exam-band {
  background: transparent;
  padding: 2rem 0 0;
}

.persona-page .exam-band__inner,
.persona-page .feature-block {
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.join-code {
  display: grid;
  gap: 0.35rem;
  justify-items: center;
  margin: 1.5rem 0 1.75rem;
  padding: 1.25rem 1rem;
  background: var(--surface-container);
  border: 1px dashed var(--outline);
  border-radius: var(--radius);
}

.join-code__label {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
}

.join-code__value {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--primary-deep);
  font-variant-numeric: tabular-nums;
}

.join-code__hint {
  margin: 0;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
  text-align: center;
}

.join-code [data-join-copy] {
  margin-top: 0.5rem;
  font: inherit;
  font-weight: 600;
  color: var(--primary-deep);
  background: transparent;
  border: 1px solid var(--outline);
  border-radius: var(--radius);
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.join-steps {
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.join-steps li {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.join-steps strong {
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 0.82rem;
}

@media (prefers-reduced-motion: reduce) {
  .pulse-row--alert .pulse-nudge {
    animation: none;
  }
}

.hero-copy h1:focus {
  outline: none;
}

.hero-copy h1:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}

/* Open notebook spread */

.hero-stage {
  padding-top: 1.25rem;
}

.hero-stage__glow {
  opacity: 0.28;
}

.notebook {
  position: relative;
  background: #fbf8f2;
  border: 1px solid var(--outline);
  border-radius: 0.35rem 1rem 1rem 0.35rem;
  box-shadow: var(--shadow-soft);
  overflow: visible;
}


.notebook__spread {
  display: grid;
  grid-template-columns: 1.08fr 12px 0.92fr;
  align-items: stretch;
  min-height: min(72vh, 40rem);
}

.notebook__gutter {
  background:
    linear-gradient(90deg, rgba(28, 31, 29, 0.08), transparent 40%, rgba(28, 31, 29, 0.05)),
    repeating-linear-gradient(
      180deg,
      transparent 0 10px,
      rgba(61, 107, 90, 0.12) 10px,
      rgba(61, 107, 90, 0.12) 11px
    );
}

.notebook__page {
  position: relative;
  min-width: 0;
}

.notebook__page--left {
  display: flex;
  flex-direction: column;
  padding: 1.35rem 1.5rem 1.35rem 2.35rem;
  background-image:
    linear-gradient(90deg, transparent 1.65rem, #d9b4b0 1.65rem, #d9b4b0 calc(1.65rem + 1px), transparent calc(1.65rem + 1px)),
    repeating-linear-gradient(
      transparent,
      transparent 31px,
      rgba(61, 107, 90, 0.11) 31px,
      rgba(61, 107, 90, 0.11) 32px
    );
  background-position: 0 2.6rem;
}

.notebook__folio {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage);
  text-transform: capitalize;
}

.notebook__page-no {
  font-variant-numeric: tabular-nums;
  color: var(--on-surface-variant);
}

.notebook .brand-lockup {
  display: none;
}

.notebook .hero-copy h1 {
  animation: none;
  margin-bottom: 0.35rem;
  line-height: 1.15;
}

.notebook .hero-lead {
  animation: none;
  max-width: none;
  margin-top: 0.85rem;
}

.notebook .hero-copy .store-badges,
.notebook .hero-roles {
  animation: none;
}

.notebook__page--right {
  display: grid;
  place-items: center;
  padding: 1.5rem 1.25rem 1.75rem;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(216, 232, 223, 0.7), transparent 55%),
    #fbf8f2;
}

.notebook .hero-visual {
  min-height: 0;
  width: 100%;
}

.ink-line {
  margin: 0.15rem 0 0.4rem;
  max-width: 28rem;
}

.ink-line__prompt {
  display: block;
  margin: 0 0 0.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sage);
}

.ink-line__row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 32px;
}

.ink-line__row input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--on-surface);
  padding: 0.15rem 0;
  outline: none;
}

.ink-line__row input::placeholder {
  color: #9aa59e;
  font-weight: 500;
}

.ink-line__row button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0.2rem 0.1rem;
  white-space: nowrap;
}

.ink-line__row button:hover,
.ink-line__row button:focus-visible {
  color: var(--primary-deep);
}

.ink-line__echo {
  margin: 0.2rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-deep);
}

.ink-line.is-inked input {
  font-style: italic;
  color: #1a3d32;
}

.hero-sketch {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 8.5rem;
  margin-top: 0.35rem;
}

.notebook .hero-note {
  margin: 0 0 0.15rem;
  animation: none;
}

.hero-sketch__fill {
  position: relative;
  flex: 1;
  min-height: 7.25rem;
}

.hero-sketch__log {
  list-style: none;
  margin: 0;
  padding: 0 0 0.2rem;
  display: grid;
  position: relative;
  z-index: 1;
  max-width: 72%;
}

.hero-sketch__log li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  height: 32px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  color: #1a3d32;
  opacity: 0;
  animation: sketch-ink 560ms ease forwards;
}

.hero-sketch__log li:nth-child(1) {
  animation-delay: 280ms;
}

.hero-sketch__log li:nth-child(2) {
  animation-delay: 780ms;
}

.hero-sketch__log li:nth-child(3) {
  animation-delay: 1280ms;
}

.hero-sketch__next {
  font-style: normal;
  color: var(--sage);
}

.sketch-mark {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
}

.sketch-mark circle {
  fill: transparent;
  stroke: var(--primary);
  stroke-width: 1.35;
}

.sketch-mark path {
  fill: none;
  stroke: var(--primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 18;
  stroke-dashoffset: 18;
}

.hero-sketch__mark path {
  animation: sketch-check 420ms ease forwards;
}

.hero-sketch__log li:nth-child(1) .hero-sketch__mark path {
  animation-delay: 520ms;
}

.hero-sketch__log li:nth-child(2) .hero-sketch__mark path {
  animation-delay: 1020ms;
}

.hero-sketch__open {
  width: 1.15rem;
  height: 1.15rem;
  flex: 0 0 auto;
  border: 1.35px solid var(--sage);
  border-radius: 50%;
  opacity: 0.7;
}

.hero-sketch__caret {
  width: 1.5px;
  height: 1em;
  background: var(--primary);
  animation: sketch-caret 1.05s steps(1) infinite;
}

.hero-sketch__ghost {
  font-style: normal;
}

.hero-sketch__ghost svg {
  width: min(100%, 16rem);
  height: 14px;
}

.hero-sketch__ghost path {
  stroke: var(--sage);
  stroke-width: 1.35;
  stroke-linecap: round;
  opacity: 0.45;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  animation: sketch-scribble-line 1.1s ease 1.7s forwards;
}

.hero-sketch__log li:nth-child(4) {
  animation-delay: 1680ms;
}

.hero-sketch__ornament {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  max-width: 48%;
  pointer-events: none;
  overflow: visible;
}

.hero-sketch__stain {
  fill: none;
  stroke: var(--streak);
  stroke-width: 3.2;
  opacity: 0.28;
}

.hero-sketch__stain--inner {
  stroke-width: 1.3;
  opacity: 0.2;
}

.hero-sketch__leaf path {
  fill: #d8e8df;
  stroke: var(--primary);
  stroke-width: 1.15;
  stroke-linejoin: round;
}

.hero-sketch__leaf path + path {
  fill: none;
}

.hero-sketch__clip path {
  fill: none;
  stroke: #8a8378;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.hero-sketch__pencil {
  transform-box: fill-box;
  transform-origin: 50% 100%;
  animation: sketch-scribble 2.8s ease-in-out 1.4s infinite;
}

.hero-sketch__pencil rect,
.hero-sketch__pencil path {
  stroke: var(--primary-deep);
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.hero-sketch__pencil rect:first-child {
  fill: #f3e2b8;
}

.hero-sketch__pencil > path:first-of-type {
  fill: #e8d5b0;
}

.hero-sketch__pencil-band {
  fill: var(--primary);
}

.hero-sketch__pencil-wood {
  fill: #e8d5b0;
}

.hero-sketch__pencil-lead {
  fill: var(--primary-deep);
  stroke: none;
}

.hero-sketch__pencil-grain {
  fill: none;
  stroke: var(--streak);
  stroke-width: 2.2;
  opacity: 0.55;
}

.hero-sketch__scribble {
  stroke: var(--primary);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-dasharray: 64;
  stroke-dashoffset: 64;
  animation: sketch-scribble-line 900ms ease 1.6s forwards;
}

@keyframes sketch-ink {
  from {
    opacity: 0;
    transform: translateX(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes sketch-check {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes sketch-caret {
  50% {
    opacity: 0;
  }
}

@keyframes sketch-scribble {
  0%,
  100% {
    transform: rotate(-26deg) translate(0, 0);
  }
  50% {
    transform: rotate(-22deg) translate(3px, 2px);
  }
}

@keyframes sketch-scribble-line {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 900px) {
  .notebook__spread {
    grid-template-columns: 1fr;
  }

  .notebook__gutter {
    display: none;
  }

  .notebook__page--left {
    padding: 1.1rem 1.1rem 1.5rem 1.7rem;
  }

  .notebook__page--right {
    padding: 0 1rem 1.5rem;
  }

  .who-for__grid {
    grid-template-columns: 1fr;
  }

  .persona-links {
    grid-template-columns: 1fr;
  }

  .who-for {
    padding-top: 2rem;
  }

  .hero-sketch {
    flex: 0 0 auto;
    min-height: 0;
  }

  .hero-sketch__fill {
    min-height: 0;
  }

  .hero-sketch__log {
    max-width: none;
  }

  .hero-sketch__ornament,
  .hero-sketch__ghost {
    display: none;
  }

  .who-stamp {
    height: 3.6rem;
    width: min(100%, 12.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .who-card:hover .who-card__figure,
  .who-card:focus-visible .who-card__figure {
    transform: none;
  }

  .hero-copy h1 {
    transition: none;
    animation: none;
  }

  .hero-sketch__log li,
  .hero-sketch__mark path,
  .hero-sketch__pencil,
  .hero-sketch__scribble,
  .hero-sketch__caret {
    animation: none;
  }

  .hero-sketch__log li {
    opacity: 1;
    transform: none;
  }

  .hero-sketch__mark path,
  .hero-sketch__ghost path,
  .hero-sketch__scribble,
  .strip .sketch-mark path,
  .who-stamp .sketch-mark path {
    stroke-dashoffset: 0;
    animation: none;
    transition: none;
  }

  .who-stamp {
    transform: none;
  }
}

.article-figure {
  margin: 1.5rem 0 1.75rem;
}

.article-figure img {
  display: block;
  width: min(100%, 280px);
  height: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--outline-variant);
  box-shadow: 0 18px 40px -24px rgb(20 40 28 / 45%);
  background: #f3eee6;
}

.article-figure figcaption {
  margin-top: 0.55rem;
  max-width: 36rem;
  color: var(--on-surface-variant);
  font-size: 0.92rem;
}

.article-body {
  max-width: 42rem;
}

.article-body h2 {
  margin: 1.8rem 0 0.65rem;
  font-size: 1.35rem;
}

.article-body p,
.article-body li {
  color: var(--on-surface-variant);
}

.article-body a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.blog-audience {
  margin-top: 2.5rem;
}

.blog-audience h2 {
  margin: 0 0 0.85rem;
  font-size: 1.2rem;
}

.faq--article {
  margin: 2rem 0 0;
  padding: 0;
}

.faq--article .faq__list {
  display: grid;
  gap: 1rem;
}

.faq--article .faq__item h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.guides-band__more {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

