@font-face {
  font-family: "DM Sans";
  src: url("assets/fonts/dm-sans-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dm-serif-display-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "DM Serif Display";
  src: url("assets/fonts/dm-serif-display-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #f2f0e9;
  --paper: #faf9f5;
  --paper-2: #f7f5ef;
  --ink: #181817;
  --ink-soft: #373733;
  --muted: #74736d;
  --line: rgba(24, 24, 23, 0.13);
  --line-strong: rgba(24, 24, 23, 0.22);
  --blue: #4a56ff;
  --blue-deep: #3540e8;
  --lilac: #c9c1ff;
  --mint: #b7f3d5;
  --lime: #ddff72;
  --coral: #ff9b80;
  --night: #111113;
  --night-2: #18181b;
  --white: #fff;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 24px 70px rgba(34, 34, 30, 0.11);
  --shadow-card: 0 18px 45px rgba(31, 30, 27, 0.09);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  background: var(--bg);
}

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

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--blue);
  color: white;
}

img,
svg {
  display: block;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(74, 86, 255, 0.55);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 11px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

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

.container,
.container-wide {
  width: min(100% - 48px, 1240px);
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 64px, 1400px);
}

.section {
  position: relative;
  padding-block: 150px;
}

.scroll-progress {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
}

/* Shared type and controls */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-index {
  display: grid;
  grid-template-columns: 70px auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 76px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-index span {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  place-items: center;
}

.section-index p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

.section-index p::before {
  width: 46px;
  height: 1px;
  background: var(--line-strong);
  content: "";
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 23px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: color 0.35s ease, background 0.35s ease, border-color 0.35s ease, transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.button::before {
  position: absolute;
  inset: 100% 0 auto;
  height: 100%;
  background: rgba(255, 255, 255, 0.13);
  border-radius: 50% 50% 0 0;
  content: "";
  transition: inset 0.45s var(--ease), border-radius 0.45s var(--ease);
}

.button:hover::before {
  inset: 0;
  border-radius: inherit;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button svg,
.underlined-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  transition: transform 0.35s var(--ease-spring);
}

.button:hover svg {
  transform: translateX(4px);
}

.button-small {
  min-height: 42px;
  gap: 16px;
  padding-inline: 20px;
  font-size: 13px;
}

.button-large {
  min-height: 62px;
  padding-inline: 28px;
  font-size: 15px;
}

.button-primary {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(74, 86, 255, 0.24);
  color: white;
}

.button-primary:hover {
  background: var(--blue-deep);
  box-shadow: 0 16px 36px rgba(74, 86, 255, 0.32);
  transform: translateY(-2px);
}

.button-dark {
  background: var(--ink);
  color: white;
}

.button-dark:hover {
  background: #2a2a28;
  transform: translateY(-2px);
}

.button-light {
  background: white;
  color: var(--ink);
}

.button-outline {
  border-color: var(--line-strong);
  background: transparent;
}

.button-outline::before {
  background: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
  color: white;
}

.button-luminous {
  background: var(--lime);
  color: #14150f;
}

.button-luminous::before {
  background: white;
}

.button-luminous:hover {
  box-shadow: 0 12px 34px rgba(221, 255, 114, 0.2);
  transform: translateY(-2px);
}

.underlined-link {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 600;
}

.underlined-link:hover svg {
  transform: translate(3px, -3px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 800;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 17px;
  transition: padding 0.35s ease;
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 62px;
  padding: 0 12px 0 18px;
  border: 1px solid transparent;
  border-radius: 18px;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}

.site-header.scrolled {
  padding-top: 10px;
}

.site-header.scrolled .nav-shell {
  height: 58px;
  border-color: rgba(24, 24, 23, 0.08);
  background: rgba(250, 249, 245, 0.84);
  box-shadow: 0 12px 32px rgba(25, 25, 22, 0.07);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.brand-mark {
  width: 30px;
  height: 30px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
}

.desktop-nav a,
.text-link {
  position: relative;
  padding-block: 8px;
}

.desktop-nav a::after,
.text-link::after {
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.desktop-nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 24px;
}

.nav-signin {
  font-size: 13px;
  font-weight: 500;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  cursor: pointer;
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.menu-toggle .menu-close {
  display: none;
}

.mobile-menu {
  position: fixed;
  z-index: 1;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 122px 28px 32px;
  background: var(--night);
  color: white;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-14px);
  transition: opacity 0.35s ease, transform 0.5s var(--ease-spring), visibility 0.35s;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 22px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.13);
  font-family: var(--serif);
  font-size: clamp(38px, 12vw, 62px);
  line-height: 1.08;
}

.mobile-menu nav a span {
  color: rgba(255,255,255,0.42);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.mobile-menu-bottom p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}

.mobile-menu-bottom .button {
  width: 100%;
}

.site-header.menu-active .mobile-menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-header.menu-active .nav-shell {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  color: white;
}

.site-header.menu-active .menu-open {
  display: none;
}

.site-header.menu-active .menu-close {
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 960px;
  overflow: hidden;
  padding: 155px 0 40px;
  background:
    radial-gradient(circle at 77% 31%, rgba(193, 184, 255, 0.3), transparent 26%),
    radial-gradient(circle at 87% 61%, rgba(183, 243, 213, 0.25), transparent 27%),
    var(--bg);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(24,24,23,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(24,24,23,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, black 22%, transparent 85%);
  mask-image: linear-gradient(to bottom, transparent 0, black 22%, transparent 85%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: 135px;
  right: -180px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(74,86,255,0.15);
}

.hero-orb-one::before,
.hero-orb-one::after {
  position: absolute;
  border: 1px solid rgba(74,86,255,0.12);
  border-radius: inherit;
  content: "";
}

.hero-orb-one::before { inset: 48px; }
.hero-orb-one::after { inset: 102px; }

.hero-orb-two {
  right: 30%;
  bottom: -360px;
  width: 650px;
  height: 650px;
  background: rgba(221,255,114,0.15);
  filter: blur(80px);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  min-height: 735px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  padding: 38px 0 70px;
}

.announcement {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 42px;
  padding: 6px 12px 6px 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(250,249,245,0.68);
  box-shadow: 0 5px 18px rgba(24,24,23,0.035);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.01em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s ease, transform 0.3s var(--ease-spring);
}

.announcement:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.announcement > svg {
  width: 14px;
  height: 14px;
}

.announcement-dot {
  display: grid;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--lilac);
  color: #3d36a0;
  place-items: center;
}

.announcement-dot svg {
  width: 12px;
  height: 12px;
}

.announcement-rule {
  width: 1px;
  height: 14px;
  background: var(--line);
}

.hero-title {
  max-width: 660px;
  margin: 0;
  font-size: clamp(65px, 6.1vw, 96px);
  font-weight: 400;
  letter-spacing: -0.068em;
  line-height: 0.91;
}

.hero-title em,
.section-heading h2 em,
.security-copy h2 em,
.use-copy h3 em,
.testimonial-section em,
.pricing-heading h2 em,
.faq-intro h2 em,
.final-inner h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.hero-title em {
  color: var(--blue);
}

.hero-lead {
  max-width: 510px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.watch-button {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.watch-icon {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: rgba(250,249,245,0.5);
  place-items: center;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s var(--ease-spring);
}

.watch-icon svg {
  width: 16px;
  height: 16px;
}

.watch-button:hover .watch-icon {
  background: var(--ink);
  color: white;
  transform: scale(1.07);
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 42px;
}

.avatar-stack {
  display: flex;
  padding-left: 8px;
}

.avatar-stack span {
  display: grid;
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: #27272a;
  color: white;
  font-size: 9px;
  font-weight: 600;
  place-items: center;
}

.avatar-stack span:nth-child(1) { background: #35120c; }
.avatar-stack span:nth-child(2) { background: #11164d; }
.avatar-stack span:nth-child(3) { background: #0a2a18; }
.avatar-stack span:nth-child(4) { background: var(--paper); color: var(--ink); }

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.hero-proof strong {
  color: var(--ink-soft);
  font-size: 11.5px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  width: 750px;
  height: 680px;
  margin-left: -15px;
  perspective: 1600px;
}

.visual-halo {
  position: absolute;
  top: 40px;
  left: 85px;
  width: 570px;
  height: 570px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,193,255,0.55), rgba(183,243,213,0.48) 55%, rgba(255,255,255,0.2));
  filter: blur(35px);
  opacity: 0.82;
}

.workspace-window {
  position: absolute;
  z-index: 3;
  top: 61px;
  left: 30px;
  width: 700px;
  height: 515px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 22px;
  background: #fbfbfa;
  box-shadow: 0 38px 80px rgba(31,31,28,0.18), 0 4px 16px rgba(31,31,28,0.08);
  transform: rotateY(-5deg) rotateX(2deg) rotateZ(0.5deg);
  transform-style: preserve-3d;
  transition: transform 0.22s ease-out;
}

.workspace-topbar {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  height: 57px;
  padding-inline: 13px;
  border-bottom: 1px solid #e9e8e4;
  background: rgba(255,255,255,0.94);
}

.workspace-brand svg {
  width: 27px;
  height: 27px;
  color: var(--ink);
}

.workspace-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 250px;
  height: 32px;
  justify-self: center;
  padding: 0 9px;
  border: 1px solid #e4e3df;
  border-radius: 8px;
  background: #f7f7f5;
  color: #66645f;
  font-size: 9px;
  text-align: left;
}

.workspace-search svg {
  width: 13px;
  height: 13px;
}

.workspace-search span { flex: 1; }
.workspace-search kbd {
  padding: 2px 5px;
  border: 1px solid #ddddd9;
  border-radius: 4px;
  background: white;
  color: #66645f;
  font-family: inherit;
  font-size: 7px;
}

.workspace-user {
  display: grid;
  width: 28px;
  height: 28px;
  justify-self: end;
  border-radius: 50%;
  background: #292a30;
  color: white;
  font-size: 8px;
  font-weight: 600;
  place-items: center;
}

.workspace-body {
  display: grid;
  grid-template-columns: 146px 1fr;
  height: calc(100% - 57px);
}

.workspace-sidebar {
  padding: 24px 14px 15px;
  border-right: 1px solid #e9e8e4;
  background: #f5f4f1;
}

.side-item,
.side-space {
  display: flex;
  align-items: center;
  gap: 9px;
  height: 28px;
  margin-bottom: 4px;
  padding-inline: 8px;
  border-radius: 7px;
  color: #696762;
  font-size: 8px;
  font-weight: 500;
}

.side-item svg {
  width: 13px;
  height: 13px;
}

.side-item.active {
  background: white;
  box-shadow: 0 2px 7px rgba(33,33,30,0.04);
  color: #262622;
}

.side-divider {
  height: 1px;
  margin: 14px 5px 14px;
  background: #dfded9;
}

.workspace-sidebar > p {
  margin: 0 0 8px 8px;
  color: #696762;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.side-space i {
  width: 7px;
  height: 7px;
  border-radius: 3px;
}

.dot-lilac { background: #9c91ed; }
.dot-coral { background: #e99178; }

.storage-mini {
  position: absolute;
  bottom: 14px;
  width: 116px;
  padding: 10px;
  border: 1px solid #e4e3df;
  border-radius: 9px;
  background: #fff;
}

.storage-mini-top {
  display: flex;
  justify-content: space-between;
  color: #55544f;
  font-size: 6.5px;
}

.storage-mini-top strong { font-weight: 600; }
.storage-mini-track {
  height: 3px;
  margin: 7px 0 5px;
  overflow: hidden;
  border-radius: 3px;
  background: #ecebe8;
}

.storage-mini-track span {
  display: block;
  width: 70%;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.storage-mini small {
  color: #696762;
  font-size: 5.5px;
}

.workspace-content {
  overflow: hidden;
  padding: 27px 26px 20px;
}

.workspace-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.workspace-kicker {
  margin: 0 0 5px;
  color: #696762;
  font-size: 6px;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.workspace-heading h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.new-button {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 29px;
  padding-inline: 11px;
  border-radius: 7px;
  background: var(--ink);
  color: white;
  font-size: 8px;
  font-weight: 500;
}

.new-button span { font-size: 13px; font-weight: 300; }

.quick-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quick-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  height: 55px;
  padding: 9px;
  border-radius: 10px;
}

.quick-lilac { background: #eeecff; }
.quick-mint { background: #e7f9f0; }
.quick-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  background: rgba(255,255,255,0.72);
  place-items: center;
}

.quick-icon svg { width: 15px; height: 15px; }
.quick-card div:nth-child(2) { min-width: 0; flex: 1; }
.quick-card strong,
.quick-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-card strong { font-size: 8px; font-weight: 600; }
.quick-card small { margin-top: 2px; color: #5e5c57; font-size: 6px; }
.quick-more { color: #9b9994; font-size: 7px; letter-spacing: 1px; }

.files-head {
  display: flex;
  justify-content: space-between;
  margin: 22px 0 9px;
  font-size: 7px;
}

.files-head strong { font-weight: 600; }
.files-head span { color: #66645f; }

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

.file-card {
  overflow: hidden;
  border: 1px solid #e8e6e1;
  border-radius: 10px;
  background: white;
  transition: transform 0.35s var(--ease-spring), box-shadow 0.35s ease;
}

.workspace-window:hover .file-card-center {
  box-shadow: 0 8px 20px rgba(25,25,22,0.08);
  transform: translateY(-4px);
}

.file-art {
  position: relative;
  height: 134px;
  overflow: hidden;
}

.art-orbit {
  background: #b9afff;
}

.art-orbit small {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.orbit-ring {
  position: absolute;
  top: 34px;
  left: 35px;
  width: 77px;
  height: 77px;
  border: 1px solid rgba(30,26,70,0.42);
  border-radius: 50%;
}

.orbit-a { transform: rotateX(66deg); }
.orbit-b { transform: rotateY(66deg); }
.orbit-core {
  position: absolute;
  top: 66px;
  left: 67px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #252236;
  box-shadow: 0 0 0 7px rgba(255,255,255,0.18);
}

.art-editorial {
  background: #f3b39d;
  color: #452c29;
}

.art-editorial strong {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 11px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.85;
}

.art-editorial small {
  position: absolute;
  z-index: 2;
  bottom: 9px;
  left: 11px;
  font-size: 5px;
  letter-spacing: 0.12em;
}

.editorial-sun {
  position: absolute;
  right: -18px;
  bottom: -30px;
  width: 105px;
  height: 105px;
  border: 1px solid #78413a;
  border-radius: 50%;
}

.editorial-sun::before,
.editorial-sun::after {
  position: absolute;
  border: 1px solid #78413a;
  border-radius: inherit;
  content: "";
}
.editorial-sun::before { inset: 14px; }
.editorial-sun::after { inset: 29px; background: #e86858; }

.art-ceramic {
  background: #d3e7db;
}

.ceramic-shape {
  position: absolute;
  z-index: 2;
  top: 30px;
  left: 46px;
  width: 60px;
  height: 80px;
  border-radius: 45% 45% 42% 42% / 35% 35% 55% 55%;
  background: linear-gradient(90deg, #ece5d9 0, #fffaf0 38%, #c1bdb3 100%);
  transform: rotate(8deg);
}

.ceramic-shape::after {
  position: absolute;
  top: -8px;
  left: 16px;
  width: 28px;
  height: 15px;
  border-radius: 50%;
  background: #9f9d97;
  box-shadow: inset 0 4px 4px rgba(0,0,0,0.22);
  content: "";
}

.ceramic-shadow {
  position: absolute;
  right: 16px;
  bottom: 13px;
  width: 80px;
  height: 20px;
  border-radius: 50%;
  background: rgba(40,52,45,0.15);
  filter: blur(6px);
}

.photo-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.76) contrast(1.04);
}

.art-ceramic.photo-art::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(25, 23, 19, 0.08), transparent 45%, rgba(24, 21, 18, 0.42));
  content: "";
}

.art-ceramic small {
  position: absolute;
  z-index: 3;
  top: 9px;
  left: 10px;
  color: white;
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.file-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 7px 8px;
}

.file-type {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 5px;
  font-size: 7px;
  font-weight: 600;
  place-items: center;
}
.type-purple { background: #eee9ff; color: #5b4bb5; }
.type-blue { background: #e8f0ff; color: #3c61ac; }
.type-red { background: #ffeae5; color: #ad4b3e; }
.file-meta strong,
.file-meta small { display: block; }
.file-meta strong { font-size: 7px; font-weight: 600; }
.file-meta small { margin-top: 1px; color: #66645f; font-size: 5.5px; }

.float-card,
.mini-file {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.78);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 20px 45px rgba(33,32,29,0.14);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: gentle-float 5.5s ease-in-out infinite;
}

.encrypted-card {
  right: -25px;
  bottom: 74px;
  gap: 11px;
  width: 276px;
  min-height: 72px;
  padding: 12px;
  border-radius: 15px;
  animation-delay: -1.2s;
}

.float-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 11px;
  background: var(--lime);
  color: #24271a;
  place-items: center;
}

.float-icon svg { width: 18px; height: 18px; }
.float-card > div:nth-child(2) { flex: 1; }
.float-card strong,
.float-card span { display: block; }
.float-card strong { font-size: 10px; font-weight: 600; }
.float-card span { margin-top: 3px; color: #5f5d58; font-size: 7px; }
.status-check { width: 18px; height: 18px; color: #5d9d79; }

.sync-card {
  top: 23px;
  right: 12px;
  gap: 11px;
  width: 191px;
  min-height: 67px;
  padding: 11px;
  border-radius: 15px;
  animation-delay: -3.6s;
}

.sync-ring {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: conic-gradient(var(--blue) 92%, #e7e7e4 0);
  place-items: center;
}

.sync-ring::before {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: white;
  content: "";
}

.sync-ring span {
  position: absolute;
  margin: 0;
  color: var(--ink);
  font-size: 8px;
  font-weight: 600;
}

.mini-file {
  gap: 8px;
  width: 141px;
  min-height: 51px;
  padding: 8px;
  border-radius: 13px;
}

.mini-file-one {
  bottom: 24px;
  left: 46px;
  transform: rotate(-5deg);
  animation-delay: -2.2s;
}

.mini-file-two {
  top: 0;
  left: 115px;
  transform: rotate(4deg);
  animation-delay: -4s;
}

.mini-file-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #f6c6b5;
  color: #7f4438;
  font-size: 6px;
  font-weight: 700;
  place-items: center;
}
.mini-file-blue { background: #d8d4ff; color: #504899; }
.mini-file strong,
.mini-file small { display: block; }
.mini-file strong { font-size: 8px; }
.mini-file small { color: #66645f; font-size: 6px; }

.hero-bottom {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-bottom p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.hero-bottom p span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(74,86,255,0.1);
}
.hero-bottom a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-bottom svg { width: 15px; height: 15px; }

@keyframes gentle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

/* Trust */
.trust-strip {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-2);
}

.trust-inner {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
}

.trust-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  color: #55544f;
}

.client-logo {
  white-space: nowrap;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.logo-north { display: flex; align-items: center; gap: 6px; letter-spacing: -0.06em; }
.logo-north i { width: 13px; height: 13px; border: 1.5px solid currentColor; border-radius: 50% 50% 0 50%; transform: rotate(45deg); }
.logo-aster { font-family: var(--serif); font-size: 15px; font-weight: 400; letter-spacing: 0; }
.logo-mono { font-size: 16px; letter-spacing: 0.15em; }
.logo-field { font-family: var(--serif); font-size: 18px; font-weight: 400; }
.logo-arc { display: flex; align-items: center; gap: 7px; font-weight: 500; letter-spacing: 0.06em; }
.logo-arc i { font-size: 18px; font-style: normal; }

/* Manifesto */
.manifesto {
  padding-bottom: 170px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.9fr 0.63fr;
  align-items: end;
  gap: 100px;
}

.display-copy {
  max-width: 900px;
  margin: 0;
  font-size: clamp(48px, 5.35vw, 78px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.display-copy em {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
}

.manifesto-side {
  padding-bottom: 7px;
}

.manifesto-side p {
  margin: 0 0 36px;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* Living archive / photography */
.archive-section {
  overflow: hidden;
  padding-top: 145px;
  background:
    radial-gradient(circle at 12% 22%, rgba(201, 193, 255, 0.2), transparent 30%),
    radial-gradient(circle at 90% 78%, rgba(183, 243, 213, 0.2), transparent 28%),
    #eae7df;
}

.archive-heading {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: end;
  gap: 80px;
  max-width: 1240px;
  margin: 0 auto 68px;
}

.archive-heading h2 {
  margin: 0;
  font-size: clamp(56px, 5.5vw, 84px);
  font-weight: 400;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.archive-heading h2 em {
  color: var(--blue);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.archive-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.archive-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1240px;
  height: 720px;
  margin-inline: auto;
}

.archive-frame {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 26px;
  background: #cfcbc1;
  box-shadow: 0 22px 60px rgba(35, 33, 29, 0.1);
}

.archive-main {
  grid-row: 1 / 3;
}

.archive-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84) contrast(1.04);
  transition: transform 1.1s var(--ease-spring), filter 0.6s ease;
}

.archive-main > img {
  object-position: 52% center;
}

.archive-studio > img {
  object-position: center 34%;
}

.archive-city > img {
  object-position: center 58%;
}

.archive-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 14, 14, 0.8) 0, rgba(14, 14, 14, 0.16) 38%, transparent 66%);
  content: "";
  pointer-events: none;
}

.archive-frame:hover > img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.035);
}

.archive-frame figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
  color: white;
}

.archive-frame figcaption span,
.archive-frame figcaption strong,
.archive-frame figcaption small {
  display: block;
}

.archive-frame figcaption span {
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.archive-frame figcaption strong {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}

.archive-frame figcaption small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 8px;
}

.archive-studio figcaption,
.archive-city figcaption {
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.archive-studio figcaption strong,
.archive-city figcaption strong {
  font-size: 19px;
}

.archive-polaroid {
  position: absolute;
  z-index: 5;
  top: 42%;
  left: 53.2%;
  width: 205px;
  height: 258px;
  margin: 0;
  padding: 8px 8px 29px;
  background: #fffdf8;
  box-shadow: 0 24px 55px rgba(32, 30, 27, 0.23);
  transform: rotate(-5.5deg);
  transition: transform 0.55s var(--ease-spring);
}

.archive-polaroid:hover {
  transform: rotate(-2deg) translateY(-8px);
}

.archive-polaroid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.03);
}

.archive-polaroid figcaption {
  position: absolute;
  right: 9px;
  bottom: 8px;
  left: 10px;
  overflow: hidden;
  color: #6b6963;
  font-family: var(--serif);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-float-card {
  position: absolute;
  z-index: 6;
  top: 25px;
  left: 25px;
  display: flex;
  width: 315px;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(27, 26, 24, 0.14);
  -webkit-backdrop-filter: blur(13px);
  backdrop-filter: blur(13px);
}

.archive-float-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: var(--lilac);
  color: #453e8b;
  place-items: center;
}

.archive-float-icon svg {
  width: 18px;
  height: 18px;
}

.archive-float-card > div {
  flex: 1;
}

.archive-float-card strong,
.archive-float-card small {
  display: block;
}

.archive-float-card strong {
  font-size: 11px;
  font-weight: 600;
}

.archive-float-card small {
  margin-top: 3px;
  color: #67655f;
  font-size: 8px;
}

.archive-float-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #595752;
  font-size: 7px;
  font-weight: 600;
  white-space: nowrap;
}

.archive-float-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #54a879;
  box-shadow: 0 0 0 4px rgba(84, 168, 121, 0.1);
}

.archive-foot {
  display: flex;
  max-width: 1240px;
  align-items: center;
  justify-content: space-between;
  margin: 24px auto 0;
  padding: 17px 2px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.archive-foot p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.archive-foot p:first-child span {
  display: inline-flex;
  min-width: 37px;
  height: 22px;
  align-items: center;
  justify-content: center;
  padding-inline: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  color: var(--ink-soft);
  font-size: 7px;
  letter-spacing: 0.06em;
}

/* Product / bento */
.product-section {
  overflow: hidden;
  padding-top: 150px;
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  gap: 80px;
  width: min(100%, 1240px);
  margin: 0 auto 76px;
}

.section-heading h2,
.pricing-heading h2,
.security-copy h2,
.faq-intro h2,
.final-inner h2 {
  margin: 0;
  font-size: clamp(56px, 5.4vw, 82px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.section-heading h2 em,
.pricing-heading h2 em,
.security-copy h2 em,
.faq-intro h2 em,
.final-inner h2 em {
  color: var(--blue);
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  max-width: 1240px;
  margin-inline: auto;
}

.feature-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(24,24,23,0.09);
  border-radius: 28px;
  background: var(--bg);
}

.spotlight-card::after {
  position: absolute;
  top: var(--spot-y, 50%);
  left: var(--spot-x, 50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.5), transparent 68%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.35s ease;
}

.spotlight-card:hover::after { opacity: 1; }
.spotlight-card > * { position: relative; z-index: 2; }

.feature-search,
.feature-organize {
  min-height: 590px;
}

.feature-version,
.feature-share {
  min-height: 525px;
}

.feature-search { background: #ebe8ff; }
.feature-organize { background: #eef1e9; }
.feature-version { background: #18181a; color: white; }
.feature-share { background: #f3e2dc; }

.feature-copy {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 22px;
  padding: 38px 40px 20px;
}

.stacked-copy {
  display: block;
}

.stacked-copy .feature-number {
  margin-bottom: 28px;
}

.feature-number {
  display: grid;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(24,24,23,0.18);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  place-items: center;
}

.feature-version .feature-number {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.55);
}

.feature-copy h3 {
  margin: -2px 0 10px;
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.feature-copy p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.feature-version .feature-copy p { color: rgba(255,255,255,0.5); }

.search-demo {
  position: absolute;
  right: 35px;
  bottom: 0;
  left: 35px;
  height: 350px;
  padding: 25px;
  border: 1px solid rgba(255,255,255,0.72);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: rgba(250,249,247,0.82);
  box-shadow: 0 -12px 40px rgba(47,43,82,0.08);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.demo-search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 58px;
  padding: 0 16px;
  border: 1px solid rgba(24,24,23,0.14);
  border-radius: 12px;
  background: white;
  box-shadow: 0 9px 24px rgba(43,39,75,0.07);
  font-size: 12px;
}
.demo-search-bar svg { width: 18px; height: 18px; color: #77737b; }
.demo-search-bar .type-target { flex: 0 1 auto; }
.demo-search-bar i {
  width: 1px;
  height: 17px;
  background: var(--blue);
  animation: blink 1s step-end infinite;
}
.demo-search-bar kbd {
  margin-left: auto;
  padding: 4px 7px;
  border: 1px solid #dedcd8;
  border-radius: 5px;
  background: #f6f5f2;
  color: #8d8a84;
  font-size: 8px;
}

@keyframes blink { 50% { opacity: 0; } }

.search-result {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 70px;
  margin-top: 11px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 11px;
  background: rgba(255,255,255,0.55);
  color: #85817d;
  font-size: 9px;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
}
.search-result.result-one {
  border-color: rgba(74,86,255,0.15);
  background: white;
  box-shadow: 0 8px 20px rgba(38,34,63,0.06);
  color: var(--ink);
}
.search-demo:hover .result-one { transform: translateX(5px); }
.result-thumb {
  position: relative;
  width: 51px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
}
.result-blue { background: linear-gradient(145deg, #3546d8, #85a2ff); }
.result-blue span {
  position: absolute;
  inset: 10px 8px;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: 50%;
  transform: rotateX(65deg);
}
.result-paper { display: grid; background: #f2b09b; color: #67423a; font-family: var(--serif); font-size: 16px; place-items: center; }
.result-photo {
  background: #8ea59a url("assets/photos/thumb-copenhagen.webp") center / cover no-repeat;
}
.result-photo span { display: none; }
.search-result > div:nth-child(2) { flex: 1; }
.search-result strong,
.search-result small { display: block; }
.search-result strong { font-size: 10px; font-weight: 600; }
.search-result small { margin-top: 3px; color: #96928d; font-size: 8px; }
.match-pill { padding: 4px 8px; border-radius: 10px; background: #eeecff; color: #5a55a2; font-size: 7px; }

.orbit-collections {
  position: absolute;
  right: 0;
  bottom: -45px;
  left: 0;
  height: 375px;
}

.collection-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(24,24,23,0.13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.orbit-one { width: 300px; height: 300px; }
.orbit-two { width: 215px; height: 215px; }
.collection-orbit::before { position: absolute; inset: 22px; border: 1px dashed rgba(24,24,23,0.09); border-radius: inherit; content: ""; }
.collection-node { position: absolute; width: 13px; height: 13px; border: 3px solid #eef1e9; border-radius: 50%; background: var(--blue); }
.node-one { top: 34px; left: 38px; }
.node-two { right: -4px; bottom: 94px; background: var(--coral); }
.node-three { left: 15px; bottom: 27px; background: #63ba8d; }

.collection-center {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 16px 35px rgba(38,42,35,0.08);
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.collection-center svg { width: 22px; height: 22px; margin-bottom: 10px; color: var(--blue); }
.collection-center strong { font-size: 11px; }
.collection-center small { margin-top: 4px; color: #85837d; font-size: 7px; }

.collection-label {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 9px;
  background: rgba(255,255,255,0.78);
  box-shadow: 0 9px 20px rgba(38,42,35,0.08);
  color: #5e5d58;
  font-size: 8px;
}
.collection-label i { width: 7px; height: 7px; border-radius: 2px; background: var(--lilac); }
.collection-label span { color: #9b9993; }
.label-one { top: 69px; right: 5px; transform: rotate(3deg); }
.label-two { bottom: 62px; left: 1px; transform: rotate(-4deg); }
.label-two i { background: var(--coral); }
.label-three { right: 12px; bottom: 63px; transform: rotate(2deg); }
.label-three i { background: var(--mint); }

.version-demo {
  position: absolute;
  right: 27px;
  bottom: 0;
  left: 27px;
  height: 290px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.11);
  border-bottom: 0;
  border-radius: 18px 18px 0 0;
  background: #222225;
}

.version-canvas {
  position: relative;
  height: 203px;
  overflow: hidden;
  background: #a89cf2;
  color: #29233e;
}
.version-word {
  position: absolute;
  top: 59px;
  left: 50%;
  font-family: var(--serif);
  font-size: 45px;
  letter-spacing: -0.06em;
  transform: translateX(-50%);
}
.version-dot {
  position: absolute;
  top: 76px;
  left: 49%;
  width: 59px;
  height: 59px;
  border: 1px solid #41395c;
  border-radius: 50%;
  transform: translateX(-50%);
}
.version-dot::before,
.version-dot::after { position: absolute; inset: 11px; border: 1px solid #41395c; border-radius: 50%; content: ""; }
.version-dot::after { inset: 23px; background: #41395c; }
.version-canvas small { position: absolute; bottom: 13px; left: 15px; font-size: 6px; letter-spacing: 0.14em; }

.timeline { padding: 12px 15px; }
.timeline-head,
.timeline-labels { display: flex; justify-content: space-between; color: rgba(255,255,255,0.48); font-size: 6px; }
.timeline-head strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.timeline-track { position: relative; display: flex; align-items: center; justify-content: space-between; height: 20px; margin-top: 2px; }
.timeline-track::before { position: absolute; top: 50%; left: 0; width: 100%; height: 1px; background: rgba(255,255,255,0.18); content: ""; }
.timeline-track span { position: absolute; z-index: 1; top: 50%; left: 0; width: 76%; height: 1px; background: var(--lilac); }
.timeline-track i { position: relative; z-index: 2; width: 6px; height: 6px; border: 2px solid #222225; border-radius: 50%; background: #77777b; }
.timeline-track i:nth-of-type(-n+4) { background: var(--lilac); }
.timeline-track i:nth-of-type(4) { width: 10px; height: 10px; box-shadow: 0 0 0 3px rgba(201,193,255,0.15); }

.share-demo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 59%;
  height: 100%;
}

.share-sheet {
  position: absolute;
  top: 81px;
  right: -16px;
  width: 320px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 17px;
  background: #faf9f5;
  box-shadow: 0 24px 55px rgba(66,43,37,0.13);
  transform: rotate(2deg);
}
.share-sheet-top { display: flex; align-items: center; gap: 9px; height: 43px; padding: 0 12px; font-size: 6px; letter-spacing: 0.12em; }
.share-logo-mini { display: grid; width: 22px; height: 22px; border-radius: 7px; background: var(--ink); color: white; font-family: var(--serif); font-size: 13px; place-items: center; }
.share-view { margin-left: auto; letter-spacing: 2px; }
.share-sheet-art { position: relative; height: 223px; overflow: hidden; background: #3850d4; color: white; }
.share-sheet-art > span { position: absolute; top: -15px; right: -40px; width: 230px; height: 230px; border: 1px solid rgba(255,255,255,0.53); border-radius: 50%; }
.share-sheet-art > span::before,
.share-sheet-art > span::after { position: absolute; border: 1px solid rgba(255,255,255,0.44); border-radius: inherit; content: ""; }
.share-sheet-art > span::before { inset: 33px; }
.share-sheet-art > span::after { inset: 69px; background: var(--coral); }
.share-sheet-art strong { position: absolute; top: 28px; left: 20px; font-family: var(--serif); font-size: 35px; font-weight: 400; line-height: 0.85; }
.share-sheet-art small { position: absolute; bottom: 15px; left: 20px; font-size: 6px; letter-spacing: 0.13em; }
.share-sheet-bottom { display: flex; align-items: center; justify-content: space-between; height: 66px; padding: 0 13px; }
.share-sheet-bottom strong,
.share-sheet-bottom small { display: block; }
.share-sheet-bottom strong { font-size: 8px; }
.share-sheet-bottom small { margin-top: 3px; color: #8b8983; font-size: 6px; }
.share-sheet-bottom .demo-button { height: 27px; padding: 0 11px; border-radius: 7px; background: var(--ink); color: white; font-size: 7px; }

.permission-popover {
  position: absolute;
  z-index: 3;
  right: 186px;
  bottom: 50px;
  width: 190px;
  padding: 8px 10px;
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 13px;
  background: rgba(255,255,255,0.89);
  box-shadow: 0 16px 35px rgba(66,43,37,0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.permission-popover > div { display: flex; align-items: center; justify-content: space-between; height: 35px; font-size: 7.5px; }
.permission-popover > div + div { border-top: 1px solid #eceae6; }
.permission-popover span { display: flex; align-items: center; gap: 7px; }
.permission-popover svg { width: 13px; height: 13px; }
.toggle-on { position: relative; width: 24px; height: 13px; border-radius: 10px; background: var(--blue); }
.toggle-on::after { position: absolute; top: 2px; right: 2px; width: 9px; height: 9px; border-radius: 50%; background: white; content: ""; }

/* Marquee */
.word-marquee {
  overflow: hidden;
  padding: 32px 0;
  border-block: 1px solid var(--line);
  background: var(--lime);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 30px;
  padding-right: 30px;
}

.marquee-content span {
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
}
.marquee-content i { font-size: 18px; font-style: normal; }

@keyframes marquee { to { transform: translateX(-50%); } }

/* Security */
.security-section {
  overflow: hidden;
  margin-top: -4px;
  padding: 180px 0 135px;
  background: var(--night);
  color: white;
}

.security-noise {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}

.security-inner { position: relative; z-index: 2; }
.section-index.light { color: rgba(255,255,255,0.46); }
.section-index.light span { border-color: rgba(255,255,255,0.18); }
.section-index.light p::before { background: rgba(255,255,255,0.18); }

.security-hero {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 50px;
  max-width: 1240px;
  margin-inline: auto;
}

.eyebrow-dark { color: rgba(255,255,255,0.55); }
.security-copy h2 { font-size: clamp(64px, 6.3vw, 94px); }
.security-copy h2 em { color: var(--lime); }
.security-copy > p {
  max-width: 500px;
  margin: 32px 0 34px;
  color: rgba(255,255,255,0.56);
  font-size: 16px;
  line-height: 1.75;
}

.encryption-visual {
  position: relative;
  height: 610px;
}
.encryption-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,86,255,0.32), rgba(74,86,255,0.06) 48%, transparent 70%);
  filter: blur(14px);
  transform: translate(-50%, -50%);
}
.encryption-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.encryption-ring::before,
.encryption-ring::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%) rotateX(65deg);
}
.encryption-ring::after { transform: translate(-50%, -50%) rotateY(65deg); }
.ring-outer { width: 540px; height: 540px; animation: rotate-ring 35s linear infinite; }
.ring-middle { width: 390px; height: 390px; animation: rotate-ring-reverse 26s linear infinite; }
.ring-inner { width: 245px; height: 245px; border-color: rgba(221,255,114,0.22); }
.ring-inner::before { border-color: rgba(201,193,255,0.16); }

@keyframes rotate-ring {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes rotate-ring-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

.satellite {
  position: absolute;
  display: grid;
  width: 43px;
  height: 43px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 13px;
  background: rgba(31,31,35,0.88);
  box-shadow: 0 8px 24px rgba(0,0,0,0.28);
  place-items: center;
}
.satellite svg { width: 17px; height: 17px; }
.satellite-a { top: 67px; right: 24px; transform: rotate(-12deg); }
.satellite-b { bottom: 14px; left: 76px; transform: rotate(17deg); }
.satellite-c { top: 40px; left: 26px; transform: rotate(-14deg); }

.encryption-core {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: flex;
  width: 190px;
  height: 190px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #27272c, #171719);
  box-shadow: 0 0 80px rgba(74,86,255,0.2), inset 0 0 35px rgba(255,255,255,0.03);
  transform: translate(-50%, -50%);
}
.core-lock {
  display: grid;
  width: 49px;
  height: 49px;
  margin-bottom: 15px;
  border-radius: 15px;
  background: var(--lime);
  color: #1e2114;
  box-shadow: 0 0 30px rgba(221,255,114,0.2);
  place-items: center;
}
.core-lock svg { width: 21px; height: 21px; }
.encryption-core strong { font-size: 13px; }
.encryption-core > span { margin-top: 5px; color: rgba(255,255,255,0.44); font-size: 8px; }

.encryption-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding-inline: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(30,30,33,0.75);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  color: rgba(255,255,255,0.7);
  font-size: 8px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.encryption-label i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(221,255,114,0.1); }
.encryption-label svg { width: 14px; height: 14px; color: var(--lilac); }
.label-encrypted { top: 79px; left: 56px; }
.label-verified { right: 40px; bottom: 86px; }

.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1240px;
  margin: 90px auto 0;
  border-top: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
}
.security-card {
  position: relative;
  min-height: 295px;
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,0.13);
}
.security-card:last-child { border-right: 0; }
.security-card > svg { width: 24px; height: 24px; color: var(--lilac); }
.security-card > span { position: absolute; top: 29px; right: 27px; color: rgba(255,255,255,0.3); font-size: 9px; }
.security-card h3 { margin: 85px 0 12px; font-size: 17px; font-weight: 500; letter-spacing: -0.025em; }
.security-card p { margin: 0; color: rgba(255,255,255,0.43); font-size: 12px; line-height: 1.65; }
.security-stat-card { background: rgba(255,255,255,0.025); }
.security-stat-card > div { margin-top: 38px; }
.security-stat-card strong { font-family: var(--serif); font-size: 57px; font-weight: 400; letter-spacing: -0.055em; }
.security-stat-card sup { color: var(--lime); font-size: 20px; }
.security-stat-card p { max-width: 180px; margin-top: 8px; }
.security-stat-card a { position: absolute; bottom: 27px; display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.72); font-size: 8px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #7de3a5; box-shadow: 0 0 0 4px rgba(125,227,165,0.09); }

/* Use cases */
.use-cases {
  background: var(--paper);
}

.use-heading { margin-bottom: 70px; }
.use-case-shell {
  max-width: 1240px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--bg);
}

.use-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}
.use-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  height: 74px;
  padding-inline: 28px;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  transition: background 0.3s ease, color 0.3s ease;
}
.use-tabs button:last-child { border-right: 0; }
.use-tabs button span { font-size: 9px; letter-spacing: 0.08em; }
.use-tabs button::after { position: absolute; right: 28px; bottom: -1px; left: 28px; height: 2px; background: var(--blue); content: ""; transform: scaleX(0); transition: transform 0.4s var(--ease); }
.use-tabs button[aria-selected="true"] { background: rgba(255,255,255,0.47); color: var(--ink); }
.use-tabs button[aria-selected="true"]::after { transform: scaleX(1); }

.use-panel {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  min-height: 615px;
  animation: panel-in 0.55s var(--ease-spring) both;
}
.use-panel[hidden] { display: none; }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } }

.use-copy {
  padding: 80px 50px 60px;
}
.use-label { margin: 0 0 28px; color: var(--blue); font-size: 9px; font-weight: 600; letter-spacing: 0.13em; }
.use-copy h3 { margin: 0; font-size: 42px; font-weight: 400; letter-spacing: -0.055em; line-height: 1.02; }
.use-copy > p:not(.use-label) { max-width: 410px; margin: 25px 0 26px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.use-copy ul { display: grid; gap: 11px; margin: 0 0 37px; padding: 0; list-style: none; color: var(--ink-soft); font-size: 12px; }
.use-copy li { display: flex; align-items: center; gap: 9px; }
.use-copy li svg { width: 16px; height: 16px; color: #4c9b6c; }

.use-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.makers-visual { background: #d9d4ff; }
.maker-photo { position: absolute; overflow: hidden; border: 8px solid white; background: white; box-shadow: 0 25px 60px rgba(46,41,84,0.14); }
.maker-photo > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.maker-photo-back { top: 60px; left: 72px; width: 270px; height: 360px; background: #f4aa92; color: #452f2b; transform: rotate(-9deg); }
.maker-photo-back > img { object-position: 54% center; }
.maker-photo-back::after { position: absolute; inset: 0; background: linear-gradient(to top, rgba(36,25,21,0.3), transparent 46%); content: ""; }
.maker-photo-main { z-index: 2; top: 73px; right: 61px; width: 325px; height: 420px; transform: rotate(5deg); }
.maker-photo-main > img { object-position: center; }
.maker-gradient { position: absolute; inset: 0; background: linear-gradient(145deg, rgba(40,70,186,0.12), transparent 44%, rgba(255,180,162,0.14)); }
.maker-gradient::before,
.maker-gradient::after { content: none; }
.maker-caption { position: absolute; z-index: 2; bottom: 18px; left: 17px; color: white; font-size: 7px; letter-spacing: 0.15em; }
.maker-mark { position: absolute; z-index: 2; top: 13px; right: 15px; color: white; font-family: var(--serif); font-size: 22px; }
.maker-toolbar { position: absolute; z-index: 4; right: 43px; bottom: 53px; left: 48px; display: flex; align-items: center; height: 48px; padding: 0 13px; border: 1px solid rgba(255,255,255,0.75); border-radius: 12px; background: rgba(255,255,255,0.83); box-shadow: 0 14px 35px rgba(49,44,81,0.13); font-size: 8px; -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.maker-toolbar > span { color: #77737b; }
.maker-toolbar > div { display: flex; gap: 7px; margin-left: auto; }
.maker-toolbar i { width: 17px; height: 17px; border: 1px solid #d8d5d1; border-radius: 5px; }
.maker-toolbar .demo-button { height: 27px; margin-left: 12px; padding: 0 12px; border-radius: 7px; background: var(--ink); color: white; font-size: 7px; }
.maker-comment { position: absolute; z-index: 5; top: 121px; right: 14px; display: flex; align-items: center; gap: 8px; min-width: 150px; min-height: 49px; padding: 8px; border: 1px solid rgba(255,255,255,0.85); border-radius: 11px; background: rgba(255,255,255,0.88); box-shadow: 0 13px 30px rgba(49,44,81,0.13); transform: rotate(-2deg); }
.maker-comment > span { display: grid; width: 31px; height: 31px; border-radius: 50%; background: #272a35; color: white; font-size: 7px; place-items: center; }
.maker-comment strong,
.maker-comment small { display: block; }
.maker-comment strong { font-size: 8px; }
.maker-comment small { margin-top: 2px; color: #77737b; font-size: 7px; }

.families-visual { background: #e5efe8; }
.family-date { position: absolute; top: 40px; left: 42px; color: #4c6659; }
.family-date span,
.family-date strong { display: block; }
.family-date span { font-size: 8px; letter-spacing: 0.15em; }
.family-date strong { margin-top: 5px; font-family: var(--serif); font-size: 25px; font-weight: 400; }
.polaroid { position: absolute; z-index: 2; width: 190px; padding: 9px 9px 26px; background: #fffdf8; box-shadow: 0 20px 45px rgba(38,61,48,0.14); }
.polaroid small { display: block; margin: 8px 3px 0; color: #6e736f; font-family: var(--serif); font-size: 8px; }
.polaroid-art { position: relative; height: 220px; overflow: hidden; }
.polaroid-art > img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.82) contrast(1.03); }
.art-sea > img { object-position: center; }
.art-field > img { object-position: center 35%; }
.art-night > img { object-position: center; }
.polaroid-one { top: 84px; left: 57px; transform: rotate(-8deg); }
.polaroid-two { z-index: 3; top: 50px; left: 257px; transform: rotate(6deg); }
.polaroid-three { z-index: 1; top: 202px; right: 48px; transform: rotate(12deg); }
.art-sea { background: linear-gradient(#7ac5d1 0 50%, #f0d5a9 50%); }
.art-sea span { position: absolute; bottom: 35px; left: 67px; width: 40px; height: 80px; border-radius: 50% 50% 5px 5px; background: #e4765f; }
.art-field { background: linear-gradient(#f3b29c 0 43%, #77a878 43%); }
.art-field span { position: absolute; right: -30px; bottom: 20px; width: 150px; height: 150px; border: 1px solid rgba(255,255,255,0.7); border-radius: 50%; }
.art-field span::before { position: absolute; inset: 28px; border: 1px solid rgba(255,255,255,0.7); border-radius: inherit; content: ""; }
.art-night { background: linear-gradient(150deg, #202a57, #6e79b9 58%, #d3a892); }
.art-night span { position: absolute; top: 20px; right: 25px; width: 32px; height: 32px; border-radius: 50%; background: #fff0bf; box-shadow: 0 0 30px rgba(255,240,191,0.65); }
.memory-pill { position: absolute; z-index: 5; right: 40px; bottom: 36px; display: flex; align-items: center; gap: 11px; min-width: 240px; min-height: 62px; padding: 10px 13px; border: 1px solid rgba(255,255,255,0.9); border-radius: 14px; background: rgba(255,255,255,0.87); box-shadow: 0 15px 35px rgba(38,61,48,0.13); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.memory-pill > svg { width: 20px; height: 20px; color: var(--blue); }
.memory-pill strong,
.memory-pill small { display: block; }
.memory-pill strong { font-size: 9px; }
.memory-pill small { margin-top: 3px; color: #7e817d; font-size: 7px; }

.studios-visual { display: grid; place-items: center; background: #dde3f6; }
.studio-board { width: 82%; overflow: hidden; border: 1px solid rgba(255,255,255,0.85); border-radius: 18px; background: rgba(255,255,255,0.88); box-shadow: 0 24px 60px rgba(43,54,90,0.12); }
.studio-board-head { display: flex; align-items: center; justify-content: space-between; height: 67px; padding: 0 20px; border-bottom: 1px solid #e5e5e2; }
.studio-board-head strong { font-size: 14px; }
.studio-board-head span { color: #81817c; font-size: 8px; }
.studio-row { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; min-height: 84px; margin: 0 16px; border-bottom: 1px solid #e9e8e4; }
.studio-row:last-child { border-bottom: 0; }
.row-icon { width: 29px; height: 29px; border-radius: 8px; }
.row-icon.lilac { background: var(--lilac); }
.row-icon.coral { background: var(--coral); }
.row-icon.mint { background: var(--mint); }
.studio-row strong,
.studio-row small { display: block; }
.studio-row strong { font-size: 10px; }
.studio-row small { margin-top: 4px; color: #93918c; font-size: 7px; }
.row-faces { display: flex; padding-left: 5px; }
.row-faces span { display: grid; width: 25px; height: 25px; margin-left: -5px; border: 2px solid white; border-radius: 50%; background: #3b4052; color: white; font-size: 5px; place-items: center; }
.row-faces span:nth-child(2) { background: #b06f62; }
.row-faces span:nth-child(3) { background: #f1f0eb; color: #6e6b66; }
.studio-activity { position: absolute; right: 27px; bottom: 43px; display: flex; align-items: center; gap: 11px; min-width: 290px; min-height: 65px; padding: 10px; border: 1px solid rgba(255,255,255,0.8); border-radius: 14px; background: rgba(255,255,255,0.86); box-shadow: 0 15px 35px rgba(43,54,90,0.14); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.activity-check { display: grid; width: 40px; height: 40px; border-radius: 11px; background: var(--mint); color: #37664d; place-items: center; }
.activity-check svg { width: 18px; height: 18px; }
.studio-activity strong,
.studio-activity small { display: block; }
.studio-activity strong { font-size: 9px; }
.studio-activity small { margin-top: 4px; color: #86847f; font-size: 7px; }

/* Testimonial */
.testimonial-section {
  text-align: center;
}

.quote-mark {
  width: max-content;
  margin: 0 auto 15px;
  color: var(--blue);
  font-family: var(--serif);
  font-size: 90px;
  line-height: 0.7;
}

.testimonial-section blockquote {
  max-width: 1000px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(40px, 4.6vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.07;
}

.quote-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 38px;
  text-align: left;
}
.author-avatar { display: grid; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(145deg, #4e5cd8, #e5907a); color: white; font-size: 9px; font-weight: 600; place-items: center; }
.quote-author strong,
.quote-author span { display: block; }
.quote-author strong { font-size: 12px; }
.quote-author span { margin-top: 3px; color: var(--muted); font-size: 9px; }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 110px;
  border-block: 1px solid var(--line);
}
.impact-stat { padding: 45px 25px; border-right: 1px solid var(--line); }
.impact-stat:last-child { border-right: 0; }
.impact-stat strong { font-size: 54px; font-weight: 400; letter-spacing: -0.06em; line-height: 1; }
.impact-stat sup { color: var(--blue); font-size: 18px; }
.impact-stat p { margin: 11px 0 0; color: var(--muted); font-size: 11px; }

/* Pricing */
.pricing-section {
  padding-top: 160px;
  background: var(--paper);
}

.pricing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto 72px;
}

.billing-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}
.billing-wrap > span { display: flex; align-items: center; gap: 6px; }
.billing-wrap i { padding: 3px 7px; border-radius: 8px; background: var(--mint); color: #39664d; font-size: 7px; font-style: normal; font-weight: 600; }
.billing-toggle { position: relative; width: 48px; height: 27px; padding: 0; border-radius: 20px; background: var(--ink); cursor: pointer; }
.billing-toggle span { position: absolute; top: 4px; left: 4px; width: 19px; height: 19px; border-radius: 50%; background: white; box-shadow: 0 2px 6px rgba(0,0,0,0.17); transition: transform 0.3s var(--ease-spring); }
.billing-toggle[aria-checked="true"] span { transform: translateX(21px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 1240px;
  margin-inline: auto;
}
.price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg);
}
.price-card.featured { border-color: var(--ink); background: #efede7; box-shadow: 0 22px 50px rgba(28,28,26,0.1); }
.popular-label { position: absolute; z-index: 2; top: 18px; right: 18px; display: flex; align-items: center; gap: 6px; height: 25px; padding: 0 9px; border-radius: 10px; background: var(--lilac); color: #443b82; font-size: 7px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.popular-label svg { width: 10px; height: 10px; }
.price-card-top { padding: 30px; }
.plan-name { display: flex; align-items: baseline; gap: 13px; }
.plan-name span { color: var(--muted); font-size: 9px; }
.plan-name h3 { margin: 0; font-size: 27px; font-weight: 500; letter-spacing: -0.045em; }
.price-card-top > p { min-height: 48px; max-width: 290px; margin: 17px 0 38px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.plan-price { display: flex; align-items: flex-start; height: 65px; }
.plan-price > span { margin: 8px 4px 0 0; font-size: 14px; }
.plan-price strong { font-family: var(--serif); font-size: 56px; font-weight: 400; letter-spacing: -0.06em; line-height: 1; }
.plan-price small { align-self: flex-end; margin: 0 0 10px 7px; color: var(--muted); font-size: 8px; }
.billed-note { min-height: 18px; margin-top: 5px; color: #99968f; font-size: 8px; }
.price-card .button { width: 100%; margin-top: 28px; }
.plan-features { padding: 27px 30px 30px; border-top: 1px solid var(--line); }
.plan-features > strong { font-size: 22px; font-weight: 500; letter-spacing: -0.04em; }
.plan-features > strong small { color: var(--muted); font-size: 9px; font-weight: 400; letter-spacing: 0; }
.plan-features ul { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; color: var(--ink-soft); font-size: 11px; }
.plan-features li { display: flex; align-items: center; gap: 9px; }
.plan-features svg { width: 15px; height: 15px; color: #4c9b6c; }

.pricing-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 24px auto 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--muted);
  font-size: 10px;
}
.pricing-foot p,
.pricing-foot a { display: flex; align-items: center; gap: 8px; margin: 0; }
.pricing-foot p > svg { width: 14px; height: 14px; color: var(--blue); }
.pricing-foot p strong { color: var(--ink); }
.pricing-foot a { color: var(--ink); font-weight: 600; }
.pricing-foot a svg { width: 14px; height: 14px; }

/* FAQ */
.faq-section { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 100px; }
.faq-intro .section-index { margin-bottom: 58px; }
.faq-intro h2 { font-size: clamp(50px, 4.7vw, 70px); }
.faq-intro > p { max-width: 310px; margin: 28px 0 30px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.accordion { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line-strong); }
.faq-item h3 { margin: 0; }
.faq-item button { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 26px 3px; background: transparent; cursor: pointer; text-align: left; }
.faq-item button > span { display: flex; align-items: center; gap: 20px; font-size: 16px; font-weight: 500; letter-spacing: -0.025em; }
.faq-item button i { color: var(--muted); font-size: 8px; font-style: normal; font-weight: 500; letter-spacing: 0.08em; }
.faq-item button b { position: relative; width: 23px; height: 23px; flex: 0 0 auto; border: 1px solid var(--line-strong); border-radius: 50%; }
.faq-item button b::before,
.faq-item button b::after { position: absolute; top: 50%; left: 50%; width: 8px; height: 1px; background: var(--ink); content: ""; transform: translate(-50%, -50%); transition: transform 0.3s ease; }
.faq-item button b::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item.open button b::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.45s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 610px; margin: 0; padding: 0 46px 28px; color: var(--muted); font-size: 13px; line-height: 1.75; }
.faq-item.open .faq-answer { grid-template-rows: 1fr; }

/* Final CTA */
.final-cta {
  overflow: hidden;
  padding: 155px 0;
  background: #d4cdff;
  text-align: center;
}
.final-lines { position: absolute; top: 50%; left: 50%; width: 830px; height: 830px; border: 1px solid rgba(50,43,93,0.16); border-radius: 50%; transform: translate(-50%, -50%); }
.final-lines::before,
.final-lines::after { position: absolute; border: 1px solid rgba(50,43,93,0.14); border-radius: inherit; content: ""; }
.final-lines::before { inset: 90px; }
.final-lines::after { inset: 195px; }
.final-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.orb-left { bottom: -260px; left: -120px; width: 550px; height: 550px; background: rgba(183,243,213,0.66); filter: blur(70px); }
.orb-right { top: -220px; right: -120px; width: 500px; height: 500px; background: rgba(255,155,128,0.44); filter: blur(70px); }
.final-inner { position: relative; z-index: 2; }
.final-mark { width: max-content; margin: 0 auto 27px; }
.final-mark svg { width: 48px; height: 48px; }
.final-eyebrow { margin: 0 0 28px; color: rgba(42,37,70,0.62); font-size: 9px; font-weight: 600; letter-spacing: 0.17em; }
.final-inner h2 { font-size: clamp(65px, 7vw, 104px); }
.final-inner h2 em { color: #473ead; }
.final-inner > p:not(.final-eyebrow) { margin: 29px 0 0; color: rgba(42,37,70,0.68); font-size: 15px; }
.final-actions { display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 14px; margin-top: 35px; }
.final-actions span { color: rgba(42,37,70,0.55); font-size: 9px; }

/* Footer */
.site-footer {
  padding: 82px 0 30px;
  background: var(--night);
  color: white;
}
.footer-top { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; padding-bottom: 76px; }
.brand-footer { color: white; }
.footer-brand > p { margin: 24px 0; color: rgba(255,255,255,0.46); font-size: 13px; line-height: 1.65; }
.system-status { display: inline-flex; align-items: center; gap: 9px; color: rgba(255,255,255,0.65); font-size: 9px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }
.system-status i { width: 7px; height: 7px; border-radius: 50%; background: #7de3a5; box-shadow: 0 0 0 5px rgba(125,227,165,0.08); }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer-links h3 { margin: 0 0 22px; color: rgba(255,255,255,0.58); font-size: 9px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase; }
.footer-links a { display: flex; width: max-content; align-items: center; gap: 6px; margin: 0 0 12px; color: rgba(255,255,255,0.72); font-size: 12px; transition: color 0.25s ease; }
.footer-links a:hover { color: white; }
.footer-links a span { display: grid; width: 19px; height: 19px; border-radius: 7px; background: var(--lime); color: #252719; font-size: 7px; place-items: center; }
.footer-links svg { width: 11px; height: 11px; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding-top: 25px; border-top: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.62); font-size: 9px; }
.footer-bottom p { margin: 0; }
.footer-bottom p:last-child { justify-self: end; }
.footer-bottom > div { display: flex; gap: 22px; }
.footer-bottom a:hover { color: rgba(255,255,255,0.75); }

/* Tour dialog */
.tour-dialog {
  width: min(940px, calc(100vw - 40px));
  max-width: none;
  height: min(600px, calc(100vh - 50px));
  max-height: none;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 35px 100px rgba(0,0,0,0.32);
}
.tour-dialog[open] { display: grid; grid-template-columns: 1.05fr 0.95fr; animation: dialog-in 0.5s var(--ease-spring); }
.tour-dialog::backdrop { background: rgba(12,12,13,0.7); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
@keyframes dialog-in { from { opacity: 0; transform: translateY(20px) scale(0.97); } }
.dialog-close { position: absolute; z-index: 10; top: 18px; right: 18px; display: grid; width: 38px; height: 38px; border-radius: 50%; background: rgba(24,24,23,0.08); cursor: pointer; place-items: center; transition: background 0.25s ease, transform 0.25s ease; }
.dialog-close:hover { background: rgba(24,24,23,0.14); transform: rotate(5deg); }
.dialog-close svg { width: 18px; height: 18px; }
.tour-visual { position: relative; overflow: hidden; background: #cfc8ff; }
.tour-gradient { position: absolute; inset: 0; background: radial-gradient(circle at 35% 65%, rgba(183,243,213,0.75), transparent 38%), radial-gradient(circle at 75% 15%, rgba(255,155,128,0.45), transparent 32%); }
.tour-orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(51,45,89,0.22); border-radius: 50%; transform: translate(-50%, -50%); }
.tour-orbit-one { width: 430px; height: 430px; }
.tour-orbit-two { width: 300px; height: 300px; }
.tour-logo { position: absolute; top: 24px; left: 24px; }
.tour-logo svg { width: 35px; height: 35px; }
.tour-step-visual { position: absolute; inset: 0; }
.tour-step-number { position: absolute; right: 23px; bottom: 20px; color: rgba(42,37,70,0.54); font-size: 9px; font-weight: 600; letter-spacing: 0.1em; }
.tour-folder { position: absolute; display: flex; align-items: center; gap: 11px; width: 176px; height: 75px; padding: 12px; border: 1px solid rgba(255,255,255,0.8); border-radius: 16px; background: rgba(255,255,255,0.8); box-shadow: 0 18px 42px rgba(52,45,92,0.14); font-size: 11px; font-weight: 600; -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); }
.tour-folder svg { width: 22px; height: 22px; }
.folder-a { top: 175px; left: 55px; transform: rotate(-7deg); }
.folder-b { top: 278px; right: 42px; transform: rotate(6deg); }
.folder-c { bottom: 70px; left: 67px; transform: rotate(-2deg); }
.folder-a svg { color: var(--blue); }
.folder-b svg { color: #d36d58; }
.folder-c svg { color: #4f9870; }
.tour-content { display: flex; justify-content: center; flex-direction: column; padding: 70px 55px 45px; }
.tour-content h2 { margin: 0; font-size: 48px; font-weight: 400; letter-spacing: -0.06em; line-height: 0.98; }
.tour-content h2 em { color: var(--blue); font-family: var(--serif); font-weight: 400; }
.tour-description { min-height: 78px; margin: 26px 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.tour-progress { display: flex; gap: 7px; }
.tour-progress span { width: 24px; height: 3px; border-radius: 3px; background: #dedcd5; transition: width 0.3s ease, background 0.3s ease; }
.tour-progress span.active { width: 46px; background: var(--blue); }
.tour-controls { display: flex; align-items: center; justify-content: space-between; margin-top: 45px; }
.tour-prev { padding: 8px 0; background: transparent; color: var(--muted); cursor: pointer; font-size: 11px; }
.tour-prev:disabled { opacity: 0.35; cursor: default; }

/* Reveal motion */
.js .reveal {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 0.75s var(--ease), translate 0.75s var(--ease-spring);
}
.js .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js .reveal[data-delay="3"] { transition-delay: 0.24s; }
.js .reveal[data-delay="4"] { transition-delay: 0.32s; }
.js .reveal.is-visible {
  opacity: 1;
  translate: 0 0;
}

/* Legal pages */
.legal-page { min-height: 100vh; padding: 150px 0 100px; }
.legal-page .legal-shell { width: min(100% - 48px, 850px); margin-inline: auto; }
.legal-kicker { color: var(--blue); font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.legal-page h1 { margin: 18px 0 16px; font-size: clamp(54px, 7vw, 86px); font-weight: 400; letter-spacing: -0.065em; line-height: 0.95; }
.legal-page .updated { margin-bottom: 70px; color: var(--muted); font-size: 12px; }
.legal-content { padding-top: 20px; border-top: 1px solid var(--line-strong); }
.legal-content h2 { margin: 50px 0 13px; font-size: 24px; font-weight: 500; letter-spacing: -0.04em; }
.legal-content p,
.legal-content li { color: var(--ink-soft); font-size: 14px; line-height: 1.8; }
.legal-content ul { padding-left: 20px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 40px; font-size: 12px; font-weight: 600; }
.legal-back svg { width: 16px; height: 16px; transform: rotate(180deg); }

/* Responsive */
@media (max-width: 1280px) {
  .container-wide { width: min(100% - 48px, 1180px); }
  .container { width: min(100% - 48px, 1120px); }
  .hero-inner { grid-template-columns: 0.88fr 1.12fr; }
  .hero-visual { width: 680px; transform: scale(0.93); transform-origin: left center; }
  .workspace-window { left: 5px; }
  .bento-grid,
  .section-heading,
  .security-hero,
  .security-grid,
  .use-case-shell,
  .pricing-heading,
  .pricing-grid,
  .pricing-foot { max-width: 1120px; }
  .share-sheet { right: -62px; }
  .permission-popover { right: 132px; }
}

@media (max-width: 1080px) {
  .desktop-nav { gap: 23px; }
  .hero { min-height: 920px; }
  .hero-inner { grid-template-columns: 1fr 1fr; min-height: 700px; }
  .hero-visual { width: 650px; margin-left: -25px; transform: scale(0.82); }
  .hero-title { font-size: clamp(58px, 7vw, 76px); }
  .hero-lead { max-width: 420px; font-size: 16px; }
  .trust-inner { grid-template-columns: 145px 1fr; }
  .manifesto-grid { grid-template-columns: 1.6fr 0.65fr; gap: 60px; }
  .feature-search,
  .feature-organize { min-height: 565px; }
  .feature-copy { padding: 32px 30px 20px; }
  .search-demo { right: 25px; left: 25px; }
  .security-hero { grid-template-columns: 0.9fr 1.1fr; }
  .encryption-visual { transform: scale(0.86); }
  .security-card { padding: 23px; }
  .use-panel { grid-template-columns: 0.8fr 1.2fr; }
  .use-copy { padding: 65px 38px 50px; }
  .maker-photo-main { right: 25px; }
  .maker-photo-back { left: 34px; }
  .polaroid-one { left: 30px; }
  .polaroid-two { left: 200px; }
}

@media (max-width: 900px) {
  .section { padding-block: 110px; }
  .desktop-nav,
  .nav-signin { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { display: flex; }
  .nav-actions { gap: 10px; }
  .hero { min-height: auto; padding-top: 145px; }
  .hero-inner { display: block; min-height: 0; }
  .hero-copy { max-width: 680px; padding: 20px 0 40px; }
  .hero-title { font-size: clamp(62px, 11vw, 88px); }
  .hero-lead { max-width: 540px; font-size: 17px; }
  .hero-visual { width: 750px; height: 650px; margin: 0 auto; transform: scale(0.9); transform-origin: top left; }
  .hero-bottom { margin-top: -55px; }
  .trust-inner { grid-template-columns: 1fr; gap: 28px; }
  .trust-inner > p { text-align: center; }
  .logo-row { flex-wrap: wrap; justify-content: center; gap: 22px 42px; }
  .manifesto-grid { grid-template-columns: 1fr; gap: 45px; }
  .manifesto-side { max-width: 500px; margin-left: auto; }
  .section-heading { grid-template-columns: 1fr; gap: 30px; }
  .section-heading > p { max-width: 530px; }
  .bento-grid { grid-template-columns: 1fr; }
  .feature-search,
  .feature-organize,
  .feature-version,
  .feature-share { min-height: 570px; }
  .feature-organize { min-height: 620px; }
  .share-demo { width: 58%; }
  .share-sheet { right: 5px; }
  .permission-popover { right: 218px; }
  .security-hero { grid-template-columns: 1fr; }
  .security-copy { max-width: 620px; }
  .encryption-visual { height: 600px; transform: none; }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .security-card:nth-child(2) { border-right: 0; }
  .security-card:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.13); }
  .use-panel { grid-template-columns: 1fr; }
  .use-copy { padding: 60px 50px; }
  .use-visual { min-height: 580px; border-top: 1px solid var(--line); border-left: 0; }
  .pricing-heading { align-items: flex-start; flex-direction: column; gap: 38px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 600px; }
  .price-card-top > p { min-height: 0; }
  .price-card { display: grid; grid-template-columns: 1fr 1fr; }
  .popular-label { right: calc(50% + 18px); }
  .plan-features { border-top: 0; border-left: 1px solid var(--line); }
  .faq-grid { grid-template-columns: 1fr; gap: 70px; }
  .faq-intro > p { max-width: 450px; }
  .footer-top { grid-template-columns: 0.7fr 1.3fr; gap: 50px; }
}

@media (max-width: 680px) {
  .container,
  .container-wide { width: calc(100% - 32px); }
  .section { padding-block: 88px; }
  .nav-shell { width: calc(100% - 20px); padding-left: 13px; }
  .nav-actions .button-small { display: none; }
  .brand { font-size: 21px; }
  .hero { padding-top: 118px; }
  .hero-grid { background-size: 48px 48px; }
  .announcement { margin-bottom: 30px; }
  .announcement-rule,
  .announcement span:nth-of-type(4) { display: none; }
  .hero-title { font-size: clamp(52px, 15.7vw, 72px); letter-spacing: -0.067em; }
  .hero-lead { margin-top: 25px; font-size: 15px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 18px; margin-top: 28px; }
  .hero-actions .button { width: 100%; }
  .watch-button { align-self: center; }
  .hero-proof { justify-content: center; margin-top: 34px; }
  .hero-visual { left: 50%; width: 750px; height: 530px; margin-top: 20px; transform: translateX(-50%) scale(0.62); transform-origin: top center; }
  .hero-bottom { margin-top: -85px; }
  .hero-bottom a { display: none; }
  .trust-strip { padding-block: 30px; }
  .logo-row { gap: 18px 28px; }
  .client-logo { font-size: 11px; }
  .logo-aster,
  .logo-field { font-size: 14px; }
  .logo-mono { font-size: 13px; }
  .section-index { margin-bottom: 50px; }
  .display-copy { font-size: clamp(40px, 12vw, 58px); }
  .manifesto-side { margin-left: 0; }
  .manifesto { padding-bottom: 100px; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2,
  .pricing-heading h2,
  .security-copy h2,
  .faq-intro h2 { font-size: clamp(47px, 14vw, 65px); }
  .bento-grid { gap: 12px; }
  .feature-card { border-radius: 20px; }
  .feature-copy { padding: 26px 22px 18px; }
  .feature-search { min-height: 570px; }
  .feature-organize { min-height: 580px; }
  .feature-version { min-height: 520px; }
  .feature-share { min-height: 680px; }
  .search-demo { right: 14px; left: 14px; height: 365px; padding: 14px; }
  .demo-search-bar { gap: 8px; padding-inline: 12px; }
  .demo-search-bar kbd { display: none; }
  .result-three { display: none; }
  .orbit-collections { transform: scale(0.9); }
  .version-demo { right: 14px; left: 14px; }
  .share-demo { top: 190px; width: 100%; height: calc(100% - 190px); }
  .share-sheet { top: 35px; right: -16px; }
  .permission-popover { right: auto; bottom: 20px; left: 16px; }
  .word-marquee { padding-block: 24px; }
  .security-section { padding: 115px 0 90px; }
  .security-copy > p { font-size: 14px; }
  .security-copy .button { width: 100%; }
  .encryption-visual { left: 50%; width: 620px; height: 520px; transform: translateX(-50%) scale(0.74); transform-origin: center; }
  .security-grid { grid-template-columns: 1fr; margin-top: 20px; }
  .security-card { min-height: 250px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.13); }
  .security-card:nth-child(3) { border-bottom: 1px solid rgba(255,255,255,0.13); }
  .security-card:last-child { border-bottom: 0; }
  .use-tabs button { justify-content: center; height: 65px; padding: 0 10px; font-size: 12px; }
  .use-tabs button span { display: none; }
  .use-tabs button::after { right: 12px; left: 12px; }
  .use-copy { padding: 48px 24px; }
  .use-copy h3 { font-size: 36px; }
  .use-visual { min-height: 510px; }
  .maker-photo-back { left: 4px; transform: rotate(-9deg) scale(0.82); transform-origin: left top; }
  .maker-photo-main { right: -28px; transform: rotate(5deg) scale(0.84); transform-origin: right top; }
  .maker-comment { top: 105px; right: 5px; }
  .maker-toolbar { right: 15px; bottom: 32px; left: 15px; }
  .polaroid { transform-origin: top center; }
  .polaroid-one { left: 0; transform: rotate(-8deg) scale(0.78); }
  .polaroid-two { left: 115px; transform: rotate(6deg) scale(0.78); }
  .polaroid-three { right: -38px; transform: rotate(12deg) scale(0.75); }
  .memory-pill { right: 15px; bottom: 25px; }
  .studio-board { width: calc(100% - 30px); }
  .studio-activity { right: 10px; bottom: 22px; min-width: 260px; }
  .testimonial-section blockquote { font-size: clamp(35px, 10.8vw, 49px); }
  .impact-grid { grid-template-columns: 1fr; margin-top: 75px; }
  .impact-stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .impact-stat:last-child { border-bottom: 0; }
  .pricing-section { padding-top: 100px; }
  .pricing-grid { width: 100%; }
  .price-card { display: block; }
  .popular-label { right: 18px; }
  .plan-features { border-top: 1px solid var(--line); border-left: 0; }
  .pricing-foot { align-items: flex-start; flex-direction: column; gap: 16px; }
  .faq-grid { gap: 55px; }
  .faq-item button { gap: 18px; }
  .faq-item button > span { align-items: flex-start; gap: 12px; font-size: 14px; }
  .faq-answer p { padding-left: 27px; padding-right: 15px; }
  .final-cta { padding: 105px 0; }
  .final-lines { width: 620px; height: 620px; }
  .final-inner h2 { font-size: clamp(56px, 16vw, 78px); }
  .footer-top { grid-template-columns: 1fr; gap: 55px; }
  .footer-links { gap: 18px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 17px; text-align: center; }
  .footer-bottom p:last-child { justify-self: center; }
  .footer-bottom > div { justify-content: center; order: -1; }
  .tour-dialog { height: min(760px, calc(100vh - 24px)); }
  .tour-dialog[open] { grid-template-columns: 1fr; grid-template-rows: 0.72fr 1fr; }
  .tour-visual { min-height: 270px; }
  .tour-content { padding: 35px 28px 25px; }
  .tour-content .eyebrow { margin-bottom: 18px; }
  .tour-content h2 { font-size: 39px; }
  .tour-description { min-height: 0; margin: 17px 0; font-size: 12px; }
  .tour-controls { margin-top: 24px; }
  .folder-a { top: 76px; left: 32px; transform: rotate(-7deg) scale(0.74); transform-origin: left top; }
  .folder-b { top: 114px; right: 15px; transform: rotate(6deg) scale(0.74); transform-origin: right top; }
  .folder-c { bottom: 18px; left: 65px; transform: rotate(-2deg) scale(0.7); transform-origin: left bottom; }
  .tour-logo { top: 15px; left: 15px; }
  .dialog-close { top: 12px; right: 12px; }
}

@media (max-width: 380px) {
  .hero-title { font-size: 50px; }
  .announcement { font-size: 10px; }
  .feature-copy h3 { font-size: 24px; }
  .use-tabs button { font-size: 11px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 1280px) {
  .archive-heading,
  .archive-grid,
  .archive-foot {
    max-width: 1120px;
  }
}

@media (max-width: 1080px) {
  .archive-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(315px, 0.92fr);
    height: 650px;
  }

  .archive-polaroid {
    left: 49.5%;
    width: 182px;
    height: 232px;
  }
}

@media (max-width: 900px) {
  .archive-heading {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 48px;
  }

  .archive-heading > p {
    max-width: 540px;
  }

  .archive-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    height: 620px;
  }

  .archive-polaroid {
    top: 44%;
    left: 48.5%;
    width: 165px;
    height: 212px;
  }

  .archive-frame figcaption strong {
    font-size: 23px;
  }

  .archive-studio figcaption strong,
  .archive-city figcaption strong {
    font-size: 16px;
  }
}

@media (max-width: 680px) {
  .archive-section {
    padding-top: 92px;
  }

  .archive-heading h2 {
    font-size: clamp(47px, 14vw, 64px);
  }

  .archive-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
    height: auto;
  }

  .archive-main {
    grid-row: auto;
    height: 465px;
    margin-bottom: 34px;
  }

  .archive-studio,
  .archive-city {
    height: 265px;
  }

  .archive-frame {
    border-radius: 20px;
  }

  .archive-main > img {
    object-position: 58% center;
  }

  .archive-frame figcaption {
    right: 20px;
    bottom: 20px;
    left: 20px;
  }

  .archive-polaroid {
    position: relative;
    top: auto;
    left: auto;
    width: 165px;
    height: 210px;
    margin: -64px 18px 0 auto;
  }

  .archive-float-card {
    top: 16px;
    left: 16px;
    width: min(285px, calc(100% - 32px));
  }

  .archive-float-status {
    display: none;
  }

  .archive-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
  }

  .archive-foot p:first-child {
    flex-wrap: wrap;
  }
}

@media (hover: none) {
  .spotlight-card::after { display: none; }
  .button:hover { transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .js .reveal { opacity: 1; translate: none; transform: none; }
}
