:root {
  --bg: #173225;
  --bg-deep: #0f241a;
  --bg-soft: #223d2f;
  --paper: #f4ead5;
  --paper-strong: #fbf4e7;
  --ink: #163124;
  --ink-soft: rgba(22, 49, 36, 0.78);
  --gold: #cda45a;
  --gold-soft: #e3c488;
  --line: rgba(255, 245, 228, 0.12);
  --shadow: 0 28px 80px rgba(7, 16, 12, 0.28);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(229, 196, 138, 0.12), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(205, 164, 90, 0.12), transparent 26%),
    linear-gradient(180deg, #193627 0%, #11271d 100%);
  color: var(--paper-strong);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

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

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

.page-shell {
  min-height: 100vh;
}

.site-header,
.hero,
.story-band,
.feature-band,
.product-band,
.download-band,
.archive-band,
.coming-soon-band,
.cta-band,
.request-page,
.site-footer {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  margin-top: 18px;
  border: 1px solid rgba(255, 244, 224, 0.08);
  border-radius: 999px;
  background: rgba(18, 38, 28, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(5, 14, 10, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: rgba(248, 241, 228, 0.86);
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: rgba(244, 234, 213, 0.7);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 42px;
  align-items: center;
  padding: 92px 0 72px;
  min-height: calc(100vh - 108px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7vw, 6.3rem);
  line-height: 0.92;
}

.hero-text,
.story-grid p,
.feature-item p,
.archive-copy p,
.cta-copy {
  color: rgba(246, 238, 224, 0.82);
  line-height: 1.7;
  font-size: 1.03rem;
}

.hero-text {
  max-width: 34rem;
  margin: 24px 0 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #d4ac61 0%, #e6c687 100%);
  color: #143021;
  box-shadow: 0 16px 32px rgba(205, 164, 90, 0.28);
}

.button-secondary {
  border: 1px solid rgba(244, 234, 213, 0.24);
  color: var(--paper-strong);
  background: rgba(244, 234, 213, 0.04);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.hero-notes li {
  position: relative;
  padding-left: 18px;
  color: rgba(249, 243, 231, 0.76);
  font-size: 0.94rem;
  font-weight: 700;
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 0 4px rgba(227, 196, 136, 0.12);
}

.hero-visual {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.calendar-panel,
.hero-illustration-frame {
  box-shadow: var(--shadow);
}

.hero-illustration-frame {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  margin: 0;
  border-radius: 36px;
  overflow: hidden;
  background: rgba(244, 234, 213, 0.04);
  border: 1px solid rgba(255, 244, 223, 0.08);
}

.hero-illustration {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(22, 49, 36, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.story-band,
.feature-band,
.product-band,
.download-band,
.archive-band,
.coming-soon-band,
.cta-band {
  position: relative;
  isolation: isolate;
  color: var(--ink);
}

.story-band::before,
.feature-band::before,
.product-band::before,
.download-band::before,
.archive-band::before,
.coming-soon-band::before,
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  right: calc(50% - 50vw);
  z-index: -1;
}

.story-band {
  padding: 92px 0 70px;
}

.story-band::before,
.feature-band::before,
.product-band::before,
.download-band::before {
  background:
    radial-gradient(circle at top right, rgba(205, 164, 90, 0.08), transparent 24%),
    linear-gradient(180deg, #f1eadc 0%, #f6f1e8 100%);
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  font-size: clamp(2.9rem, 5vw, 4.2rem);
  line-height: 0.98;
  color: var(--ink);
}

.section-intro {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(22, 49, 36, 0.74);
  font-size: 1.03rem;
  line-height: 1.7;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 32px;
}

.story-grid p,
.archive-copy p,
.cta-copy,
.feature-item p {
  color: rgba(22, 49, 36, 0.74);
}

.feature-band {
  padding: 42px 0 74px;
}

.product-band {
  padding: 88px 0 96px;
}

.product-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  margin-top: 42px;
}

.product-feature {
  min-width: 0;
}

.product-shot {
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(21, 48, 34, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.44)),
    rgba(248, 243, 234, 0.72);
  box-shadow: 0 18px 54px rgba(28, 28, 23, 0.08);
}

.product-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.product-shot-demo {
  overflow: hidden;
}

.app-demo {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 1320 / 2868;
  min-height: 0;
  padding: 5% 4% 4%;
  overflow: hidden;
  border-radius: 20px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

.demo-status {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4%;
  padding: 0 6%;
  font-size: 0.66rem;
  font-weight: 800;
}

.demo-status-icons {
  font-size: 0.42rem;
  letter-spacing: 0.12em;
}

.demo-island {
  position: absolute;
  z-index: 4;
  top: 1.8%;
  left: 50%;
  width: 30%;
  height: 3.5%;
  border-radius: 999px;
  background: #101510;
  transform: translateX(-50%);
}

.demo-titlebar {
  position: relative;
  z-index: 2;
  margin-top: 5%;
  padding: 5% 6%;
  border: 1px solid rgba(22, 49, 36, 0.12);
  border-radius: 18px;
  background: rgba(255, 250, 241, 0.88);
  box-shadow: 0 8px 22px rgba(22, 49, 36, 0.08);
  color: #203a2b;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
}

.demo-tabbar {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2%;
  margin-top: 4%;
  padding: 4% 2%;
  border: 1px solid rgba(22, 49, 36, 0.12);
  border-radius: 20px;
  background: rgba(255, 249, 238, 0.96);
  box-shadow: 0 8px 24px rgba(22, 49, 36, 0.12);
}

.demo-tabbar span {
  position: relative;
  padding-top: 18%;
  color: rgba(30, 53, 40, 0.56);
  font-size: 0.5rem;
  font-weight: 700;
  text-align: center;
}

.demo-tabbar span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 18%;
  aspect-ratio: 1;
  border: 2px solid currentColor;
  border-radius: 4px;
  transform: translateX(-50%);
}

.demo-tabbar .is-active {
  color: #a96243;
}

.map-app-demo {
  background: #f8eedc;
  color: #213a2c;
}

.map-stage {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-top: 4%;
  overflow: hidden;
  border: 1px solid rgba(27, 72, 67, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(116deg, transparent 46%, rgba(255, 255, 255, 0.24) 47%, transparent 49%),
    linear-gradient(28deg, transparent 58%, rgba(42, 104, 112, 0.14) 59%, transparent 60%),
    #b9dce1;
}

.map-stage::before,
.map-stage::after {
  content: "";
  position: absolute;
  background: #badba5;
  box-shadow: inset 0 0 0 1px rgba(61, 104, 59, 0.1);
}

.map-stage::before {
  top: -8%;
  left: -24%;
  width: 92%;
  height: 112%;
  clip-path: polygon(0 0, 72% 0, 68% 12%, 80% 23%, 66% 34%, 78% 45%, 58% 57%, 69% 70%, 51% 82%, 62% 100%, 0 100%);
}

.map-stage::after {
  right: -30%;
  bottom: -7%;
  width: 70%;
  height: 66%;
  clip-path: polygon(40% 0, 100% 9%, 100% 100%, 0 100%, 14% 74%, 5% 54%, 26% 38%);
}

.map-label {
  position: absolute;
  z-index: 2;
  color: rgba(23, 61, 48, 0.58);
  font-size: 0.48rem;
  font-weight: 800;
}

.map-label-north {
  top: 11%;
  left: 11%;
}

.map-label-middle {
  top: 43%;
  left: 12%;
}

.map-label-south {
  top: 70%;
  left: 19%;
}

.map-route {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.map-route path {
  fill: none;
  stroke: rgba(166, 91, 60, 0.92);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.8));
  animation: map-route-draw 7s ease-in-out infinite;
}

.map-pin {
  position: absolute;
  z-index: 4;
  width: 9%;
  aspect-ratio: 1;
  border: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 50% 50% 50% 0;
  background: #2ebf56;
  box-shadow: 0 5px 10px rgba(20, 58, 34, 0.22);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-45deg) scale(0.3);
  animation: map-pin-pop 7s ease-out infinite;
}

.map-pin::after {
  content: "";
  position: absolute;
  top: 31%;
  left: 31%;
  width: 38%;
  height: 38%;
  border-radius: 50%;
  background: white;
}

.map-pin-one {
  top: 14%;
  left: 68%;
  animation-delay: 0.25s;
}

.map-pin-two {
  top: 37%;
  left: 56%;
  animation-delay: 0.7s;
}

.map-pin-three {
  top: 60%;
  left: 51%;
  animation-delay: 1.15s;
}

.map-pin-four {
  top: 74%;
  left: 62%;
  animation-delay: 1.6s;
}

.map-pin-five {
  top: 87%;
  left: 70%;
  animation-delay: 2.05s;
}

.map-memory-card {
  position: absolute;
  z-index: 5;
  right: 6%;
  bottom: 5%;
  left: 6%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  padding: 5%;
  border: 1px solid rgba(22, 49, 36, 0.12);
  border-radius: 14px;
  background: rgba(255, 249, 238, 0.94);
  box-shadow: 0 10px 24px rgba(22, 49, 36, 0.16);
  opacity: 0;
  transform: translateY(24%);
  animation: map-card-arrive 7s ease-out infinite;
}

.map-memory-card span {
  grid-row: span 2;
  align-self: center;
  color: #a65b3c;
  font-size: 0.56rem;
  font-weight: 800;
}

.map-memory-card strong {
  color: #203a2b;
  font-size: 0.72rem;
  line-height: 1.15;
}

.map-memory-card small {
  color: rgba(32, 58, 43, 0.62);
  font-size: 0.5rem;
}

.calendar-app-demo {
  background: #101710;
  color: #f7ead4;
}

.calendar-app-demo .demo-titlebar,
.calendar-app-demo .demo-tabbar {
  border-color: rgba(228, 194, 154, 0.22);
  background: #151e17;
  color: #f7ead4;
}

.calendar-app-demo .demo-tabbar span {
  color: rgba(247, 234, 212, 0.58);
}

.calendar-app-demo .demo-tabbar .is-active {
  color: #eba98c;
}

.calendar-demo-panel {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-top: 5%;
  padding: 6% 5%;
  border: 1px solid rgba(235, 169, 140, 0.26);
  border-radius: 20px;
  background: #313a33;
}

.calendar-demo-month {
  display: grid;
  grid-template-columns: 18% 1fr 18%;
  gap: 4%;
  align-items: center;
}

.calendar-demo-month span,
.calendar-demo-month strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 14px;
  background: #172019;
  color: #f7ead4;
}

.calendar-demo-month strong {
  background: #65503f;
  font-size: 0.78rem;
  font-weight: 600;
}

.calendar-demo-weekdays,
.calendar-demo-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 1.8%;
}

.calendar-demo-weekdays {
  margin: 6% 0 3%;
  color: rgba(247, 234, 212, 0.7);
  font-size: 0.4rem;
  font-weight: 800;
  text-align: center;
}

.calendar-demo-days {
  row-gap: 3%;
}

.calendar-demo-days > span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 0.76;
  border: 2px solid transparent;
  border-radius: 999px;
  background: #172019;
  color: #f7ead4;
  font-size: 0.56rem;
  font-weight: 800;
}

.calendar-demo-days .is-empty {
  visibility: hidden;
}

.calendar-demo-days .has-entry {
  background: #544f46;
}

.calendar-demo-days .has-entry::after {
  content: "";
  position: absolute;
  bottom: 12%;
  left: 50%;
  width: 24%;
  height: 5%;
  border-radius: 999px;
  background: #e69a7b;
  opacity: 0;
  animation: calendar-entry-mark 7s ease-out infinite;
}

.calendar-demo-days .has-entry:nth-child(6)::after,
.calendar-demo-days .has-entry:nth-child(17)::after {
  animation-delay: 0.35s;
}

.calendar-demo-days .has-entry:nth-child(18)::after,
.calendar-demo-days .has-entry:nth-child(19)::after {
  animation-delay: 0.7s;
}

.calendar-demo-days .has-entry:nth-child(20)::after,
.calendar-demo-days .has-entry:nth-child(21)::after {
  animation-delay: 1.05s;
}

.calendar-demo-days .is-selected {
  border-color: #e69a7b;
  animation: calendar-day-focus 7s ease-in-out infinite;
}

.calendar-memory-card {
  position: absolute;
  right: 5%;
  bottom: 4%;
  left: 5%;
  display: grid;
  gap: 2px;
  padding: 5%;
  border-radius: 14px;
  background: #151e17;
  box-shadow: 0 12px 24px rgba(5, 10, 7, 0.25);
  opacity: 0;
  transform: translateY(20%);
  animation: calendar-memory-arrive 7s ease-out infinite;
}

.calendar-memory-card span {
  color: #e69a7b;
  font-size: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-memory-card strong {
  color: #f7ead4;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 0.9rem;
  line-height: 1.1;
}

.calendar-memory-card small {
  color: rgba(247, 234, 212, 0.6);
  font-size: 0.5rem;
}

@keyframes map-route-draw {
  0%, 8% { stroke-dashoffset: 260; }
  44%, 100% { stroke-dashoffset: 0; }
}

@keyframes map-pin-pop {
  0%, 12% { opacity: 0; transform: translate(-50%, -50%) rotate(-45deg) scale(0.3); }
  20%, 92% { opacity: 1; transform: translate(-50%, -50%) rotate(-45deg) scale(1); }
  100% { opacity: 0; transform: translate(-50%, -50%) rotate(-45deg) scale(0.8); }
}

@keyframes map-card-arrive {
  0%, 48% { opacity: 0; transform: translateY(24%); }
  60%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8%); }
}

@keyframes calendar-entry-mark {
  0%, 10% { opacity: 0; transform: scaleX(0); }
  22%, 92% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(0.7); }
}

@keyframes calendar-day-focus {
  0%, 35% { transform: translateY(0); box-shadow: none; }
  48%, 88% { transform: translateY(-4%); box-shadow: 0 0 0 4px rgba(230, 154, 123, 0.12); }
  100% { transform: translateY(0); box-shadow: none; }
}

@keyframes calendar-memory-arrive {
  0%, 48% { opacity: 0; transform: translateY(20%); }
  60%, 92% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(8%); }
}

@media (prefers-reduced-motion: reduce) {
  .map-route path,
  .map-pin,
  .map-memory-card,
  .calendar-demo-days .has-entry::after,
  .calendar-demo-days .is-selected,
  .calendar-memory-card {
    animation: none;
  }

  .map-route path {
    stroke-dashoffset: 0;
  }

  .map-pin,
  .map-memory-card,
  .calendar-demo-days .has-entry::after,
  .calendar-memory-card {
    opacity: 1;
  }

  .map-pin {
    transform: translate(-50%, -50%) rotate(-45deg) scale(1);
  }

  .map-memory-card,
  .calendar-memory-card {
    transform: none;
  }
}

.product-caption {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(22, 49, 36, 0.14);
}

.product-caption h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.35;
}

.product-caption p {
  margin: 8px 0 0;
  color: rgba(22, 49, 36, 0.74);
  line-height: 1.65;
}

.download-band {
  padding: 18px 0 92px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.feature-item {
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.42)),
    rgba(248, 243, 234, 0.72);
  border: 1px solid rgba(21, 48, 34, 0.08);
  box-shadow: 0 12px 40px rgba(28, 28, 23, 0.06);
}

.feature-item h3 {
  margin: 18px 0 10px;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2rem;
  line-height: 1;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 36px;
}

.download-card {
  min-width: 0;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.42)),
    rgba(248, 243, 234, 0.72);
  border: 1px solid rgba(21, 48, 34, 0.08);
  box-shadow: 0 12px 40px rgba(28, 28, 23, 0.06);
}

.download-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2rem;
  line-height: 1;
}

.download-card p:not(.plan-label) {
  margin: 14px 0 0;
  color: rgba(22, 49, 36, 0.74);
  line-height: 1.7;
}

.download-card .button {
  margin-top: 26px;
}

.download-card .button-secondary {
  border-color: rgba(22, 49, 36, 0.2);
  color: var(--ink);
  background: rgba(22, 49, 36, 0.04);
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-mark {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(205, 164, 90, 0.18), rgba(22, 49, 36, 0.1));
  position: relative;
}

.feature-mark::before,
.feature-mark::after {
  content: "";
  position: absolute;
}

.feature-mark-journal::before {
  inset: 10px 14px;
  border-radius: 18px 22px 18px 18px;
  border: 2px solid rgba(22, 49, 36, 0.72);
}

.feature-mark-journal::after {
  right: 11px;
  top: 12px;
  width: 14px;
  height: 18px;
  border-radius: 0 12px 0 0;
  background: rgba(205, 164, 90, 0.7);
}

.feature-mark-place::before {
  left: 25px;
  top: 11px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(205, 164, 90, 0.94);
}

.feature-mark-place::after {
  left: 15px;
  right: 15px;
  bottom: 12px;
  height: 22px;
  border-radius: 40px 40px 18px 18px;
  border: 2px solid rgba(22, 49, 36, 0.72);
  border-top: none;
}

.feature-mark-return::before {
  left: 15px;
  right: 12px;
  top: 17px;
  bottom: 15px;
  border: 2px solid rgba(22, 49, 36, 0.72);
  border-radius: 999px;
  border-right-color: transparent;
  transform: rotate(-20deg);
}

.feature-mark-return::after {
  right: 11px;
  top: 15px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 11px solid rgba(205, 164, 90, 0.95);
}

.archive-band {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
  padding: 92px 0;
}

.archive-band::before {
  background:
    radial-gradient(circle at 15% 22%, rgba(205, 164, 90, 0.1), transparent 22%),
    linear-gradient(180deg, #f8f3ea 0%, #efe4d0 100%);
}

.coming-soon-band {
  padding: 132px 0 104px;
  color: var(--ink);
}

.coming-soon-band::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(205, 164, 90, 0.1), transparent 24%),
    linear-gradient(180deg, #efe4d0 0%, #f6f1e8 100%);
}

.coming-soon-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 38px;
}

.coming-soon-item {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(21, 48, 34, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.38)),
    rgba(248, 243, 234, 0.72);
  box-shadow: 0 12px 40px rgba(28, 28, 23, 0.05);
}

.coming-soon-item span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-soon-item h3 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.coming-soon-item p {
  margin: 14px 0 0;
  color: rgba(22, 49, 36, 0.74);
  line-height: 1.7;
}

.release-fixes {
  display: grid;
  grid-template-columns: minmax(180px, 0.45fr) minmax(0, 1.55fr);
  gap: 28px;
  align-items: start;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(21, 48, 34, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.38);
}

.release-fixes .plan-label {
  margin: 3px 0 0;
}

.release-fixes ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(22, 49, 36, 0.78);
  line-height: 1.65;
}

.archive-preview {
  display: flex;
  justify-content: flex-end;
}

.calendar-panel {
  width: min(440px, 100%);
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.46)),
    rgba(248, 243, 234, 0.82);
  border: 1px solid rgba(21, 48, 34, 0.08);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0 24px;
}

.calendar-grid span {
  aspect-ratio: 1;
  border-radius: 14px;
  background: rgba(20, 48, 33, 0.08);
}

.calendar-grid .active {
  background: linear-gradient(135deg, #d0a85f, #e7cb93);
}

.calendar-entry {
  padding: 20px;
  border-radius: 22px;
  background: rgba(20, 48, 33, 0.08);
}

.calendar-entry strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.7rem;
  line-height: 1;
}

.calendar-entry p {
  margin: 0;
  color: rgba(22, 49, 36, 0.74);
  line-height: 1.65;
}

.cta-band {
  padding: 56px 0 120px;
  text-align: center;
}

.cta-band::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(205, 164, 90, 0.18), transparent 22%),
    linear-gradient(180deg, #173225 0%, #102419 100%);
}

.cta-band .section-heading {
  margin: 0 auto;
}

.cta-band .eyebrow,
.cta-band .section-heading h2,
.cta-copy {
  color: var(--paper-strong);
}

.cta-copy {
  color: rgba(246, 238, 224, 0.82);
}

.cta-copy {
  max-width: 620px;
  margin: 22px auto 0;
}

.cta-actions {
  justify-content: center;
}

.request-page {
  min-height: calc(100vh - 194px);
  padding: 98px 0 88px;
  color: var(--paper-strong);
}

.request-page h1 {
  max-width: 820px;
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: clamp(3.5rem, 7vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.request-page > p {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(246, 238, 224, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
}

.request-page .button {
  margin-top: 34px;
}

.request-form {
  display: grid;
  gap: 18px;
  max-width: 620px;
  margin-top: 34px;
}

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(246, 238, 224, 0.86);
  font-size: 0.95rem;
  font-weight: 700;
}

.request-form input,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 234, 213, 0.18);
  border-radius: 18px;
  background: rgba(244, 234, 213, 0.08);
  color: var(--paper-strong);
  font: inherit;
  line-height: 1.5;
  padding: 14px 16px;
}

.request-form textarea {
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: rgba(227, 196, 136, 0.72);
  outline: none;
  box-shadow: 0 0 0 3px rgba(227, 196, 136, 0.16);
}

.request-form .button {
  border: 0;
  cursor: pointer;
}

.request-form .button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: rgba(246, 238, 224, 0.78);
  line-height: 1.6;
}

.form-status[data-state="success"] {
  color: var(--gold-soft);
}

.form-status[data-state="error"] {
  color: #ffc1ae;
}

.request-details {
  max-width: 760px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(244, 234, 213, 0.16);
}

.request-details h2 {
  margin: 28px 0 10px;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0;
}

.request-details h2:first-child {
  margin-top: 0;
}

.request-details p {
  margin: 0;
  color: rgba(246, 238, 224, 0.78);
  line-height: 1.7;
}

.policy-page h1 {
  max-width: 980px;
}

.policy-updated {
  color: var(--gold-soft);
  font-weight: 700;
}

.policy-details {
  max-width: 860px;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 24px;
}

.subscription-page h1 {
  max-width: 940px;
}

.subscription-page {
  width: min(1200px, calc(100% - 48px));
}

.subscription-page > p {
  max-width: 980px;
}

.faq-page h1 {
  max-width: 900px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(880px, 100%);
  margin-top: 48px;
}

.faq-item {
  border: 1px solid rgba(244, 234, 213, 0.14);
  border-radius: 22px;
  background: rgba(244, 234, 213, 0.05);
  box-shadow: 0 18px 54px rgba(5, 14, 10, 0.12);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(227, 196, 136, 0.34);
  background:
    linear-gradient(180deg, rgba(227, 196, 136, 0.08), rgba(244, 234, 213, 0.04)),
    rgba(244, 234, 213, 0.05);
}

.faq-item summary {
  position: relative;
  padding: 24px 68px 24px 26px;
  color: var(--paper-strong);
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1.15;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 26px;
  color: var(--gold-soft);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  transform: translateY(-50%);
}

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

.faq-item summary:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: -4px;
  border-radius: 18px;
}

.faq-answer {
  padding: 0 68px 26px 26px;
  color: rgba(246, 238, 224, 0.78);
  line-height: 1.75;
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 14px;
}

.faq-answer .text-link {
  margin-top: 18px;
}

.faq-answer code {
  color: var(--paper-strong);
  font-size: 0.92em;
}

.faq-path {
  color: var(--paper-strong);
  font-weight: 700;
}

.press-page h1 {
  max-width: 960px;
}

.press-page > p {
  max-width: 840px;
}

.press-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 32px;
}

.press-actions .button,
.press-actions .text-link {
  margin-top: 0;
}

.press-section {
  margin-top: 62px;
  padding-top: 34px;
  border-top: 1px solid rgba(244, 234, 213, 0.16);
}

.press-section h2 {
  margin: 0 0 18px;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.press-section p,
.press-section dd,
.press-feature-list {
  color: rgba(246, 238, 224, 0.78);
  line-height: 1.7;
}

.press-story p,
.press-section > p {
  max-width: 880px;
}

.press-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
}

.press-facts div {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(244, 234, 213, 0.14);
  border-radius: 20px;
  background: rgba(244, 234, 213, 0.05);
}

.press-facts dt {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-facts dd {
  margin: 0;
}

.press-feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.press-feature-list li {
  padding: 10px 14px;
  border: 1px solid rgba(244, 234, 213, 0.12);
  border-radius: 999px;
  background: rgba(244, 234, 213, 0.04);
}

.press-note {
  margin-bottom: 22px;
}

.press-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.press-media-grid figure {
  min-width: 0;
  margin: 0;
}

.press-media-grid a {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(244, 234, 213, 0.14);
  border-radius: 20px;
  background: rgba(244, 234, 213, 0.06);
}

.press-media-grid img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: contain;
  object-position: top center;
  background: rgba(8, 20, 14, 0.22);
}

.press-media-grid figcaption {
  margin-top: 10px;
  color: rgba(246, 238, 224, 0.72);
  font-size: 0.92rem;
  line-height: 1.5;
}

.subscription-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 44px;
  width: 100%;
  max-width: none;
}

.subscription-plan {
  width: 100%;
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(244, 234, 213, 0.14);
  border-radius: 24px;
  background: rgba(244, 234, 213, 0.06);
  box-shadow: 0 18px 54px rgba(5, 14, 10, 0.16);
}

.subscription-plan-pro {
  border-color: rgba(227, 196, 136, 0.38);
  background:
    linear-gradient(180deg, rgba(227, 196, 136, 0.1), rgba(244, 234, 213, 0.05)),
    rgba(244, 234, 213, 0.06);
}

.plan-label {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.subscription-plan h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: 0;
}

.subscription-plan p:last-child,
.subscription-note p {
  color: rgba(246, 238, 224, 0.78);
  line-height: 1.7;
}

.trip-comparison {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
  margin-top: 58px;
  padding: 42px 0;
  border-top: 1px solid rgba(244, 234, 213, 0.16);
  border-bottom: 1px solid rgba(244, 234, 213, 0.16);
}

.trip-comparison-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: 0;
}

.trip-comparison-copy > p:last-child {
  margin: 18px 0 0;
  color: rgba(246, 238, 224, 0.76);
  line-height: 1.7;
}

.trip-tier-comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid rgba(244, 234, 213, 0.14);
  border-radius: 22px;
  overflow: hidden;
  background: rgba(244, 234, 213, 0.04);
}

.trip-tier {
  min-width: 0;
  padding: 26px;
}

.trip-tier + .trip-tier {
  border-left: 1px solid rgba(244, 234, 213, 0.14);
}

.trip-tier-pro {
  background: linear-gradient(180deg, rgba(227, 196, 136, 0.12), rgba(244, 234, 213, 0.03));
}

.trip-tier span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trip-tier strong {
  display: block;
  color: var(--paper-strong);
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 1.75rem;
  line-height: 1.05;
}

.trip-tier p {
  margin: 14px 0 0;
  color: rgba(246, 238, 224, 0.74);
  line-height: 1.65;
}

.comparison-table {
  display: grid;
  width: 100%;
  max-width: none;
  margin-top: 34px;
  border: 1px solid rgba(244, 234, 213, 0.16);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(244, 234, 213, 0.05);
}

.comparison-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) repeat(2, minmax(0, 1fr));
}

.comparison-row > div {
  min-width: 0;
  padding: 18px 20px;
  border-top: 1px solid rgba(244, 234, 213, 0.12);
  color: rgba(246, 238, 224, 0.82);
  line-height: 1.55;
}

.comparison-row > div + div {
  border-left: 1px solid rgba(244, 234, 213, 0.12);
}

.comparison-row > div:first-child {
  color: var(--paper-strong);
  font-weight: 800;
}

.comparison-head > div {
  border-top: 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.included-features {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
  margin-top: 48px;
  padding: 34px;
  border: 1px solid rgba(244, 234, 213, 0.14);
  border-radius: 24px;
  background: rgba(244, 234, 213, 0.05);
}

.included-features h2 {
  margin: 0;
  font-family: "Cormorant Garamond", "Iowan Old Style", serif;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0;
}

.included-features p:last-child {
  margin: 16px 0 0;
  color: rgba(246, 238, 224, 0.76);
  line-height: 1.7;
}

.included-features ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-features li {
  padding: 14px 16px;
  border: 1px solid rgba(244, 234, 213, 0.12);
  border-radius: 16px;
  background: rgba(244, 234, 213, 0.04);
  color: rgba(246, 238, 224, 0.84);
  line-height: 1.45;
}

.inline-link {
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  padding: 26px 0 34px;
  color: rgba(246, 238, 224, 0.76);
  font-size: 0.92rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--paper-strong);
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1080px) {
  .hero,
  .archive-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-visual {
    min-height: 560px;
    justify-content: center;
  }

  .archive-preview {
    justify-content: flex-start;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

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

  .subscription-summary {
    grid-template-columns: 1fr;
  }

  .trip-comparison {
    grid-template-columns: 1fr;
  }

  .included-features {
    grid-template-columns: 1fr;
  }

  .press-facts {
    grid-template-columns: 1fr;
  }

  .press-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header,
  .hero,
  .story-band,
  .feature-band,
  .product-band,
  .download-band,
  .archive-band,
  .coming-soon-band,
  .cta-band,
  .request-page,
  .site-footer {
    width: min(100% - 32px, 1200px);
  }

  .site-header {
    position: static;
    padding: 16px 18px;
    border-radius: 26px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    gap: 28px;
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.3rem, 14vw, 4.8rem);
  }

  .hero-text,
  .story-grid p,
  .archive-copy p,
  .cta-copy,
  .feature-item p {
    font-size: 0.98rem;
  }

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

  .story-band,
  .feature-band,
  .product-band,
  .download-band,
  .archive-band,
  .coming-soon-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-heading h2 {
    font-size: clamp(2.45rem, 10vw, 3.5rem);
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .request-page {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 64px;
  }

  .request-page h1 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .comparison-row {
    grid-template-columns: 1fr;
  }

  .trip-tier-comparison {
    grid-template-columns: 1fr;
  }

  .trip-tier + .trip-tier {
    border-top: 1px solid rgba(244, 234, 213, 0.14);
    border-left: 0;
  }

  .comparison-row > div + div {
    border-left: 0;
  }

  .comparison-row > div {
    padding: 15px 18px;
  }

  .comparison-row > div:nth-child(2)::before,
  .comparison-row > div:nth-child(3)::before {
    display: block;
    margin-bottom: 4px;
    color: var(--gold-soft);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-row > div:nth-child(2)::before {
    content: "Free";
  }

  .comparison-row > div:nth-child(3)::before {
    content: "Pro";
  }

  .comparison-head {
    display: none;
  }

  .press-media-grid {
    grid-template-columns: 1fr;
  }

  .faq-list {
    margin-top: 36px;
  }

  .faq-item summary {
    padding: 21px 58px 21px 22px;
    font-size: 1.45rem;
  }

  .faq-item summary::after {
    right: 22px;
  }

  .faq-answer {
    padding: 0 22px 22px;
  }

  .coming-soon-list {
    grid-template-columns: 1fr;
  }

  .release-fixes,
  .included-features {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .included-features ul {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-header {
    margin-top: 12px;
  }

  .brand {
    font-size: 1.5rem;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-notes {
    gap: 10px 16px;
  }

  .hero-notes li {
    width: auto;
    text-align: left;
  }

  .hero-visual {
    margin-top: 6px;
  }

  .feature-item,
  .calendar-panel {
    padding: 22px;
  }

  .product-shot {
    padding: 10px;
  }
}
