:root {
  --paper: #f7f9fc;
  --paper-warm: #fffdf4;
  --grid: rgba(196, 211, 228, 0.42);
  --card: #ffffff;
  --ink: #233047;
  --ink-soft: #46536a;
  --muted: #718096;
  --outline: #233047;
  --yellow: #ffde45;
  --yellow-soft: #fff2a6;
  --mint: #ddf4ea;
  --mint-strong: #77c9a9;
  --green: #187355;
  --green-dark: #10533f;
  --peach: #ffeee5;
  --peach-strong: #ff946f;
  --violet: #7a5cd6;
  --violet-soft: #eee9fb;
  --blue-soft: #dde6f4;
  --shadow-sm: 3px 3px 0 rgba(35, 48, 71, 0.13);
  --shadow-md: 6px 6px 0 rgba(35, 48, 71, 0.14);
  --shadow-lg: 10px 12px 0 rgba(35, 48, 71, 0.12);
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo",
    "Noto Sans KR", "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 28px 28px;
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  border: 2px solid var(--outline);
  border-radius: 8px;
  background: var(--card);
  font-weight: 900;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100% - 40px, 1160px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1.7px solid rgba(35, 48, 71, 0.76);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 18px rgba(35, 48, 71, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  width: min(100% - 40px, 1160px);
  min-height: 72px;
  margin-inline: auto;
  gap: 28px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 950;
  text-decoration: none;
}

.brand img,
.footer-brand img,
.final-cta > img,
.privacy-visual img {
  border: 1.7px solid var(--outline);
  border-radius: 10px;
  box-shadow: 2px 2px 0 rgba(35, 48, 71, 0.16);
}

.brand span {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  gap: 4px;
}

.site-nav a {
  padding: 8px 12px;
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--yellow-soft);
  color: var(--ink);
}

.language-switcher {
  display: inline-flex;
  padding: 3px;
  border: 1.4px solid var(--outline);
  border-radius: 8px;
  background: var(--paper);
  gap: 2px;
}

.language-switcher a {
  display: grid;
  width: 29px;
  height: 27px;
  border-radius: 5px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 950;
  text-decoration: none;
  place-items: center;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  background: var(--card);
  color: var(--ink);
}

.language-switcher a[aria-current="true"] {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 1px 1px 0 rgba(35, 48, 71, 0.2);
}

.header-download {
  padding: 9px 15px;
  border: 1.7px solid var(--outline);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 2px 2px 0 var(--yellow);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.header-downloads {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-download-play {
  box-shadow: 2px 2px 0 var(--mint);
}

.store-short {
  display: none;
}

.header-download:hover,
.header-download:focus-visible {
  box-shadow: 4px 4px 0 var(--yellow);
  transform: translate(-1px, -1px);
}

.header-download-play:hover,
.header-download-play:focus-visible {
  box-shadow: 4px 4px 0 var(--mint);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  min-height: 760px;
  padding-block: 72px 82px;
  gap: clamp(36px, 7vw, 92px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 6.3vw, 68px);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1.12;
}

.hero h1 mark {
  position: relative;
  display: inline;
  padding: 0 0.08em;
  color: inherit;
  background: linear-gradient(
    transparent 48%,
    rgba(255, 222, 69, 0.85) 48%,
    rgba(255, 222, 69, 0.85) 90%,
    transparent 90%
  );
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 2vw, 19px);
  font-weight: 650;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  align-items: stretch;
  margin-top: 34px;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1.8px solid var(--outline);
  border-radius: 9px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

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

.button-primary {
  display: grid;
  grid-template-rows: auto auto;
  min-width: 178px;
  padding: 9px 22px 10px;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--yellow);
  color: #fff;
  text-align: left;
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 7px 7px 0 var(--yellow);
}

.button-play {
  box-shadow: 4px 4px 0 var(--mint);
}

.button-play:hover,
.button-play:focus-visible {
  box-shadow: 7px 7px 0 var(--mint);
}

.button-primary strong {
  font-size: 20px;
  line-height: 1.1;
}

.button-kicker {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.82;
}

.button-secondary {
  background: var(--card);
  box-shadow: var(--shadow-sm);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  box-shadow: 5px 5px 0 rgba(35, 48, 71, 0.16);
}

.hero-pills {
  display: flex;
  margin: 28px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.hero-pills li {
  padding: 7px 11px;
  border: 1.4px solid var(--outline);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 850;
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.hero-screenshot-slot {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(310px, 80vw);
  margin: 0;
  padding: 9px;
  border: 3px solid var(--outline);
  border-radius: 42px;
  background: var(--ink);
  box-shadow: 18px 22px 0 rgba(35, 48, 71, 0.13), 0 30px 80px rgba(35, 48, 71, 0.2);
  grid-template-rows: 1fr auto;
  transform: rotate(1.8deg);
}

.hero-screenshot-slot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 31px;
}

.hero-screenshot-slot figcaption {
  padding: 12px 6px 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.01em;
  text-align: center;
}

.phone-mockup {
  position: relative;
  z-index: 2;
  width: min(330px, 82vw);
  padding: 10px;
  border: 3px solid var(--outline);
  border-radius: 46px;
  background: var(--ink);
  box-shadow: 18px 22px 0 rgba(35, 48, 71, 0.13), 0 30px 80px rgba(35, 48, 71, 0.2);
  transform: rotate(1.8deg);
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 3;
  width: 82px;
  height: 22px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 615px;
  padding: 18px 15px 22px;
  border-radius: 35px;
  background-color: var(--paper-warm);
  background-image:
    linear-gradient(rgba(220, 231, 243, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220, 231, 243, 0.35) 1px, transparent 1px);
  background-size: 20px 20px;
  overflow: hidden;
}

.mock-status,
.mock-heading,
.mock-date-row,
.mock-title-row,
.mock-log div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-status {
  padding: 0 7px 15px;
  font-size: 10px;
  font-weight: 900;
}

.mock-heading {
  align-items: flex-start;
  margin: 8px 2px 15px;
}

.mock-heading small,
.mock-heading strong {
  display: block;
}

.mock-heading small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.mock-heading strong {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 950;
}

.mock-heading img {
  border: 1.3px solid var(--outline);
  border-radius: 8px;
}

.mock-date-row {
  padding: 9px;
  border: 1.4px solid var(--outline);
  border-radius: 9px;
  background: var(--card);
  box-shadow: 2px 2px 0 rgba(35, 48, 71, 0.11);
}

.mock-date-row button,
.calendar-top button {
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 21px;
  line-height: 1;
}

.mock-date-row strong {
  font-size: 11px;
}

.mock-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 10px;
  gap: 6px;
}

.mock-summary span {
  display: grid;
  padding: 9px 4px;
  border: 1.2px solid var(--outline);
  border-radius: 8px;
  background: var(--mint);
  place-items: center;
  font-size: 16px;
}

.mock-summary span:nth-child(2) {
  background: var(--blue-soft);
}

.mock-summary span:nth-child(3) {
  background: var(--yellow-soft);
}

.mock-summary strong {
  margin-top: 2px;
  font-size: 10px;
}

.mock-summary small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
}

.mock-title-row {
  margin: 18px 1px 8px;
}

.mock-title-row strong {
  font-size: 13px;
}

.mock-title-row small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.mock-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.mock-slots button {
  position: relative;
  display: grid;
  min-width: 0;
  padding: 9px 3px 7px;
  border: 1.3px solid var(--outline);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 2px 2px 0 rgba(35, 48, 71, 0.11);
  place-items: center;
}

.mock-slots button.selected {
  background: var(--peach);
  box-shadow: 2px 2px 0 var(--peach-strong);
}

.mock-slots span {
  font-size: 23px;
  line-height: 1;
}

.mock-slots small {
  margin-top: 5px;
  font-size: 8px;
  font-weight: 850;
}

.mock-log {
  margin-top: 14px;
  padding: 3px 11px;
  border: 1.3px solid var(--outline);
  border-radius: 9px;
  background: var(--card);
  box-shadow: 2px 2px 0 rgba(35, 48, 71, 0.1);
}

.mock-log div {
  justify-content: flex-start;
  min-height: 46px;
  gap: 9px;
  border-bottom: 1px dashed rgba(35, 48, 71, 0.3);
  font-size: 12px;
}

.mock-log div:last-child {
  border-bottom: 0;
}

.mock-log strong {
  font-size: 10px;
}

.mock-time {
  width: 34px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border: 1.7px solid var(--outline);
  border-radius: 8px;
  background: var(--card);
  box-shadow: 4px 4px 0 rgba(35, 48, 71, 0.15);
  gap: 12px;
  transform: rotate(-4deg);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.floating-note strong {
  color: var(--green);
  font-size: 18px;
  line-height: 1;
}

.note-top {
  top: 74px;
  right: -12px;
}

.note-bottom {
  bottom: 93px;
  left: -20px;
  background: var(--mint);
  transform: rotate(4deg);
}

.scribble {
  position: absolute;
  border: 3px solid var(--violet);
  border-radius: 50%;
  opacity: 0.38;
}

.scribble-one {
  top: 50px;
  left: 8%;
  width: 50px;
  height: 26px;
  border-bottom-color: transparent;
  transform: rotate(-24deg);
}

.scribble-two {
  right: 2%;
  bottom: 58px;
  width: 72px;
  height: 35px;
  border-top-color: transparent;
  transform: rotate(18deg);
}

.trust-strip {
  border-block: 1.8px solid var(--outline);
  background: var(--yellow-soft);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 20px;
}

.trust-inner p {
  display: grid;
  margin: 0;
  padding: 2px 34px;
  border-right: 1.4px dashed rgba(35, 48, 71, 0.42);
  text-align: center;
}

.trust-inner p:first-child {
  padding-left: 0;
}

.trust-inner p:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-inner strong {
  font-size: 17px;
  font-weight: 950;
}

.trust-inner span {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

.feature-section {
  padding-block: 118px 120px;
}

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

.section-heading h2,
.privacy-copy h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(34px, 5.3vw, 54px);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.section-heading > p:last-child {
  max-width: 640px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 630;
}

.feature-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: -12px 0 54px;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.feature-index a {
  position: relative;
  display: grid;
  min-height: 174px;
  padding: 16px 14px 14px;
  border: 1.7px solid var(--outline);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow-sm);
  align-content: end;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-index li:nth-child(1) a { background: var(--yellow-soft); }
.feature-index li:nth-child(2) a { background: var(--mint); }
.feature-index li:nth-child(3) a { background: var(--blue-soft); }
.feature-index li:nth-child(4) a { background: var(--peach); }
.feature-index li:nth-child(5) a { background: var(--violet-soft); }

.feature-index a:hover,
.feature-index a:focus-visible {
  z-index: 1;
  box-shadow: 6px 6px 0 rgba(35, 48, 71, 0.15);
  transform: translate(-2px, -2px) rotate(-1deg);
}

.feature-index a > span {
  position: absolute;
  top: 10px;
  right: 11px;
  color: rgba(35, 48, 71, 0.5);
  font-size: 10px;
  font-weight: 950;
}

.feature-index strong,
.feature-index small {
  display: block;
}

.feature-index strong {
  align-self: end;
  margin-top: 0;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.feature-index small {
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 750;
}

.feature-spotlight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  min-height: 440px;
  margin-top: 24px;
  padding: clamp(28px, 4vw, 46px);
  border: 1.8px solid var(--outline);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  gap: clamp(32px, 6vw, 72px);
  scroll-margin-top: 96px;
}

.feature-quick {
  background: var(--yellow-soft);
}

.feature-batch {
  background: var(--mint);
}

.feature-calendar {
  background: var(--peach);
}

.feature-number,
.mini-number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  border: 1.7px solid var(--outline);
  border-radius: 50%;
  background: var(--card);
  box-shadow: 2px 2px 0 rgba(35, 48, 71, 0.14);
  font-size: 11px;
  font-weight: 950;
  place-items: center;
}

.feature-label {
  margin: 14px 0 7px;
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.feature-copy h3,
.mini-card h3 {
  margin: 0;
  font-size: clamp(29px, 4.1vw, 43px);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.feature-copy > p:not(.feature-label) {
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 630;
  line-height: 1.75;
}

.check-list {
  display: grid;
  margin: 23px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 25px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  border: 1.2px solid var(--outline);
  border-radius: 50%;
  background: var(--card);
  color: var(--green);
  font-size: 10px;
  font-weight: 950;
  place-items: center;
}

.feature-app-preview,
.mini-app-preview {
  margin: 0;
}

.feature-app-preview {
  width: min(180px, 100%);
  justify-self: center;
}

.feature-app-preview-right {
  transform: rotate(1.5deg);
}

.feature-app-preview-left {
  transform: rotate(-1.5deg);
}

.feature-app-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 2px solid var(--outline);
  border-radius: 28px;
  background: var(--card);
  box-shadow: 8px 10px 0 rgba(35, 48, 71, 0.14), 0 20px 46px rgba(35, 48, 71, 0.12);
  overflow: hidden;
}

.feature-app-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-quick .feature-app-frame img {
  object-position: center 34%;
}

.preview-batch .feature-app-frame img {
  object-position: center 36%;
}

.preview-calendar .feature-app-frame img {
  object-position: center 46%;
}

.preview-live .feature-app-frame img {
  object-position: center 60%;
}

.preview-family .feature-app-frame img {
  object-position: center 50%;
}

.feature-app-preview figcaption {
  display: none;
}

.quick-demo {
  padding: 22px;
  border: 1.8px solid var(--outline);
  border-radius: 13px;
  background: var(--paper-warm);
  box-shadow: 8px 8px 0 rgba(35, 48, 71, 0.13);
  transform: rotate(1.5deg);
}

.quick-demo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.quick-demo-title span {
  font-size: 18px;
  font-weight: 950;
}

.quick-demo-title small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.quick-demo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.quick-demo-grid > span {
  position: relative;
  display: grid;
  min-height: 88px;
  padding: 10px 5px;
  border: 1.5px solid var(--outline);
  border-radius: 9px;
  background: var(--card);
  box-shadow: 2px 2px 0 rgba(35, 48, 71, 0.12);
  font-size: 11px;
  font-weight: 900;
  place-items: center;
}

.quick-demo-grid b {
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.quick-demo-grid .quick-active {
  background: var(--peach);
  box-shadow: 3px 3px 0 var(--peach-strong);
}

.quick-demo-grid i {
  position: absolute;
  top: 6px;
  right: 6px;
  display: grid;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  place-items: center;
}

.quick-demo > p {
  margin: 15px 0 0;
  padding: 10px;
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 950;
  text-align: center;
}

.batch-demo {
  position: relative;
  min-height: 385px;
}

.paper {
  position: absolute;
  inset: 0 8% 0 3%;
  border: 1.8px solid var(--outline);
  border-radius: 6px;
  background-color: var(--paper-warm);
  background-image: repeating-linear-gradient(
    transparent 0,
    transparent 27px,
    rgba(113, 128, 150, 0.22) 28px
  );
  box-shadow: var(--shadow-md);
}

.paper-back {
  background: var(--yellow-soft);
  transform: rotate(-6deg) translate(-8px, 8px);
}

.paper-front {
  padding: 30px 25px 24px;
  transform: rotate(2deg);
}

.paper-tape {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 80px;
  height: 27px;
  background: rgba(255, 222, 69, 0.78);
  transform: translateX(-50%) rotate(-2deg);
}

.paper-front > p {
  margin: 0 0 13px;
  font-size: 18px;
  font-weight: 950;
}

.paper-front ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.paper-front li {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  align-items: center;
  min-height: 50px;
  gap: 7px;
  font-size: 11px;
}

.paper-front li span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.paper-front li b {
  font-weight: 850;
}

.paper-front li i {
  color: var(--green);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.paper-front button {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  border: 1.5px solid var(--outline);
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.calendar-demo {
  padding: 22px;
  border: 1.8px solid var(--outline);
  border-radius: 13px;
  background: var(--card);
  box-shadow: 8px 8px 0 rgba(35, 48, 71, 0.13);
  transform: rotate(-1deg);
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 5px 14px;
}

.calendar-top strong {
  font-size: 16px;
  font-weight: 950;
}

.calendar-week,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-week span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 900;
  text-align: center;
}

.calendar-grid {
  margin-top: 6px;
}

.calendar-grid span {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  border-radius: 7px;
  background: var(--paper);
  font-size: 8px;
  font-weight: 850;
  place-items: start center;
  padding-top: 3px;
  overflow: hidden;
}

.calendar-grid .muted-day {
  color: #aeb7c3;
}

.calendar-grid .today {
  outline: 2px solid var(--green);
  background: var(--mint);
  color: var(--green-dark);
}

.calendar-grid .photo-day {
  color: #fff;
  text-shadow: 0 1px 2px rgba(35, 48, 71, 0.6);
}

.photo-one { background: linear-gradient(145deg, #bde8da, #5b9a7f) !important; }
.photo-two { background: linear-gradient(145deg, #ffd8b8, #ed8d6b) !important; }
.photo-three { background: linear-gradient(145deg, #cfd7fa, #7868ba) !important; }
.photo-four { background: linear-gradient(145deg, #f9d7e6, #ce7997) !important; }
.photo-five { background: linear-gradient(145deg, #f4e99a, #a7ad56) !important; }

.calendar-caption {
  display: flex;
  align-items: center;
  margin-top: 13px;
  padding: 10px;
  border: 1.2px solid var(--outline);
  border-radius: 8px;
  background: var(--yellow-soft);
}

.calendar-caption p,
.calendar-caption strong {
  display: block;
  margin: 0;
}

.calendar-caption p {
  font-size: 9px;
}

.calendar-caption strong {
  font-size: 10px;
}

.mini-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
  gap: 24px;
}

.mini-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.52fr);
  align-items: center;
  min-height: 300px;
  padding: 32px;
  border: 1.8px solid var(--outline);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  gap: 20px;
  scroll-margin-top: 96px;
}

.mini-card-live {
  background: var(--blue-soft);
}

.mini-card-share {
  background: var(--violet-soft);
}

.mini-card h3 {
  font-size: clamp(27px, 3.5vw, 38px);
}

.mini-card-copy > p:last-child {
  max-width: 510px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-weight: 650;
}

.mini-app-preview {
  width: min(145px, 100%);
  justify-self: center;
  transform: rotate(1.2deg);
}

.mini-card-share .mini-app-preview {
  transform: rotate(-1.2deg);
}

.screenshots-section {
  padding-block: 116px 108px;
  border-block: 1.8px solid var(--outline);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}

.screenshots-section .section-heading .eyebrow {
  color: var(--yellow);
}

.screenshots-section .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.screenshot-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.screenshot-card {
  margin: 0;
}

.screenshot-frame {
  position: relative;
  aspect-ratio: 1206 / 2622;
  border: 2px solid #fff;
  border-radius: 29px;
  background: #fff;
  box-shadow: 6px 7px 0 rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.screenshot-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-card figcaption {
  display: grid;
  margin-top: 16px;
  text-align: center;
}

.screenshot-card figcaption strong {
  font-size: 14px;
  font-weight: 950;
}

.screenshot-card figcaption span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
}

.scroll-hint {
  display: none;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  text-align: right;
}

.scroll-hint span {
  color: var(--yellow);
  font-size: 18px;
}

.privacy-section {
  padding-block: 110px;
}

.privacy-card {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  padding: clamp(36px, 6vw, 68px);
  border: 1.8px solid var(--outline);
  border-radius: 16px;
  background: var(--mint);
  box-shadow: var(--shadow-lg);
  gap: clamp(40px, 8vw, 100px);
}

.privacy-visual {
  position: relative;
  display: grid;
  min-height: 260px;
  border: 1.7px dashed rgba(35, 48, 71, 0.45);
  border-radius: 50%;
  place-items: center;
}

.privacy-visual::before,
.privacy-visual::after {
  content: "";
  position: absolute;
  border: 1.4px solid rgba(35, 48, 71, 0.28);
  border-radius: 50%;
}

.privacy-visual::before {
  inset: 24px;
}

.privacy-visual::after {
  inset: 52px;
}

.privacy-visual img {
  position: relative;
  z-index: 1;
}

.privacy-shield {
  position: absolute;
  right: 22%;
  bottom: 20%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  border: 1.7px solid var(--outline);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 3px 3px 0 rgba(35, 48, 71, 0.16);
  color: var(--green-dark);
  font-size: 21px;
  font-weight: 950;
  place-items: center;
}

.privacy-copy h2 {
  font-size: clamp(31px, 4.5vw, 48px);
}

.privacy-copy > p:not(.eyebrow) {
  margin: 21px 0 0;
  color: var(--ink-soft);
  font-weight: 650;
  line-height: 1.8;
}

.privacy-links {
  display: flex;
  margin-top: 24px;
  gap: 10px;
  flex-wrap: wrap;
}

.privacy-links a {
  padding: 7px 10px;
  border: 1.3px solid var(--outline);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  text-decoration: none;
}

.privacy-links a:hover,
.privacy-links a:focus-visible {
  background: var(--yellow-soft);
}

.final-cta {
  position: relative;
  margin-bottom: 110px;
  padding: 72px 30px;
  border: 2px solid var(--outline);
  border-radius: 18px;
  background: var(--yellow-soft);
  box-shadow: var(--shadow-lg);
  text-align: center;
  overflow: hidden;
}

.final-cta > img {
  margin: 0 auto 22px;
}

.final-cta .eyebrow {
  margin-bottom: 10px;
}

.final-cta h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.final-cta > p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px auto 27px;
  color: var(--ink-soft);
  font-size: 17px;
  font-weight: 650;
}

.final-cta .button {
  margin-inline: auto;
}

.store-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.final-cta .store-actions .button {
  margin-inline: 0;
}

.site-footer {
  border-top: 1.8px solid var(--outline);
  background: var(--card);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-block: 34px;
  gap: 25px 40px;
}

.footer-inner > div > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.footer-inner nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-inner nav a {
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 800;
  text-underline-offset: 3px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 18px;
  border-top: 1px dashed rgba(35, 48, 71, 0.3);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 38px;
  }

  .note-top {
    right: 0;
  }

  .note-bottom {
    left: 0;
  }

  .feature-index {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .screenshot-track {
    width: max-content;
    grid-template-columns: repeat(8, 230px);
  }

  .screenshots-section .section-shell {
    width: min(100% - 40px, 1160px);
    overflow: visible;
  }

  .screenshot-track {
    width: calc(100vw - 20px);
    padding: 0 26px 22px 0;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
  }

  .screenshot-card {
    scroll-snap-align: start;
  }

  .scroll-hint {
    display: block;
  }
}

@media (max-width: 860px) {
  .site-nav {
    display: none;
  }

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

  .header-download {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 62px;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
  }

  .hero-art {
    min-height: 670px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
  }

  .trust-inner p,
  .trust-inner p:first-child,
  .trust-inner p:last-child {
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px dashed rgba(35, 48, 71, 0.35);
  }

  .trust-inner p:last-child {
    border-bottom: 0;
  }

  .feature-spotlight {
    grid-template-columns: minmax(0, 1fr);
  }

  .feature-spotlight > *,
  .privacy-card > * {
    min-width: 0;
  }

  .feature-batch .batch-demo {
    order: 2;
  }

  .feature-batch .feature-copy {
    order: 1;
  }

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

  .mini-card {
    grid-template-columns: minmax(0, 1fr) minmax(130px, 0.45fr);
  }

  .privacy-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .privacy-visual {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  .section-shell,
  .header-inner {
    width: min(100% - 28px, 1160px);
  }

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

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

  .brand span {
    font-size: 16px;
  }

  .header-download {
    padding: 8px 11px;
    font-size: 11px;
  }

  .language-switcher a {
    width: 25px;
  }

  .hero {
    padding-block: 48px 60px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .store-actions {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .store-actions .button {
    flex: 1 1 170px;
  }

  .button-primary {
    text-align: center;
  }

  .hero-pills {
    gap: 6px;
  }

  .hero-pills li {
    font-size: 10px;
  }

  .hero-art {
    min-height: 610px;
  }

  .hero-screenshot-slot {
    width: min(292px, 84vw);
    box-shadow: 11px 14px 0 rgba(35, 48, 71, 0.13), 0 22px 58px rgba(35, 48, 71, 0.18);
  }

  .phone-mockup {
    width: min(305px, 88vw);
    box-shadow: 11px 14px 0 rgba(35, 48, 71, 0.13), 0 22px 58px rgba(35, 48, 71, 0.18);
  }

  .phone-screen {
    min-height: 565px;
  }

  .note-top {
    top: 72px;
    right: -2px;
  }

  .note-bottom {
    bottom: 48px;
    left: -2px;
  }

  .floating-note {
    padding: 9px 10px;
  }

  .feature-section,
  .screenshots-section {
    padding-block: 84px;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .privacy-copy h2,
  .final-cta h2 {
    font-size: 35px;
  }

  .section-heading > p:last-child {
    font-size: 16px;
  }

  .feature-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 42px;
  }

  .feature-index a {
    min-height: 154px;
  }

  .feature-spotlight {
    min-height: 0;
    padding: 28px 20px 32px;
    border-radius: 12px;
    gap: 24px;
    box-shadow: 4px 4px 0 rgba(35, 48, 71, 0.14);
  }

  .feature-copy h3,
  .mini-card h3 {
    font-size: 31px;
  }

  .quick-demo,
  .calendar-demo {
    padding: 15px;
  }

  .quick-demo-grid {
    gap: 7px;
  }

  .quick-demo-grid > span {
    min-height: 78px;
  }

  .batch-demo {
    min-height: 350px;
  }

  .paper {
    inset-inline: 2%;
  }

  .paper-front {
    padding-inline: 19px;
  }

  .mini-features {
    gap: 18px;
  }

  .mini-card {
    grid-template-columns: 1fr;
    min-height: 310px;
    padding: 28px 22px;
    gap: 24px;
    box-shadow: 4px 4px 0 rgba(35, 48, 71, 0.14);
  }

  .feature-app-preview {
    width: min(165px, 52vw);
  }

  .mini-app-preview {
    width: min(165px, 52vw);
  }

  .privacy-section {
    padding-block: 78px;
  }

  .privacy-card {
    padding: 30px 22px 34px;
    border-radius: 12px;
    box-shadow: 5px 6px 0 rgba(35, 48, 71, 0.13);
  }

  .privacy-visual {
    min-height: 205px;
  }

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

  .privacy-links a {
    text-align: center;
  }

  .final-cta {
    margin-bottom: 78px;
    padding: 52px 20px;
    border-radius: 12px;
    box-shadow: 5px 6px 0 rgba(35, 48, 71, 0.13);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner nav {
    justify-content: flex-start;
  }
}

@media (max-width: 460px) {
  .brand span {
    display: none;
  }

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

  .store-full {
    display: none;
  }

  .store-short {
    display: inline;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
