:root {
  --al-cream: #fff8ed;
  --al-paper: #fffdf8;
  --al-peach: #fde2d5;
  --al-coral: #e7765c;
  --al-coral-hover: #d9654e;
  --al-sky: #dceff5;
  --al-sky-strong: #83c5d8;
  --al-sun: #f4d678;
  --al-sage: #bfdcc8;
  --al-ink: #416478;
  --al-ink-soft: #6f8794;
  --al-line: #d6e1df;
  --al-white: #ffffff;
  --al-display: "Zen Maru Gothic", sans-serif;
  --al-body: "IBM Plex Sans JP", sans-serif;
  --al-serif: "Shippori Mincho B1", serif;
  --al-shadow: 0 24px 64px rgba(88, 130, 148, 0.13);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body.ai-launch-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--al-ink);
  background: var(--al-cream);
  font-family: var(--al-body);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.ai-launch-page a {
  color: inherit;
}

.al-skip {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--al-white);
  background: var(--al-coral);
  transform: translateY(-160%);
}

.al-skip:focus {
  transform: none;
}

.al-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.al-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 248, 237, 0.9);
  border-bottom: 1px solid rgba(112, 150, 161, 0.18);
  backdrop-filter: blur(16px);
}

.al-header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.al-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.al-brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--al-white);
  background: var(--al-coral);
  border-radius: 50% 44% 50% 46%;
  font-family: var(--al-display);
  font-weight: 700;
  transform: rotate(-4deg);
}

.al-brand-copy {
  display: grid;
  font-family: var(--al-display);
  line-height: 1.1;
}

.al-brand-copy strong {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
}

.al-brand-copy small {
  margin-top: 5px;
  color: var(--al-ink-soft);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
}

.al-nav {
  display: flex;
  align-items: center;
  gap: 23px;
}

.al-nav a {
  color: var(--al-ink-soft);
  font-size: 0.77rem;
  font-weight: 600;
  text-decoration: none;
}

.al-nav a:hover,
.al-nav a:focus-visible {
  color: var(--al-coral);
}

.al-nav .al-nav-buy {
  padding: 10px 17px;
  color: var(--al-white);
  background: var(--al-coral);
  border-radius: 999px;
}

.al-nav .al-nav-buy:hover,
.al-nav .al-nav-buy:focus-visible {
  color: var(--al-white);
  background: var(--al-coral-hover);
}

.al-menu {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  color: var(--al-ink);
  background: var(--al-paper);
  border: 1px solid var(--al-line);
  border-radius: 50%;
  font: inherit;
}

.al-menu span,
.al-menu span::before,
.al-menu span::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 99px;
}

.al-menu span {
  position: relative;
}

.al-menu span::before,
.al-menu span::after {
  content: "";
  position: absolute;
  left: 0;
}

.al-menu span::before { top: -6px; }
.al-menu span::after { top: 6px; }

.al-hero {
  position: relative;
  padding: clamp(76px, 10vw, 136px) 0 118px;
  overflow: hidden;
}

.al-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 7% 18%, rgba(244, 214, 120, 0.55) 0 5%, transparent 5.2%),
    radial-gradient(circle at 92% 8%, rgba(131, 197, 216, 0.34) 0 13%, transparent 13.2%),
    linear-gradient(115deg, transparent 0 68%, rgba(255, 255, 255, 0.38) 68% 68.4%, transparent 68.4%);
  pointer-events: none;
}

.al-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(56px, 8vw, 110px);
  align-items: center;
}

.al-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  color: var(--al-coral);
  background: var(--al-paper);
  border: 1px solid #f0c9bb;
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.al-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--al-sun);
  border-radius: 50%;
}

.al-hero h1 {
  max-width: 700px;
  margin: 28px 0 25px;
  font-family: var(--al-display);
  font-size: clamp(2.8rem, 5.9vw, 5.55rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.055em;
}

.al-hero h1 em {
  position: relative;
  color: var(--al-coral);
  font-style: normal;
  white-space: nowrap;
}

.al-hero h1 em::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  bottom: 0.04em;
  height: 0.15em;
  z-index: -1;
  background: rgba(244, 214, 120, 0.58);
  border-radius: 50%;
}

.al-hero-lead {
  max-width: 640px;
  margin: 0;
  color: var(--al-ink-soft);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.al-hero-lead strong {
  color: var(--al-ink);
}

.al-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.al-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 13px 22px;
  border: 1px solid var(--al-coral);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.al-button::after {
  content: "→";
}

.al-button:hover,
.al-button:focus-visible {
  transform: translateY(-2px);
}

.ai-launch-page .al-button-primary {
  color: var(--al-white);
  background: var(--al-coral);
  box-shadow: 7px 7px 0 var(--al-sun);
}

.ai-launch-page .al-button-primary:hover,
.ai-launch-page .al-button-primary:focus-visible {
  background: var(--al-coral-hover);
  box-shadow: 4px 4px 0 var(--al-sun);
}

.al-button-quiet {
  color: var(--al-coral);
  background: rgba(255, 255, 255, 0.5);
}

.al-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin-top: 25px;
  color: var(--al-ink-soft);
  font-size: 0.72rem;
}

.al-hero-notes span::before {
  content: "✓";
  margin-right: 6px;
  color: var(--al-coral);
  font-weight: 700;
}

.al-week {
  position: relative;
  min-height: 540px;
}

.al-week::before {
  content: "7";
  position: absolute;
  right: -22px;
  top: -102px;
  color: rgba(131, 197, 216, 0.2);
  font-family: var(--al-display);
  font-size: 24rem;
  font-weight: 700;
  line-height: 1;
}

.al-week-board {
  position: relative;
  width: min(480px, 100%);
  margin: 0 auto;
  padding: 26px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(114, 157, 169, 0.22);
  box-shadow: var(--al-shadow);
  transform: rotate(1deg);
}

.al-week-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 4px 20px;
  border-bottom: 1px solid var(--al-line);
}

.al-week-head strong {
  font-family: var(--al-display);
  font-size: 1.05rem;
}

.al-week-head span {
  color: var(--al-ink-soft);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.al-day-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding-top: 17px;
}

.al-day {
  position: relative;
  min-height: 98px;
  padding: 14px 15px;
  background: var(--tone, var(--al-sky));
  border: 1px solid rgba(89, 130, 143, 0.12);
}

.al-day:nth-child(2n) {
  transform: translateY(6px) rotate(0.8deg);
}

.al-day:nth-child(3n) {
  transform: rotate(-0.8deg);
}

.al-day b {
  display: block;
  margin-bottom: 12px;
  color: var(--al-coral);
  font-family: var(--al-display);
  font-size: 0.73rem;
  letter-spacing: 0.08em;
}

.al-day span {
  font-family: var(--al-display);
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.45;
}

.al-day:last-child {
  grid-column: 1 / -1;
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 22px;
  transform: rotate(-0.4deg);
}

.al-day:last-child b {
  margin: 0;
}

.al-week-tape {
  position: absolute;
  width: 116px;
  height: 29px;
  top: -10px;
  left: 50%;
  background: rgba(244, 214, 120, 0.68);
  transform: translateX(-50%) rotate(-3deg);
}

.al-section {
  position: relative;
  padding: clamp(84px, 10vw, 136px) 0;
}

.al-section-paper {
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(116, 156, 166, 0.08) 39px 40px),
    var(--al-paper);
}

.al-section-sky {
  background: var(--al-sky);
}

.al-section-peach {
  background: var(--al-peach);
}

.al-section-head {
  max-width: 800px;
  margin-bottom: 54px;
}

.al-section-label {
  display: inline-block;
  margin-bottom: 15px;
  color: var(--al-coral);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.al-section h2 {
  margin: 0;
  font-family: var(--al-display);
  font-size: clamp(2.1rem, 4.5vw, 3.85rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.045em;
}

.al-section-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--al-ink-soft);
}

.al-origin {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.al-origin-badge {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--al-white);
  background: var(--al-coral);
  border-radius: 47% 53% 44% 56% / 48% 45% 55% 52%;
  font-family: var(--al-display);
  font-size: 3.6rem;
  font-weight: 700;
  box-shadow: 13px 12px 0 var(--al-sun);
}

.al-origin-copy {
  max-width: 760px;
}

.al-origin-copy h2 {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
}

.al-origin-copy p {
  color: var(--al-ink-soft);
}

.al-origin-sign {
  margin-top: 20px;
  color: var(--al-coral);
  font-family: var(--al-serif);
  font-size: 0.9rem;
}

.al-stuck-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.al-stuck-card {
  min-height: 190px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(105, 149, 161, 0.22);
}

.al-stuck-card span {
  color: var(--al-coral);
  font-family: var(--al-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.al-stuck-card h3 {
  margin: 30px 0 8px;
  font-family: var(--al-display);
  font-size: 1.2rem;
  line-height: 1.5;
}

.al-stuck-card p {
  margin: 0;
  color: var(--al-ink-soft);
  font-size: 0.86rem;
}

.al-roadmap {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-top: 1px solid #c8d9db;
  border-bottom: 1px solid #c8d9db;
}

.al-roadmap-day {
  min-height: 325px;
  padding: 22px 16px;
  border-left: 1px solid #c8d9db;
}

.al-roadmap-day:last-child {
  border-right: 1px solid #c8d9db;
}

.al-roadmap-day:nth-child(2n) {
  background: rgba(255, 255, 255, 0.34);
}

.al-roadmap-day b {
  display: block;
  color: var(--al-coral);
  font-family: var(--al-display);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.al-roadmap-day strong {
  display: block;
  margin: 45px 0 16px;
  font-family: var(--al-display);
  font-size: 1.02rem;
  line-height: 1.45;
  writing-mode: vertical-rl;
}

.al-roadmap-day p {
  margin: 0;
  color: var(--al-ink-soft);
  font-size: 0.72rem;
  line-height: 1.65;
}

.al-roadmap-note {
  margin: 22px 0 0;
  color: var(--al-ink-soft);
  font-size: 0.77rem;
}

.al-kit {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.al-kit-card {
  grid-column: span 6;
  min-height: 230px;
  padding: 30px;
  background: var(--al-paper);
  border: 1px solid #efcabb;
  box-shadow: 0 14px 36px rgba(145, 111, 91, 0.07);
}

.al-kit-card:last-child {
  grid-column: span 12;
}

.al-kit-no {
  color: var(--al-coral);
  font-family: var(--al-display);
  font-size: 0.75rem;
  font-weight: 700;
}

.al-kit-card h3 {
  margin: 36px 0 10px;
  font-family: var(--al-display);
  font-size: 1.28rem;
  line-height: 1.5;
}

.al-kit-card p {
  margin: 0;
  color: var(--al-ink-soft);
  font-size: 0.86rem;
}

.al-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.al-fit-card {
  padding: 36px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #bed8df;
}

.al-fit-card:last-child {
  background: rgba(255, 248, 237, 0.54);
}

.al-fit-card h3 {
  margin: 0 0 22px;
  font-family: var(--al-display);
  font-size: 1.35rem;
}

.al-fit-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.al-fit-list li {
  position: relative;
  padding-left: 26px;
  color: var(--al-ink-soft);
  font-size: 0.9rem;
}

.al-fit-list li::before {
  content: "○";
  position: absolute;
  left: 0;
  color: var(--al-coral);
  font-weight: 700;
}

.al-fit-card:last-child li::before {
  content: "△";
  color: var(--al-sky-strong);
}

.al-sample {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(34px, 6vw, 64px);
  background:
    linear-gradient(90deg, transparent 0 43px, rgba(231, 118, 92, 0.18) 43px 44px, transparent 44px),
    repeating-linear-gradient(0deg, transparent 0 35px, rgba(101, 147, 159, 0.11) 35px 36px),
    var(--al-paper);
  border: 1px solid var(--al-line);
  box-shadow: var(--al-shadow);
  transform: rotate(-0.5deg);
}

.al-sample::before {
  content: "SAMPLE";
  position: absolute;
  top: 23px;
  right: 25px;
  color: var(--al-coral);
  font-family: var(--al-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.al-sample h3 {
  margin: 0 0 30px;
  font-family: var(--al-display);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.al-sample-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 30px;
}

.al-sample-field {
  padding: 11px 14px;
  color: var(--al-ink-soft);
  background: rgba(220, 239, 245, 0.56);
  font-size: 0.78rem;
}

.al-sample blockquote {
  margin: 0;
  color: var(--al-ink);
  font-family: var(--al-serif);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 2;
}

.al-price-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(400px, 1.14fr);
  gap: 40px;
  align-items: center;
}

.al-price-copy p {
  color: var(--al-ink-soft);
}

.al-price-card {
  position: relative;
  padding: clamp(36px, 6vw, 64px);
  background: var(--al-paper);
  border: 1px solid #efbdaa;
  box-shadow: 14px 14px 0 var(--al-sun);
}

.al-price-card::before {
  content: "ONE-TIME PURCHASE";
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 13px;
  color: var(--al-white);
  background: var(--al-coral);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.al-price-name {
  font-family: var(--al-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.al-price-value {
  margin: 24px 0 7px;
  color: var(--al-coral);
  font-family: var(--al-display);
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.al-price-value small {
  margin-left: 8px;
  color: var(--al-ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0;
}

.al-price-meta {
  margin: 0 0 28px;
  color: var(--al-ink-soft);
  font-size: 0.8rem;
}

.al-price-card .al-button {
  width: 100%;
}

.al-price-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-top: 23px;
  color: var(--al-ink-soft);
  font-size: 0.7rem;
}

.al-price-notes span::before {
  content: "✓";
  margin-right: 5px;
  color: var(--al-coral);
}

.al-refund {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.al-refund-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid #edcabc;
}

.al-refund-card b {
  display: inline-block;
  margin-bottom: 17px;
  padding: 4px 9px;
  color: var(--al-coral);
  background: var(--al-paper);
  border: 1px solid #edcabc;
  border-radius: 999px;
  font-size: 0.7rem;
}

.al-refund-card h3 {
  margin: 0 0 12px;
  font-family: var(--al-display);
  font-size: 1.28rem;
}

.al-refund-card p {
  margin: 0;
  color: var(--al-ink-soft);
  font-size: 0.86rem;
}

.al-faq {
  max-width: 900px;
}

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

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

.al-faq summary {
  position: relative;
  padding: 24px 54px 24px 0;
  cursor: pointer;
  font-family: var(--al-display);
  font-size: 1rem;
  font-weight: 700;
  list-style: none;
}

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

.al-faq summary::after {
  content: "＋";
  position: absolute;
  top: 21px;
  right: 5px;
  color: var(--al-coral);
  font-family: var(--al-body);
  font-size: 1.2rem;
}

.al-faq details[open] summary::after {
  content: "−";
}

.al-faq-answer {
  padding: 0 60px 26px 0;
  color: var(--al-ink-soft);
  font-size: 0.88rem;
}

.al-faq-answer a {
  color: var(--al-coral);
  font-weight: 700;
}

.al-creator {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 42px;
  align-items: start;
}

.al-creator-mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--al-coral);
  background: var(--al-paper);
  border: 2px solid var(--al-coral);
  border-radius: 50%;
  font-family: var(--al-display);
  font-size: 3.4rem;
  font-weight: 700;
}

.al-creator-copy h2 {
  font-size: 1.8rem;
}

.al-creator-copy p {
  max-width: 720px;
  color: var(--al-ink-soft);
}

.al-footer {
  padding: 58px 0 28px;
  color: var(--al-ink-soft);
  background: #dcecf0;
}

.al-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
  padding-bottom: 40px;
}

.al-footer-brand {
  font-family: var(--al-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.al-footer-brand p {
  max-width: 400px;
  margin: 14px 0 0;
  font-size: 0.78rem;
}

.al-footer-col h3 {
  margin: 0 0 15px;
  color: var(--al-ink);
  font-family: var(--al-display);
  font-size: 0.8rem;
}

.al-footer-col a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  font-size: 0.75rem;
  text-decoration: none;
}

.al-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(88, 130, 148, 0.2);
  font-size: 0.66rem;
}

.al-sticky-buy {
  position: fixed;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 13px 17px;
  color: var(--al-white);
  background: var(--al-coral);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: 0 15px 35px rgba(150, 89, 70, 0.26);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(120px);
  transition: transform 260ms ease;
}

.al-sticky-buy.is-visible {
  transform: none;
}

.al-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.al-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1000px) {
  .al-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    background: var(--al-paper);
    border: 1px solid var(--al-line);
    box-shadow: var(--al-shadow);
  }

  .al-nav.is-open {
    display: flex;
  }

  .al-nav a {
    padding: 12px;
  }

  .al-menu {
    display: grid;
  }

  .al-hero-grid {
    grid-template-columns: 1fr;
  }

  .al-week {
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .al-roadmap {
    grid-template-columns: repeat(4, 1fr);
  }

  .al-roadmap-day:nth-child(4) {
    border-right: 1px solid #c8d9db;
  }

  .al-roadmap-day:nth-child(n + 5) {
    border-top: 1px solid #c8d9db;
  }
}

@media (max-width: 740px) {
  .al-container {
    width: min(100% - 32px, 1180px);
  }

  .al-header-inner {
    min-height: 64px;
  }

  .al-brand-copy small {
    display: none;
  }

  .al-hero {
    padding: 68px 0 84px;
  }

  .al-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.8rem);
  }

  .al-hero h1 em {
    white-space: normal;
  }

  .al-actions {
    flex-direction: column;
  }

  .al-button {
    width: 100%;
  }

  .al-week {
    min-height: 490px;
  }

  .al-week-board {
    padding: 18px;
  }

  .al-day {
    min-height: 88px;
    padding: 11px;
  }

  .al-day span {
    font-size: 0.78rem;
  }

  .al-section {
    padding: 78px 0;
  }

  .al-origin,
  .al-creator {
    grid-template-columns: 1fr;
  }

  .al-origin-badge,
  .al-creator-mark {
    width: 110px;
  }

  .al-stuck-grid,
  .al-fit,
  .al-price-layout,
  .al-refund {
    grid-template-columns: 1fr;
  }

  .al-stuck-card {
    min-height: 0;
    padding: 26px;
  }

  .al-roadmap {
    display: grid;
    grid-template-columns: 1fr;
    border: 0;
  }

  .al-roadmap-day,
  .al-roadmap-day:last-child {
    min-height: 0;
    display: grid;
    grid-template-columns: 72px 120px 1fr;
    gap: 10px;
    align-items: center;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid #c8d9db;
  }

  .al-roadmap-day:last-child {
    border-bottom: 1px solid #c8d9db;
  }

  .al-roadmap-day strong {
    margin: 0;
    writing-mode: initial;
  }

  .al-kit {
    display: grid;
    grid-template-columns: 1fr;
  }

  .al-kit-card,
  .al-kit-card:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 26px;
  }

  .al-kit-card h3 {
    margin-top: 24px;
  }

  .al-sample {
    padding: 48px 25px 34px;
  }

  .al-sample-fields,
  .al-price-notes {
    grid-template-columns: 1fr;
  }

  .al-price-card {
    padding: 52px 26px 34px;
    box-shadow: 8px 8px 0 var(--al-sun);
  }

  .al-footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .al-footer-bottom {
    flex-direction: column;
  }

  .al-sticky-buy {
    display: flex;
  }

  .al-footer {
    padding-bottom: 94px;
  }
}

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

  .al-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .al-button,
  .al-sticky-buy {
    transition: none;
  }
}
