:root {
  --ink: #0b1720;
  --ink-soft: #172733;
  --paper: #fbfcfa;
  --paper-cool: #f2f7f6;
  --snow: #ffffff;
  --mist: #dce9e7;
  --fjord: #426f83;
  --fjord-deep: #163c50;
  --sky: #9fcbd6;
  --aurora: #9bd8c7;
  --aurora-blue: #a9c9ef;
  --aurora-pink: #e5bdd2;
  --cabin: #cb5d52;
  --cabin-dark: #aa4038;
  --text: #14222b;
  --muted: #66757d;
  --line: rgba(17, 39, 51, 0.13);
  --line-light: rgba(255, 255, 255, 0.17);
  --shadow: 0 30px 90px rgba(13, 36, 47, 0.16);
  --shadow-soft: 0 18px 45px rgba(13, 36, 47, 0.1);
  --radius: 22px;
  --shell: min(1180px, calc(100vw - 48px));
  --display: "Avenir Next", Avenir, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: -10;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(19, 46, 59, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(19, 46, 59, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  pointer-events: none;
}

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

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

.hero-actions-centered {
  justify-content: center;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.site-header.is-scrolled {
  position: fixed;
  border-bottom-color: var(--line);
  background: rgba(251, 252, 250, 0.9);
  box-shadow: 0 10px 40px rgba(13, 36, 47, 0.06);
  backdrop-filter: blur(20px) saturate(145%);
  -webkit-backdrop-filter: blur(20px) saturate(145%);
}

.nav {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--display);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  position: relative;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

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

.brand-mark::before {
  top: 7px;
  left: 6px;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 7px 0 currentColor;
}

.brand-mark::after {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(11, 23, 32, 0.16);
  transition: border-color 180ms ease;
}

.nav-cta:hover,
.button:hover {
  border-color: var(--cabin);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink);
  background: #fff;
}

.button-light:hover {
  color: var(--ink);
  background: #fff;
}

.button-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

.button-ghost:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.54);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"]::before {
  transform: translateY(5.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"]::after {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 160px 0 80px;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(229, 189, 210, 0.85), transparent 25%),
    radial-gradient(circle at 93% 35%, rgba(155, 216, 199, 0.88), transparent 28%),
    radial-gradient(circle at 58% -5%, rgba(169, 201, 239, 0.9), transparent 31%),
    linear-gradient(135deg, #f9fcfb 0%, #edf6f4 49%, #d9eef2 100%);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 78px;
  bottom: 0;
  left: calc(50% - 590px);
  width: 1px;
  background: rgba(18, 49, 62, 0.13);
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -10%;
  bottom: -105px;
  width: 68%;
  height: 250px;
  background: var(--paper);
  content: "";
  transform: skewY(-7deg);
  transform-origin: left bottom;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--fjord-deep);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--cabin);
  content: "";
}

.hero h1,
.page-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.3vw, 104px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
}

.hero h1 .gradient-word {
  width: fit-content;
  color: transparent;
  background: linear-gradient(92deg, var(--fjord-deep), #557f91 43%, var(--cabin) 105%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lede {
  max-width: 650px;
  margin: 30px 0 0;
  color: #40545e;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

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

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 24px;
  margin-top: 22px;
  color: #516770;
  font-size: 13px;
  font-weight: 600;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-meta span::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cabin);
  content: "";
}

.meta-link {
  color: inherit;
  text-decoration: none;
}

.meta-link:hover,
.meta-link:focus-visible {
  color: var(--cabin-dark);
  text-decoration: none;
}

.product-stage {
  position: relative;
  width: min(1050px, 91vw);
  margin: 76px 0 0 auto;
}

.product-glow {
  position: absolute;
  z-index: -1;
  inset: 4% -6% -10% 20%;
  border-radius: 48%;
  background: linear-gradient(120deg, rgba(151, 213, 198, 0.74), rgba(159, 193, 236, 0.64), rgba(228, 184, 205, 0.58));
  filter: blur(46px);
  opacity: 0.72;
}

.app-window {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 530px;
  grid-template-columns: 180px 250px 1fr;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(252, 253, 252, 0.91);
  box-shadow: 0 45px 110px rgba(21, 56, 70, 0.24), 0 5px 30px rgba(21, 56, 70, 0.1);
  backdrop-filter: blur(26px);
  -webkit-backdrop-filter: blur(26px);
}

.app-chrome {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(17, 39, 51, 0.08);
  background: rgba(255, 255, 255, 0.65);
}

.app-chrome i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d2d8d9;
}

.app-chrome i:first-child {
  background: var(--cabin);
}

.mock-sidebar,
.mock-list,
.mock-editor {
  padding-top: 42px;
}

.mock-sidebar {
  color: #edf3f3;
  background: linear-gradient(168deg, #102c3a, #0b202c 70%, #172b33);
}

.mock-list {
  border-right: 1px solid rgba(17, 39, 51, 0.08);
  background: rgba(239, 246, 245, 0.94);
}

.mock-editor {
  background: rgba(255, 255, 255, 0.82);
}

.mock-pane-head {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.mock-sidebar .mock-pane-head {
  color: #fff;
}

.mock-plus {
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 22px;
}

.mock-nav {
  padding: 15px 10px;
}

.mock-nav div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 3px 0;
  padding: 8px 10px;
  border-radius: 8px;
  color: rgba(237, 243, 243, 0.66);
  font-size: 11px;
}

.mock-nav .active {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
}

.mock-nav small {
  font-size: 9px;
}

.mock-label {
  margin: 18px 10px 7px;
  color: rgba(237, 243, 243, 0.42);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.mock-note-row {
  position: relative;
  margin: 0;
  padding: 14px 16px 13px 19px;
  border-bottom: 1px solid rgba(17, 39, 51, 0.07);
}

.mock-note-row.active {
  background: rgba(255, 255, 255, 0.95);
}

.mock-note-row.active::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 7px;
  width: 3px;
  border-radius: 4px;
  background: var(--cabin);
  content: "";
}

.mock-note-row strong,
.mock-note-row span,
.mock-note-row small {
  display: block;
}

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

.mock-note-row span {
  overflow: hidden;
  margin-top: 4px;
  color: #65757d;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-note-row small {
  margin-top: 6px;
  color: #90a0a6;
  font-size: 8px;
}

.editor-toolbar {
  display: flex;
  height: 52px;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(17, 39, 51, 0.08);
}

.editor-toolbar span {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(17, 39, 51, 0.08);
  border-radius: 8px;
  color: #6b7b82;
  font-size: 9px;
  line-height: 24px;
  text-align: center;
}

.editor-page {
  max-width: 500px;
  padding: 48px 40px 70px 54px;
}

.editor-page h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 31px;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.editor-page p {
  margin: 0 0 15px;
  color: #50616a;
  font-family: Georgia, serif;
  font-size: 12px;
  line-height: 1.75;
}

.editor-page blockquote {
  margin: 22px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--cabin);
  color: #365260;
  background: #f1f6f5;
  font-family: Georgia, serif;
  font-size: 11px;
}

.floating-version {
  position: absolute;
  z-index: 6;
  right: -36px;
  bottom: 52px;
  width: 190px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 16px;
  background: rgba(251, 253, 252, 0.91);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.floating-version small,
.floating-version strong {
  display: block;
}

.floating-version small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-version strong {
  margin-top: 4px;
  font-size: 12px;
}

.floating-version .version-line {
  position: relative;
  height: 3px;
  margin-top: 13px;
  border-radius: 9px;
  background: #dce7e5;
}

.floating-version .version-line::after {
  position: absolute;
  top: -3px;
  left: 63%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cabin);
  content: "";
}

.proof-strip {
  position: relative;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.proof {
  min-height: 145px;
  padding: 31px 28px;
  border-left: 1px solid var(--line);
}

.proof:last-child {
  border-right: 1px solid var(--line);
}

.proof span,
.proof strong {
  display: block;
}

.proof span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.section {
  padding: 126px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 58px;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.2vw, 72px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--snow);
  box-shadow: 0 28px 70px rgba(13, 36, 47, 0.07);
}

.feature-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-card.visual-card {
  min-height: 380px;
  padding-bottom: 140px;
}

.feature-card:nth-child(3),
.feature-card:nth-child(6) {
  border-right: 0;
}

.feature-card:nth-child(n + 4) {
  border-bottom: 0;
}

.feature-card.large {
  grid-row: span 2;
  min-height: 660px;
  background:
    radial-gradient(circle at 85% 8%, rgba(155, 216, 199, 0.42), transparent 32%),
    linear-gradient(165deg, #f7fbfa, #eaf3f2);
}

.card-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--fjord-deep);
  background: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.feature-card h3 {
  max-width: 330px;
  margin: 65px 0 13px;
  font-family: var(--display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.12;
}

.feature-card.large h3 {
  margin-top: 42px;
  font-size: 41px;
}

.feature-card p {
  max-width: 380px;
  margin: 0;
  color: var(--muted);
}

.feature-art {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  overflow: hidden;
  height: 215px;
  border: 1px solid rgba(17, 39, 51, 0.09);
  border-radius: 17px;
  background: #fff;
}

.feature-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-cloud {
  position: absolute;
  right: 25px;
  bottom: 28px;
  left: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-cloud span {
  padding: 8px 11px;
  border: 1px solid rgba(17, 39, 51, 0.1);
  border-radius: 999px;
  color: var(--fjord-deep);
  background: var(--paper-cool);
  font-size: 10px;
  font-weight: 700;
}

.file-tree {
  position: absolute;
  right: 25px;
  bottom: 28px;
  left: 25px;
  color: #526771;
  font-family: ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size: 10px;
  line-height: 2;
}

.file-tree span {
  display: block;
  padding-left: 16px;
}

.file-tree span:first-child {
  padding-left: 0;
  color: var(--cabin-dark);
  font-weight: 700;
}

.midnight {
  position: relative;
  overflow: hidden;
  color: #f4f7f6;
  background: var(--ink);
}

.midnight::before {
  position: absolute;
  top: -25%;
  right: -15%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(83, 150, 163, 0.35), transparent 66%);
  content: "";
}

.midnight .eyebrow {
  color: var(--aurora);
}

.midnight .section-heading p,
.midnight .muted {
  color: #9fb0b8;
}

.storage-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.storage-copy h2,
.story-copy h2,
.ai-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(45px, 5.6vw, 76px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1;
}

.storage-copy > p,
.story-copy > p,
.ai-copy > p {
  max-width: 540px;
  margin: 25px 0 0;
  color: #aab9c0;
  font-size: 18px;
  line-height: 1.65;
}

.storage-points {
  display: grid;
  margin-top: 42px;
  gap: 1px;
  background: var(--line-light);
}

.storage-point {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 17px;
  padding: 19px 0;
  background: var(--ink);
}

.storage-point i {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: var(--aurora);
  font-style: normal;
  font-size: 10px;
}

.storage-point strong,
.storage-point span {
  display: block;
}

.storage-point strong {
  color: #fff;
  font-size: 15px;
}

.storage-point span {
  margin-top: 4px;
  color: #8fa2ab;
  font-size: 13px;
}

.file-map {
  position: relative;
  min-height: 620px;
}

.file-card {
  position: absolute;
  width: min(420px, 85%);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.file-card:nth-child(1) {
  top: 15px;
  left: 3%;
}

.file-card:nth-child(2) {
  z-index: 2;
  top: 190px;
  right: 0;
  background: rgba(255, 255, 255, 0.095);
}

.file-card:nth-child(3) {
  z-index: 3;
  bottom: 15px;
  left: 13%;
}

.file-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-light);
}

.file-card-head strong {
  font-size: 13px;
}

.file-card-head span {
  color: #7f949f;
  font-family: ui-monospace, monospace;
  font-size: 9px;
}

.code-lines {
  margin-top: 18px;
}

.code-lines i {
  display: block;
  height: 7px;
  margin: 9px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.code-lines i:nth-child(2) {
  width: 77%;
  background: rgba(155, 216, 199, 0.38);
}

.code-lines i:nth-child(3) {
  width: 92%;
}

.code-lines i:nth-child(4) {
  width: 54%;
  background: rgba(203, 93, 82, 0.42);
}

.code-lines i:nth-child(5) {
  width: 69%;
}

.capture-layout,
.story-layout,
.ai-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 85px;
  align-items: center;
}

.illustration-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.illustration-frame::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 7px;
  background: var(--cabin);
  content: "";
}

.illustration-frame img {
  width: 100%;
  aspect-ratio: 1.56;
  object-fit: cover;
}

.capture-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(43px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.capture-copy > p {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 35px;
}

.mini-card {
  min-height: 140px;
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.68);
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card strong {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: -0.025em;
}

.mini-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.versions {
  background:
    linear-gradient(to right, transparent calc(50% - 590px), var(--line) calc(50% - 590px), var(--line) calc(50% - 589px), transparent calc(50% - 589px)),
    var(--paper-cool);
}

.story-copy h2,
.story-copy > p {
  color: var(--text);
}

.timeline {
  position: relative;
  padding: 10px 0 10px 30px;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  width: 1px;
  background: #bfd0d0;
  content: "";
}

.time-card {
  position: relative;
  margin: 0 0 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(18, 50, 62, 0.06);
}

.time-card::before {
  position: absolute;
  top: 28px;
  left: -30px;
  width: 13px;
  height: 13px;
  border: 4px solid var(--paper-cool);
  border-radius: 50%;
  background: var(--fjord);
  content: "";
}

.time-card.active::before {
  background: var(--cabin);
}

.time-card small,
.time-card strong,
.time-card span {
  display: block;
}

.time-card small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.time-card strong {
  margin-top: 5px;
  font-size: 15px;
}

.time-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.nordic {
  padding-bottom: 0;
}

.nordic-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}

.nordic-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border-radius: 25px;
}

.nordic-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nordic-panel::after {
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, rgba(11, 23, 32, 0.82));
  content: "";
}

.nordic-caption {
  position: absolute;
  z-index: 2;
  right: 34px;
  bottom: 32px;
  left: 34px;
  color: #fff;
}

.nordic-caption small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nordic-caption h3 {
  max-width: 450px;
  margin: 8px 0 0;
  font-family: var(--display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.ai-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 120%, rgba(155, 216, 199, 0.78), transparent 37%),
    radial-gradient(circle at 92% 5%, rgba(229, 189, 210, 0.72), transparent 30%),
    radial-gradient(circle at 62% 35%, rgba(169, 201, 239, 0.7), transparent 43%),
    #eef6f4;
}

.ai-section::after {
  position: absolute;
  top: 0;
  right: 14%;
  width: 1px;
  height: 100%;
  background: rgba(21, 57, 72, 0.12);
  content: "";
}

.ai-copy h2,
.ai-copy > p {
  color: var(--text);
}

.ai-surface {
  position: relative;
  z-index: 2;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.67);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.ai-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.ai-status strong {
  font-family: var(--display);
  font-size: 18px;
}

.off-pill {
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--fjord-deep);
  background: #dcebe8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.ai-actions span {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #50636d;
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.ai-note {
  margin-top: 20px;
  padding: 18px;
  border-left: 3px solid var(--cabin);
  color: #4b626c;
  background: rgba(242, 247, 246, 0.76);
  font-size: 13px;
}

.help-ribbon {
  color: #fff;
  background: var(--fjord-deep);
}

.help-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  padding: 82px 0 100px;
}

.help-layout h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5.6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.help-layout p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #b5c7cd;
  font-size: 17px;
}

.help-orbit {
  display: grid;
  width: 170px;
  height: 170px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.help-orbit::before {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--aurora);
  content: "?";
  font-family: Georgia, serif;
  font-size: 46px;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: var(--paper);
}

.download-panel {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  padding: 78px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% -10%, rgba(156, 213, 199, 0.32), transparent 35%),
    radial-gradient(circle at 75% 105%, rgba(203, 93, 82, 0.25), transparent 35%),
    var(--ink);
}

.download-panel::after {
  position: absolute;
  top: -25%;
  right: -3%;
  width: 470px;
  height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.025),
    0 0 0 140px rgba(255, 255, 255, 0.02);
  content: "";
}

.download-panel h2 {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.download-panel p {
  position: relative;
  z-index: 2;
  max-width: 590px;
  margin: 25px 0 34px;
  color: #a9bbc3;
  font-size: 18px;
}

.download-panel .button {
  position: relative;
  z-index: 2;
}

.download-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin-top: 20px;
  color: #8fa5ae;
  font-size: 12px;
}

.site-footer {
  padding: 58px 0 42px;
  border-top: 1px solid var(--line);
  background: var(--paper-cool);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 45px;
}

.footer-brand p {
  max-width: 330px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column strong {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-column a:hover {
  color: var(--cabin-dark);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #89969c;
  font-size: 12px;
}

.journal-feature {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(155, 216, 199, 0.23), transparent 31%),
    linear-gradient(180deg, #edf5f3 0%, #f7faf8 100%);
}

.journal-feature::before {
  position: absolute;
  top: 48px;
  right: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(22, 60, 80, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(22, 60, 80, 0.025),
    0 0 0 104px rgba(22, 60, 80, 0.016);
  content: "";
}

.journal-feature-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.03fr) minmax(370px, 0.97fr);
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--snow);
  box-shadow: 0 30px 80px rgba(20, 53, 63, 0.1);
}

.journal-feature-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(42px, 6.6vw, 84px);
}

.journal-feature-copy h2 {
  max-width: 600px;
  margin: 15px 0 24px;
  font-family: var(--display);
  font-size: clamp(50px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.journal-feature-copy p {
  max-width: 600px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.journal-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(22, 60, 80, 0.32);
  color: var(--fjord-deep);
  font-size: 14px;
  font-weight: 750;
}

.journal-link:hover,
.journal-link:focus-visible {
  border-bottom-color: var(--cabin);
  color: var(--cabin-dark);
}

.journal-feature-art {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 520px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: clamp(34px, 4.5vw, 58px);
  color: white;
  isolation: isolate;
}

.journal-feature-art::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 23, 32, 0.08) 15%, rgba(11, 23, 32, 0.86) 100%),
    linear-gradient(90deg, rgba(11, 23, 32, 0.14), transparent);
  content: "";
}

.journal-feature-art img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-feature-art blockquote {
  max-width: 490px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 3.2vw, 45px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

.journal-feature-art span {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Skriv Journal */
.journal-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;
  background:
    radial-gradient(circle at 13% 6%, rgba(155, 216, 199, 0.38), transparent 29%),
    radial-gradient(circle at 73% -5%, rgba(169, 201, 239, 0.48), transparent 34%),
    linear-gradient(180deg, #f7fbfa, #eaf2ef);
}

.journal-hero::before {
  position: absolute;
  top: 72px;
  left: -105px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(22, 60, 80, 0.11);
  border-radius: 50%;
  box-shadow:
    0 0 0 46px rgba(22, 60, 80, 0.026),
    0 0 0 92px rgba(22, 60, 80, 0.018);
  content: "";
}

.journal-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, 0.92fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
}

.journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--fjord-deep);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journal-meta span:not(:last-of-type)::after {
  margin-left: 10px;
  color: rgba(22, 60, 80, 0.35);
  content: "·";
}

.journal-hero h1 {
  max-width: 770px;
  margin: 30px 0 25px;
  font-family: var(--display);
  font-size: clamp(72px, 9.2vw, 118px);
  font-weight: 600;
  letter-spacing: -0.078em;
  line-height: 0.87;
}

.journal-deck {
  max-width: 680px;
  margin: 0;
  color: #50656e;
  font-family: var(--display);
  font-size: clamp(22px, 2.6vw, 31px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.journal-hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  margin: 0;
  border: 1px solid rgba(18, 49, 62, 0.16);
  border-radius: 180px 180px 28px 28px;
  background: var(--mist);
  box-shadow: 0 35px 80px rgba(18, 49, 62, 0.16);
}

.journal-hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.journal-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 23, 32, 0.68) 100%);
  content: "";
  pointer-events: none;
}

.journal-hero-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 25px;
  left: 28px;
  color: white;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-article {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: clamp(55px, 8vw, 120px);
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 130px;
}

.journal-rail {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.journal-rail-number {
  display: grid;
  width: 48px;
  height: 48px;
  margin: -1px 0 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--cabin-dark);
  background: var(--paper-cool);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journal-rail strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -0.025em;
}

.journal-rail p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.journal-copy {
  min-width: 0;
}

.journal-copy p {
  margin: 0 0 28px;
  color: #344750;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.84;
}

.journal-copy > p:first-child::first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--cabin-dark);
  font-family: var(--display);
  font-size: 76px;
  font-weight: 650;
  line-height: 0.75;
}

.journal-copy h2 {
  max-width: 700px;
  margin: 80px 0 26px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(38px, 5vw, 57px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1;
}

.journal-copy .journal-pullquote {
  position: relative;
  margin: 58px 0;
  padding: 48px 50px 50px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 92% -10%, rgba(155, 216, 199, 0.28), transparent 40%),
    var(--ink);
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 55px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.journal-copy .journal-pullquote::before {
  display: block;
  margin-bottom: 22px;
  color: var(--aurora);
  content: "—";
  font-size: 20px;
  letter-spacing: 0;
}

.journal-copy .journal-closing {
  margin-top: 70px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.journal-next {
  padding: 0 0 110px;
}

.journal-next-card {
  display: flex;
  min-height: 290px;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  padding: clamp(40px, 6vw, 76px);
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 10% 120%, rgba(155, 216, 199, 0.26), transparent 40%),
    radial-gradient(circle at 95% -5%, rgba(203, 93, 82, 0.2), transparent 35%),
    var(--ink);
}

.journal-next-card .eyebrow {
  color: var(--aurora);
}

.journal-next-card h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: white;
  font-family: var(--display);
  font-size: clamp(39px, 5.3vw, 68px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 1;
}

.journal-next-card .button {
  flex: 0 0 auto;
}

.privacy-hero h1 {
  max-width: 970px;
}

.privacy-section {
  padding: 110px 0 130px;
  background:
    radial-gradient(circle at 10% 12%, rgba(121, 158, 149, 0.14), transparent 28%),
    var(--paper);
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.7fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
}

.privacy-summary {
  position: sticky;
  top: 110px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 22px 60px rgba(24, 52, 60, 0.07);
}

.privacy-summary strong {
  display: block;
  color: var(--cabin-dark);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.privacy-summary p {
  margin: 20px 0 26px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(22px, 2.4vw, 31px);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.privacy-summary span {
  color: var(--muted);
  font-size: 12px;
}

.privacy-content {
  min-width: 0;
}

.privacy-block {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 26px;
  padding: 0 0 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid var(--line);
}

.privacy-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid rgba(42, 79, 84, 0.18);
  border-radius: 16px;
  background: rgba(219, 232, 228, 0.58);
  color: var(--cabin-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.privacy-block h2,
.privacy-contact h2 {
  margin: 0 0 18px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(28px, 3.4vw, 46px);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.privacy-block p {
  max-width: 780px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.privacy-block p:last-child {
  margin-bottom: 0;
}

.privacy-block code {
  padding: 0.12em 0.38em;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--cabin-dark);
  font-size: 0.88em;
}

.privacy-block a {
  color: var(--fjord);
  text-decoration: underline;
  text-decoration-color: rgba(54, 110, 117, 0.35);
  text-underline-offset: 3px;
}

.privacy-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 38px;
  border-radius: 26px;
  background: var(--ink);
  color: white;
}

.privacy-contact h2 {
  margin: 7px 0 4px;
  color: white;
}

.privacy-contact p {
  margin: 0;
  color: #b9cbd0;
}

.privacy-contact .button {
  flex: 0 0 auto;
  background: white;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

/* Secondary pages */
.subpage .site-header {
  position: relative;
  color: var(--text);
  border-bottom-color: var(--line);
  background: rgba(251, 252, 250, 0.94);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 86% 5%, rgba(155, 216, 199, 0.5), transparent 29%),
    radial-gradient(circle at 58% 0%, rgba(169, 201, 239, 0.55), transparent 30%),
    linear-gradient(180deg, #f7fbfa, #eef5f3);
}

.page-hero::after {
  position: absolute;
  right: 8%;
  bottom: -210px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(26, 73, 92, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(26, 73, 92, 0.025),
    0 0 0 120px rgba(26, 73, 92, 0.018);
  content: "";
}

.page-hero h1 {
  max-width: 950px;
  font-size: clamp(58px, 7vw, 94px);
}

.page-hero p {
  max-width: 670px;
  margin: 26px 0 0;
  color: #53666f;
  font-size: 20px;
  line-height: 1.6;
}

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

.clipper-install {
  padding: 110px 0;
}

.bookmarklet-stage {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 60px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 0 100%, rgba(155, 216, 199, 0.72), transparent 39%),
    radial-gradient(circle at 100% 0, rgba(229, 189, 210, 0.6), transparent 36%),
    var(--ink);
  box-shadow: var(--shadow);
}

.bookmarklet-inner {
  max-width: 620px;
  text-align: center;
}

.bookmarklet-inner p {
  margin: 0 0 25px;
  color: #adc0c7;
}

.bookmarklet {
  display: inline-flex;
  min-height: 66px;
  align-items: center;
  gap: 12px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  cursor: grab;
}

.bookmarklet::before {
  color: var(--cabin);
  content: "✦";
}

.bookmarklet:active {
  cursor: grabbing;
}

.copy-status {
  min-height: 24px;
  margin-top: 20px;
  color: var(--aurora);
  font-size: 12px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 70px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--line);
}

.step {
  min-height: 270px;
  padding: 31px;
  background: #fff;
}

.step b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: var(--fjord-deep);
  font-size: 12px;
}

.step h2 {
  margin: 58px 0 11px;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.options-section {
  padding: 110px 0;
  background: var(--paper-cool);
}

.option-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
}

.option-card {
  min-height: 245px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
}

.option-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 99px;
  background: var(--fjord-deep);
}

.option-toggle::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  content: "";
}

.option-card h3 {
  margin: 55px 0 9px;
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: -0.035em;
}

.option-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.changelog-section {
  padding: 110px 0 130px;
}

.release-list {
  border-top: 1px solid var(--line);
}

.release {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 45px;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.release-version {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.release-version small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.release-content h2 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.release-content > p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.release-content ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 30px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.release-content li {
  position: relative;
  padding-left: 18px;
  color: #40535d;
  font-size: 14px;
}

.release-content li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cabin);
  content: "";
}

.release.featured {
  margin: 35px 0;
  padding: 45px;
  border: 0;
  border-radius: 24px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 0, rgba(155, 216, 199, 0.3), transparent 36%),
    var(--ink);
}

.release.featured .release-version small,
.release.featured .release-content > p,
.release.featured .release-content li {
  color: #aabcc4;
}

.release.featured .release-content li::before {
  background: var(--aurora);
}

@media (max-width: 980px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .nav-links {
    gap: 17px;
  }

  .hero {
    min-height: auto;
    padding-top: 145px;
  }

  .hero::before {
    left: 18px;
  }

  .product-stage {
    width: calc(100vw - 18px);
  }

  .app-window {
    min-height: 470px;
    grid-template-columns: 145px 215px 1fr;
  }

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

  .proof:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .proof:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-heading p {
    max-width: 620px;
  }

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

  .feature-card,
  .feature-card:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .feature-card:nth-child(even) {
    border-right: 0;
  }

  .feature-card:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .feature-card.large {
    grid-column: span 2;
    grid-row: auto;
    min-height: 600px;
  }

  .storage-layout,
  .capture-layout,
  .story-layout,
  .ai-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .file-map {
    min-height: 600px;
  }

  .nordic-panel {
    min-height: 430px;
  }

  .help-layout {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 75px 0 96px;
  }

  .download-panel {
    padding: 62px 48px;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(3, 0.65fr);
    gap: 28px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .privacy-summary {
    position: static;
  }

  .journal-feature-card,
  .journal-hero-grid {
    grid-template-columns: 1fr;
  }

  .journal-feature-art {
    min-height: 440px;
  }

  .journal-hero-visual {
    width: min(100%, 620px);
    min-height: 460px;
  }

  .journal-hero-visual img {
    height: 460px;
  }

  .journal-article {
    grid-template-columns: minmax(0, 760px);
    gap: 54px;
  }

  .journal-rail {
    position: static;
    max-width: 520px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px);
    --radius: 18px;
  }

  body::before {
    background-size: 64px 64px;
  }

  .site-header {
    position: absolute;
  }

  .nav {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 68px;
    right: 16px;
    left: 16px;
    display: none;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: rgba(251, 252, 250, 0.97);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a:not(.nav-cta) {
    padding: 10px 9px;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .hero {
    padding: 122px 0 55px;
  }

  .hero::after {
    bottom: -50px;
    height: 120px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(49px, 15vw, 72px);
  }

  .hero-lede {
    font-size: 18px;
  }

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

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

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

  .product-stage {
    width: calc(100vw - 16px);
    margin-top: 54px;
  }

  .app-window {
    min-height: 390px;
    grid-template-columns: 92px 116px 1fr;
    border-radius: 16px;
    transform: none;
  }

  .app-chrome {
    height: 34px;
  }

  .mock-sidebar,
  .mock-list,
  .mock-editor {
    padding-top: 34px;
  }

  .mock-pane-head,
  .editor-toolbar {
    height: 42px;
    padding: 0 8px;
    font-size: 7px;
  }

  .mock-nav {
    padding: 8px 4px;
  }

  .mock-nav div {
    padding: 6px 4px;
    font-size: 6px;
  }

  .mock-label {
    margin: 10px 5px 5px;
    font-size: 5px;
  }

  .mock-note-row {
    padding: 8px 7px 8px 11px;
  }

  .mock-note-row strong {
    font-size: 7px;
  }

  .mock-note-row span,
  .mock-note-row small {
    font-size: 5px;
  }

  .editor-toolbar span {
    width: 18px;
    height: 18px;
    font-size: 6px;
    line-height: 16px;
  }

  .editor-page {
    padding: 29px 14px 30px 19px;
  }

  .editor-page h2 {
    margin-bottom: 10px;
    font-size: 17px;
  }

  .editor-page p,
  .editor-page blockquote {
    font-size: 7px;
  }

  .editor-page blockquote {
    margin: 11px 0;
    padding: 7px 9px;
  }

  .floating-version {
    right: 8px;
    bottom: -37px;
    width: 145px;
    padding: 11px;
  }

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

  .proof,
  .proof:nth-child(2),
  .proof:last-child {
    min-height: 110px;
    padding: 24px 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof:last-child {
    border-bottom: 0;
  }

  .proof strong {
    font-size: 21px;
  }

  .section {
    padding: 88px 0;
  }

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

  .section-heading h2 {
    font-size: 43px;
  }

  .feature-grid {
    display: block;
  }

  .feature-card,
  .feature-card:nth-child(n) {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .feature-card.large {
    min-height: 660px;
  }

  .feature-card h3 {
    margin-top: 45px;
  }

  .feature-card.large h3 {
    font-size: 34px;
  }

  .storage-copy h2,
  .story-copy h2,
  .ai-copy h2,
  .capture-copy h2 {
    font-size: 43px;
  }

  .file-map {
    min-height: 510px;
  }

  .file-card {
    width: 89%;
    padding: 19px;
  }

  .file-card:nth-child(1) {
    left: 0;
  }

  .file-card:nth-child(2) {
    top: 165px;
  }

  .file-card:nth-child(3) {
    bottom: 5px;
    left: 5%;
  }

  .mini-grid,
  .ai-actions {
    grid-template-columns: 1fr;
  }

  .nordic-gallery {
    grid-template-columns: 1fr;
  }

  .nordic-panel {
    min-height: 330px;
  }

  .nordic-caption {
    right: 23px;
    bottom: 22px;
    left: 23px;
  }

  .help-orbit {
    width: 130px;
    height: 130px;
  }

  .download-section {
    padding: 80px 0;
  }

  .download-panel {
    min-height: 570px;
    padding: 46px 28px;
  }

  .download-panel h2 {
    font-size: 48px;
  }

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

  .footer-brand {
    grid-column: span 2;
    margin-bottom: 10px;
  }

  .footer-bottom {
    display: block;
  }

  .footer-bottom span:last-child {
    display: block;
    margin-top: 8px;
  }

  .page-hero {
    padding: 80px 0 90px;
  }

  .page-hero p {
    font-size: 17px;
  }

  .bookmarklet-stage {
    min-height: 310px;
    padding: 38px 20px;
  }

  .steps,
  .option-list {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: 220px;
  }

  .step h2 {
    margin-top: 40px;
  }

  .release,
  .release.featured {
    display: block;
    margin: 0;
    padding: 38px 0;
    border-radius: 0;
  }

  .release.featured {
    margin: 22px 0;
    padding: 30px 24px;
    border-radius: 19px;
  }

  .release-version {
    margin-bottom: 24px;
  }

  .release-content h2 {
    font-size: 29px;
  }

  .release-content ul {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    padding: 76px 0 90px;
  }

  .privacy-summary {
    padding: 25px;
  }

  .privacy-block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .privacy-block p {
    font-size: 16px;
  }

  .privacy-contact {
    display: block;
    padding: 30px 24px;
  }

  .privacy-contact .button {
    width: 100%;
    margin-top: 24px;
  }

  .journal-feature-card {
    min-height: 0;
    border-radius: 22px;
  }

  .journal-feature-copy {
    padding: 38px 26px 42px;
  }

  .journal-feature-copy h2 {
    font-size: 49px;
  }

  .journal-feature-copy p {
    font-size: 16px;
  }

  .journal-feature-art {
    min-height: 390px;
    padding: 29px 25px;
  }

  .journal-feature-art blockquote {
    font-size: 32px;
  }

  .journal-hero {
    padding: 74px 0 82px;
  }

  .journal-hero-grid {
    gap: 50px;
  }

  .journal-meta {
    gap: 7px;
    font-size: 9px;
  }

  .journal-meta span:not(:last-of-type)::after {
    margin-left: 7px;
  }

  .journal-hero h1 {
    margin-top: 23px;
    font-size: clamp(60px, 19vw, 78px);
    line-height: 0.91;
  }

  .journal-deck {
    font-size: 21px;
  }

  .journal-hero-visual {
    min-height: 390px;
    border-radius: 120px 120px 22px 22px;
  }

  .journal-hero-visual img {
    height: 390px;
  }

  .journal-article {
    gap: 44px;
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .journal-copy p {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.78;
  }

  .journal-copy > p:first-child::first-letter {
    float: none;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
  }

  .journal-copy h2 {
    margin-top: 62px;
    font-size: 39px;
  }

  .journal-copy .journal-pullquote {
    margin: 45px 0;
    padding: 36px 27px 38px;
    font-size: 37px;
  }

  .journal-copy .journal-closing {
    margin-top: 55px;
    font-size: 42px;
  }

  .journal-next {
    padding-bottom: 80px;
  }

  .journal-next-card {
    display: block;
    min-height: 0;
    padding: 38px 27px;
    border-radius: 22px;
  }

  .journal-next-card h2 {
    font-size: 43px;
  }

  .journal-next-card .button {
    width: 100%;
    margin-top: 30px;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
