@font-face {
  font-family: "Young Serif Local";
  src: url("assets/YoungSerif-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --paper: #e3dfd1;
  --paper-raised: #f3f0e7;
  --paper-soft: #dbd5c3;
  --ink: #20261f;
  --muted: #5f5d50;
  --muted-strong: #3e4238;
  --line: rgba(32, 38, 31, 0.18);
  --line-strong: rgba(32, 38, 31, 0.42);
  --deep: #1c241e;
  --deep-soft: #2a342c;
  --ivory: #f4ecdb;
  --accent: #8a2f28;
  --accent-dark: #641f1b;
  --accent-ink: #f4ecdb;
  --sage: #4f6549;
  --sage-brand: #8fa888;
  --shadow: 0 32px 80px rgba(28, 36, 30, 0.16);
  --display: "Young Serif Local", Georgia, serif;
  --sans: "Hanken Grotesk", "Avenir Next", Avenir, system-ui, sans-serif;
  --shell: 1280px;
  --gutter: clamp(22px, 4vw, 64px);
  --header-height: 76px;
  --radius-small: 12px;
  --radius: 22px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #141a15;
    --paper-raised: #1c231d;
    --paper-soft: #242c25;
    --ink: #f0eada;
    --muted: #a9ad9c;
    --muted-strong: #cbcebd;
    --line: rgba(244, 236, 219, 0.16);
    --line-strong: rgba(244, 236, 219, 0.38);
    --deep: #0e120f;
    --deep-soft: #182019;
    --accent: #d8847a;
    --accent-dark: #c06a5f;
    --accent-ink: #141a15;
    --sage: #8fa888;
    --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  }
}

:root[data-theme="light"] {
  color-scheme: light;
  --paper: #e3dfd1;
  --paper-raised: #f3f0e7;
  --paper-soft: #dbd5c3;
  --ink: #20261f;
  --muted: #5f5d50;
  --muted-strong: #3e4238;
  --line: rgba(32, 38, 31, 0.18);
  --line-strong: rgba(32, 38, 31, 0.42);
  --deep: #1c241e;
  --deep-soft: #2a342c;
  --accent: #8a2f28;
  --accent-dark: #641f1b;
  --accent-ink: #f4ecdb;
  --sage: #4f6549;
  --shadow: 0 32px 80px rgba(28, 36, 30, 0.16);
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #141a15;
  --paper-raised: #1c231d;
  --paper-soft: #242c25;
  --ink: #f0eada;
  --muted: #a9ad9c;
  --muted-strong: #cbcebd;
  --line: rgba(244, 236, 219, 0.16);
  --line-strong: rgba(244, 236, 219, 0.38);
  --deep: #0e120f;
  --deep-soft: #182019;
  --accent: #d8847a;
  --accent-dark: #c06a5f;
  --accent-ink: #141a15;
  --sage: #8fa888;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
input,
textarea {
  font-family: var(--sans);
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

h1,
h2,
h3,
p,
blockquote,
figure,
dl,
dd {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-space {
  padding-block: clamp(112px, 12vw, 178px);
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 11px 18px;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  box-shadow: 0 14px 34px color-mix(in srgb, var(--accent-dark) 28%, transparent);
}

.button:active {
  transform: translateY(0);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 15px;
}

.button-quiet {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.button-quiet:hover {
  background: var(--ink);
  color: var(--paper);
  box-shadow: none;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  padding-block: 8px;
  border-bottom: 1px solid var(--accent);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.2;
  transition: color 180ms ease, border-color 180ms ease;
}

.text-link:hover {
  color: var(--accent);
}

.text-link-light {
  color: var(--ivory);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label span {
  color: var(--accent);
}

/* Header */

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.home-page .site-header {
  border-color: rgba(244, 236, 219, 0.14);
  background: var(--deep);
  color: var(--ivory);
}

.nav-shell {
  display: flex;
  height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.brand {
  display: block;
  flex: 0 0 auto;
  width: 152px;
}

.brand img {
  width: 100%;
  height: auto;
}

.brand-light {
  display: none;
}

.home-page .brand-light {
  display: block;
}

.home-page .brand-dark {
  display: none;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a,
.login-link {
  position: relative;
  padding-block: 8px;
  color: color-mix(in srgb, currentColor 74%, transparent);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after,
.login-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--accent);
  transition: transform 220ms ease;
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-button {
  display: none;
  min-width: 62px;
  min-height: 42px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.mobile-menu {
  border-top: 1px solid var(--line);
  padding: 14px var(--gutter) 26px;
  background: var(--paper);
}

.home-page .mobile-menu {
  border-color: rgba(244, 236, 219, 0.14);
  background: var(--deep);
  color: var(--ivory);
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.home-page .mobile-menu a {
  border-color: rgba(244, 236, 219, 0.14);
}

.mobile-menu .mobile-menu-cta {
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  text-align: center;
}

/* Home hero */

.home-hero {
  position: relative;
  min-height: 640px;
  height: min(900px, calc(100svh - var(--header-height)));
  overflow: hidden;
  background: var(--deep);
  color: var(--ivory);
  isolation: isolate;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(14, 18, 15, 0.18);
}

.home-hero-image {
  position: absolute;
  z-index: -3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.home-hero-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(to top, rgba(14, 18, 15, 0.62) 0%, rgba(14, 18, 15, 0) 26%),
    linear-gradient(100deg, rgba(14, 18, 15, 0.88) 0%, rgba(14, 18, 15, 0.4) 45%, rgba(14, 18, 15, 0) 65%);
}

.home-hero-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding-top: clamp(76px, 11vh, 122px);
  padding-bottom: 28px;
}

.home-hero-copy {
  width: min(740px, 58vw);
}

.home-hero h1 {
  max-width: none;
  color: var(--ivory);
  font-size: clamp(64px, 5.45vw, 78px);
  line-height: 0.99;
}

.home-hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero-lead {
  max-width: 520px;
  margin-top: 28px;
  color: rgba(244, 236, 219, 0.82);
  font-size: clamp(18px, 1.5vw, 20px);
  line-height: 1.52;
}

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

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(244, 236, 219, 0.26);
}

.hero-proof li {
  display: flex;
  min-height: 74px;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  padding: 14px 28px;
  border-left: 1px solid rgba(244, 236, 219, 0.18);
}

.hero-proof li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--ivory);
  font-size: 15px;
}

.hero-proof span {
  color: rgba(244, 236, 219, 0.62);
  font-size: 14px;
}

/* Manifesto */

.manifesto {
  background: var(--paper);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 48px;
  align-items: end;
}

.manifesto-intro {
  max-width: 27ch;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 18px;
}

.manifesto h2 {
  max-width: 13ch;
  font-size: clamp(42px, 4.4vw, 54px);
  line-height: 1.03;
}

/* Service */

.service {
  padding-top: 40px;
}

.editorial-head {
  display: grid;
  grid-template-columns: 2fr 6fr 3fr;
  gap: 42px;
  align-items: end;
  margin-bottom: clamp(70px, 8vw, 108px);
}

.editorial-head h2 {
  max-width: 14ch;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.editorial-head > p:last-child {
  max-width: 31ch;
  color: var(--muted);
  font-size: 18px;
}

.service-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(54px, 8vw, 112px);
  align-items: start;
}

.service-principle {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  min-height: min(560px, calc(100svh - var(--header-height) - 76px));
  display: flex;
  flex-direction: column;
  padding: 28px 0 30px;
  border-top: 3px solid var(--accent);
  border-bottom: 1px solid var(--line-strong);
}

.service-principle > p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
}

.service-principle h3 {
  max-width: 8ch;
  margin-top: 22px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 0.98;
}

.service-principle dl {
  margin-top: auto;
}

.service-principle dl div {
  display: grid;
  grid-template-columns: minmax(104px, 0.8fr) 1.4fr;
  gap: 24px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.service-principle dt {
  color: var(--accent);
  font-family: var(--display);
  font-size: 25px;
  line-height: 1;
}

.service-principle dd {
  max-width: 24ch;
  color: var(--muted-strong);
  font-size: 15px;
  line-height: 1.45;
}

.service-scenes {
  border-top: 1px solid var(--line-strong);
}

.service-scenes li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: clamp(34px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
}

.scene-number {
  padding-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-scenes h3 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
}

.service-scenes p {
  max-width: 47ch;
  margin-top: 12px;
  color: var(--muted);
  font-size: 18px;
}

/* Demo */

.demo-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(58px, 8vw, 118px);
  align-items: start;
}

.demo-stage {
  border-radius: var(--radius);
  padding: 20px;
  background: var(--deep);
  box-shadow: var(--shadow);
}

.demo-stage-top {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  color: rgba(244, 236, 219, 0.7);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.live-dot i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-brand);
}

.menu-device {
  position: relative;
  width: min(100%, 480px);
  height: 690px;
  margin-inline: auto;
  overflow: hidden;
  border: 8px solid #0b0f0c;
  border-radius: 28px;
  background: #fffdf8;
}

.menu-device iframe {
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  background: #fffdf8;
  transition: opacity 260ms ease;
}

.menu-device iframe.is-loaded {
  opacity: 1;
}

.frame-state {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 16px;
  background: #fffdf8;
  color: #20261f;
  text-align: center;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.frame-state.is-hidden {
  visibility: hidden;
  opacity: 0;
}

.loader-mark {
  width: 36px;
  height: 36px;
  margin-inline: auto;
  border: 3px solid rgba(32, 38, 31, 0.16);
  border-top-color: #8a2f28;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.mobile-demo-note {
  display: none;
  padding: 12px 4px 0;
  color: rgba(244, 236, 219, 0.65);
  font-size: 13px;
}

.demo-copy {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.demo-copy h2 {
  max-width: 9ch;
  margin-top: 22px;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.02;
}

.demo-lead {
  max-width: 43ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.demo-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.demo-tab {
  min-height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 9px 15px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

.demo-tab:hover,
.demo-tab.is-active {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
}

.demo-facts {
  margin-top: 36px;
  border-top: 1px solid var(--line-strong);
}

.demo-facts div {
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.demo-facts dt {
  font-weight: 700;
}

.demo-facts dd {
  color: var(--muted);
}

.external-demo {
  margin-top: 28px;
}

/* Founder */

.founder-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(58px, 9vw, 126px);
  align-items: center;
}

.founder-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
}

.founder-photo figcaption {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13.5px;
}

.founder-name strong {
  margin-right: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
}

.founder-ig {
  width: max-content;
  color: var(--muted-strong);
  font-weight: 600;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 1px;
  transition: color 180ms ease, border-color 180ms ease;
}

.founder-ig:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.founder-copy h2 {
  max-width: 16ch;
  margin-top: 24px;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.founder-copy blockquote {
  max-width: 33ch;
  margin-top: 44px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
  font-family: var(--display);
  font-size: clamp(25px, 2.5vw, 32px);
  line-height: 1.27;
}

.founder-story {
  max-width: 54ch;
  margin-top: 38px;
  color: var(--muted);
}

/* Comparison */

.change-head {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 62px;
}

.change-head h2 {
  font-size: clamp(42px, 4.2vw, 52px);
}

.comparison {
  border-top: 1px solid var(--line-strong);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 3.4fr 4.3fr 4.3fr;
  gap: 28px;
}

.comparison-head {
  padding: 15px 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.comparison-row {
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.comparison-row h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.comparison-row p {
  max-width: 36ch;
  color: var(--muted);
}

.comparison-row p:last-child {
  color: var(--ink);
  font-weight: 600;
}

/* Start */

.start-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(60px, 8vw, 112px);
  align-items: start;
}

.start-copy h2 {
  max-width: 11ch;
  margin-top: 24px;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.start-copy > p:not(.section-label) {
  max-width: 38ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
}

.start-copy .button {
  margin-top: 32px;
}

.start-flow,
.process-list {
  border-top: 1px solid var(--line-strong);
}

.start-flow li,
.process-list li {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.start-flow li > span,
.process-list li > span {
  padding-top: 5px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.start-flow h3,
.process-list h3 {
  font-size: 28px;
}

.start-flow p,
.process-list p {
  margin-top: 6px;
  color: var(--muted);
}

/* FAQ */

.faq-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: clamp(60px, 8vw, 112px);
  align-items: start;
}

.faq-head {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.faq-head h2 {
  max-width: 10ch;
  margin-top: 24px;
  font-size: clamp(40px, 4vw, 50px);
}

.faq-head > p:last-child {
  max-width: 34ch;
  margin-top: 20px;
  color: var(--muted);
}

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

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

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 20px;
  height: 2px;
  background: var(--accent);
  transition: transform 180ms ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0deg);
}

.faq-list details p {
  max-width: 62ch;
  padding: 0 54px 28px 0;
  color: var(--muted);
}

/* Closing and footer */

.closing {
  padding-bottom: clamp(90px, 10vw, 150px);
}

.closing-panel {
  display: flex;
  min-height: 310px;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  border-radius: var(--radius);
  padding: clamp(38px, 6vw, 76px);
  background: var(--deep);
  color: var(--ivory);
}

.closing-panel p {
  color: rgba(244, 236, 219, 0.68);
}

.closing-panel h2 {
  max-width: 14ch;
  margin-top: 12px;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.closing-panel .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 76px 0 30px;
  border-top: 1px solid rgba(143, 168, 136, 0.25);
  background: var(--deep);
  color: rgba(244, 236, 219, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 58px;
}

.footer-brand img {
  width: 166px;
  height: auto;
}

.footer-brand p {
  max-width: 29ch;
  margin-top: 18px;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: rgba(244, 236, 219, 0.46);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  width: max-content;
  padding: 6px 0;
  color: rgba(244, 236, 219, 0.78);
}

.footer-grid a:hover {
  color: var(--ivory);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(244, 236, 219, 0.14);
  color: rgba(244, 236, 219, 0.45);
  font-size: 13px;
}

/* Pricing hero */

.pricing-hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  padding-block: clamp(68px, 7vw, 96px);
}

.pricing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 6vw, 80px);
  align-items: center;
}

.pricing-intro h1 {
  max-width: none;
  margin-top: 24px;
  font-size: clamp(58px, 5.2vw, 72px);
  line-height: 0.99;
}

.pricing-intro h1 span {
  display: block;
  white-space: nowrap;
}

.pricing-lead {
  max-width: 48ch;
  margin-top: 26px;
  color: var(--muted);
  font-size: 19px;
}

.pricing-intro .hero-actions {
  margin-top: 34px;
}

.founder-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 52px;
}

.founder-note::before {
  content: "";
  width: 46px;
  height: 2px;
  flex: 0 0 auto;
  margin-top: 12px;
  background: var(--accent);
}

.founder-note p {
  display: flex;
  flex-direction: column;
  max-width: 37ch;
  color: var(--muted);
  font-size: 14px;
}

.founder-note strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 400;
}

.price-hero-block {
  padding-left: clamp(42px, 6vw, 82px);
  border-left: 1px solid var(--line-strong);
}

.price-offer {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-main {
  display: grid;
  width: fit-content;
  grid-template-columns: auto auto;
  align-items: start;
  margin-top: 12px;
  font-family: var(--display);
  font-variant-numeric: tabular-nums;
  line-height: 0.82;
}

.price-prefix {
  grid-column: 1 / -1;
  margin-bottom: 10px;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.price-number {
  font-size: clamp(126px, 12vw, 158px);
  letter-spacing: -0.065em;
}

.price-main sup {
  margin: 1px 0 0 12px;
  color: var(--accent);
  font-size: clamp(48px, 5vw, 68px);
  line-height: 1;
}

.price-period {
  margin-top: 16px;
  font-family: var(--display);
  font-size: 28px;
}

.price-renewal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  font-size: 18px;
}

.price-renewal span {
  color: var(--muted);
}

.price-facts {
  margin-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.price-facts div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.price-facts dt {
  color: var(--muted);
  font-size: 14px;
}

.price-facts dd {
  font-weight: 600;
}

/* Pricing outcomes */

.outcome-rail {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.outcome-rail .shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.outcome-rail .shell > div {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 18px;
  padding: 20px 34px;
  border-left: 1px solid var(--line);
}

.outcome-rail .shell > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.outcome-rail span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.11em;
}

.outcome-rail p {
  display: flex;
  flex-direction: column;
  color: var(--muted);
}

.outcome-rail strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.1;
}

/* Pricing value */

.price-value-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(64px, 9vw, 126px);
  align-items: start;
}

.price-value h2 {
  max-width: 10ch;
  margin-top: 24px;
  font-size: clamp(42px, 4.2vw, 52px);
}

.price-value header > p:last-child {
  max-width: 31ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
}

.value-lines {
  border-top: 1px solid var(--line-strong);
}

.value-lines article {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.value-lines p {
  color: var(--muted);
}

.value-lines strong {
  font-family: var(--display);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.25;
}

/* Included */

.included {
  background: var(--paper-raised);
}

.included-head {
  display: grid;
  grid-template-columns: 2.2fr 5.8fr 3fr;
  gap: 42px;
  align-items: end;
  margin-bottom: 72px;
}

.included-head h2 {
  max-width: 15ch;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.included-head > p:last-child {
  max-width: 32ch;
  color: var(--muted);
}

.included-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
}

.included-columns section {
  padding: 34px 38px 0;
  border-left: 1px solid var(--line);
}

.included-columns section:first-child {
  padding-left: 0;
  border-left: 0;
}

.included-columns h3 {
  margin-bottom: 24px;
  font-size: 30px;
}

.included-columns li {
  position: relative;
  padding: 16px 0 16px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-strong);
}

.included-columns li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
}

/* Founder proof */

.founder-proof-statement {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(58px, 8vw, 112px);
  align-items: start;
  padding-top: 38px;
  border-top: 1px solid var(--line-strong);
}

.founder-proof-heading > p {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

.founder-proof-heading h2 {
  max-width: 10ch;
  margin-top: 20px;
  font-size: clamp(48px, 5.5vw, 70px);
  line-height: 0.99;
}

.founder-proof-copy > p:first-child {
  max-width: 39ch;
  color: var(--muted);
  font-size: 18px;
}

.founder-proof-copy blockquote {
  max-width: 31ch;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 3px solid var(--accent);
  font-family: var(--display);
  font-size: 27px;
  line-height: 1.25;
}

.founder-proof-signature {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.founder-proof-signature strong {
  color: var(--ink);
  font-size: 16px;
}

.founder-proof-copy .text-link {
  margin-top: 30px;
}

/* Process */

.process-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(62px, 9vw, 126px);
  align-items: start;
}

.process-grid header h2 {
  max-width: 11ch;
  margin-top: 24px;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.process-grid header > p:last-child {
  max-width: 35ch;
  margin-top: 22px;
  color: var(--muted);
}

/* Contact */

.contact {
  background: var(--paper-raised);
}

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(62px, 9vw, 126px);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 38px);
}

.contact-copy h2 {
  max-width: 11ch;
  margin-top: 24px;
  font-size: clamp(42px, 4.2vw, 52px);
  line-height: 1.04;
}

.contact-copy > p:not(.section-label) {
  max-width: 39ch;
  margin-top: 24px;
  color: var(--muted);
}

.contact-copy ul {
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.contact-copy li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted-strong);
}

.form-shell {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-heading {
  margin-bottom: 30px;
}

.form-heading h3 {
  font-size: 34px;
}

.form-heading p {
  margin-top: 4px;
  color: var(--muted);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: block;
  margin-bottom: 18px;
}

.field > span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
}

.field small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-small);
  padding: 13px 14px;
  background: var(--paper-raised);
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 16%, transparent);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-submit[disabled] {
  opacity: 0.58;
  cursor: wait;
}

.form-fineprint {
  margin-top: 13px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-message {
  margin-top: 18px;
  border-radius: var(--radius-small);
  padding: 15px 16px;
  font-size: 14px;
}

.form-success {
  background: color-mix(in srgb, var(--sage) 20%, var(--paper));
  color: var(--muted-strong);
}

.form-error {
  border: 1px solid var(--accent);
  color: var(--muted-strong);
}

.form-error a {
  color: var(--accent);
  text-decoration: underline;
}

/* Pricing closing */

.pricing-closing {
  background: var(--deep);
  color: var(--ivory);
}

.pricing-closing-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 70px;
  align-items: center;
  padding-block: clamp(112px, 13vw, 164px);
}

.pricing-closing-copy > p:first-child {
  color: rgba(244, 236, 219, 0.68);
}

.pricing-closing-copy h2 {
  max-width: 12ch;
  margin-top: 14px;
  font-size: clamp(46px, 5vw, 64px);
  line-height: 1.02;
}

.pricing-closing-body {
  max-width: 36ch;
  margin-top: 24px;
  color: rgba(244, 236, 219, 0.76);
  font-size: 18px;
}

.pricing-closing-copy .button {
  margin-top: 34px;
}

.pricing-closing-assurance {
  border-top: 1px solid rgba(244, 236, 219, 0.28);
}

.pricing-closing-assurance div {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(244, 236, 219, 0.18);
}

.pricing-closing-assurance dt {
  font-family: var(--display);
  font-size: 28px;
}

.pricing-closing-assurance dd {
  max-width: 21ch;
  color: rgba(244, 236, 219, 0.68);
}

/* Motion */

@media (prefers-reduced-motion: no-preference) {
  html.js [data-load] {
    opacity: 0;
    transform: translateY(18px);
    animation: load-in 700ms cubic-bezier(0.22, 0.72, 0.24, 1) forwards;
  }

  html.js [data-load]:nth-child(2) { animation-delay: 90ms; }
  html.js [data-load]:nth-child(3) { animation-delay: 170ms; }
  html.js [data-load]:nth-child(4) { animation-delay: 230ms; }

  @keyframes load-in {
    to { opacity: 1; transform: none; }
  }

  html.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 620ms ease, transform 700ms cubic-bezier(0.22, 0.72, 0.24, 1);
  }

  html.js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }

  html.js .media-reveal {
    transform: translateY(10px);
    transition: opacity 660ms ease, transform 820ms cubic-bezier(0.22, 0.72, 0.24, 1);
  }

  html.js .media-reveal img {
    clip-path: inset(0 0 12% 0 round var(--radius));
    transition: clip-path 900ms cubic-bezier(0.22, 0.72, 0.24, 1);
  }

  html.js .media-reveal.is-visible {
    transform: none;
  }

  html.js .media-reveal.is-visible img {
    clip-path: inset(0 0 0 0 round var(--radius));
  }
}

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

/* Responsive */

@media (max-width: 1160px) {
  .desktop-nav,
  .login-link {
    display: none;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-actions {
    margin-left: auto;
  }

  .editorial-head,
  .included-head {
    grid-template-columns: 2fr 6fr;
  }

  .editorial-head > p:last-child,
  .included-head > p:last-child {
    grid-column: 2;
    max-width: 50ch;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 70px;
  }

  .section-space {
    padding-block: clamp(90px, 14vw, 130px);
  }

  .home-hero {
    height: auto;
    min-height: 760px;
  }

  .home-hero-image {
    object-position: 62% center;
  }

  .home-hero-shade {
    background: rgba(14, 18, 15, 0.5);
  }

  .home-hero-inner {
    min-height: 760px;
    padding-top: 82px;
    padding-bottom: 24px;
  }

  .home-hero-copy {
    width: min(680px, 78vw);
  }

  .home-hero h1 span {
    white-space: normal;
  }

  .manifesto-grid,
  .service-layout,
  .demo-layout,
  .founder-layout,
  .start-layout,
  .faq-layout,
  .pricing-hero-grid,
  .price-value-grid,
  .founder-proof-statement,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-grid {
    gap: 28px;
  }

  .manifesto-intro {
    max-width: 36ch;
  }

  .editorial-head,
  .included-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .editorial-head > p:last-child,
  .included-head > p:last-child {
    grid-column: auto;
  }

  .service-layout {
    gap: 52px;
  }

  .service-principle,
  .demo-copy,
  .faq-head,
  .contact-copy {
    position: static;
  }

  .service-principle {
    min-height: 520px;
  }

  .demo-copy {
    order: -1;
  }

  .demo-copy h2 {
    max-width: 12ch;
  }

  .founder-photo {
    width: min(620px, 82%);
  }

  .founder-copy {
    max-width: 760px;
  }

  .change-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .start-copy,
  .faq-head,
  .price-value header,
  .process-grid header,
  .contact-copy {
    max-width: 650px;
  }

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

  .price-hero-block {
    padding: 28px 0 0;
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .outcome-rail .shell > div {
    padding-inline: 20px;
  }

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

  .included-columns section,
  .included-columns section:first-child {
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .included-columns section:last-child {
    border-bottom: 0;
  }

  .founder-proof-statement {
    gap: 54px;
  }

  .contact-grid {
    gap: 52px;
  }

  .pricing-closing-grid {
    grid-template-columns: 1fr 0.75fr;
    gap: 48px;
    padding-block: 100px;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --radius: 18px;
  }

  body {
    font-size: 16px;
  }

  .brand {
    width: 126px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .home-hero {
    min-height: 780px;
  }

  .home-hero-image {
    object-position: 66% center;
  }

  .home-hero-shade {
    background: rgba(14, 18, 15, 0.58);
  }

  .home-hero-inner {
    min-height: 780px;
    padding-top: 62px;
    padding-bottom: 16px;
  }

  .home-hero-copy {
    width: 100%;
  }

  .home-hero h1 {
    max-width: 9.8ch;
    font-size: clamp(44px, 13.2vw, 52px);
    line-height: 1;
  }

  .home-hero h1 span:first-child {
    white-space: nowrap;
  }

  .hero-lead {
    max-width: 32ch;
    margin-top: 22px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 28px;
  }

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

  .hero-proof li,
  .hero-proof li:first-child {
    min-height: 48px;
    padding: 10px 0;
    border-top: 1px solid rgba(244, 236, 219, 0.15);
    border-left: 0;
  }

  .hero-proof li:first-child {
    border-top: 0;
  }

  .hero-proof span {
    display: none;
  }

  .manifesto h2,
  .editorial-head h2,
  .demo-copy h2,
  .founder-copy h2,
  .change-head h2,
  .start-copy h2,
  .faq-head h2,
  .price-value h2,
  .included-head h2,
  .founder-proof-heading h2,
  .process-grid header h2,
  .contact-copy h2 {
    font-size: clamp(35px, 9.8vw, 40px);
  }

  .editorial-head {
    margin-bottom: 54px;
  }

  .service-scenes li {
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 30px 0;
  }

  .service-scenes h3 {
    font-size: 28px;
  }

  .service-scenes p {
    font-size: 16px;
  }

  .demo-stage {
    margin-inline: -8px;
    padding: 12px;
  }

  .demo-stage-top {
    padding-inline: 3px;
    font-size: 11px;
  }

  .menu-device {
    height: min(540px, 68svh);
    border-width: 6px;
    border-radius: 22px;
  }

  .menu-device iframe {
    pointer-events: none;
  }

  .mobile-demo-note {
    display: block;
  }

  .demo-tabs {
    flex-wrap: nowrap;
    margin-right: calc(var(--gutter) * -1);
    padding-right: var(--gutter);
    overflow-x: auto;
    scrollbar-width: none;
  }

  .demo-tabs::-webkit-scrollbar {
    display: none;
  }

  .demo-tab {
    flex: 0 0 auto;
  }

  .demo-facts div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .founder-photo {
    width: 100%;
  }

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

  .founder-copy blockquote {
    font-size: 24px;
  }

  .comparison-head {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 28px 0;
  }

  .comparison-row h3 {
    font-size: 20px;
  }

  .comparison-row p {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .comparison-row p::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .start-flow li,
  .process-list li {
    grid-template-columns: 46px 1fr;
    gap: 12px;
  }

  .start-flow h3,
  .process-list h3 {
    font-size: 25px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 17px;
  }

  .faq-list details p {
    padding-right: 30px;
  }

  .closing-panel {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-panel h2 {
    font-size: 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-hero {
    padding-block: 72px 92px;
  }

  .pricing-intro h1 {
    max-width: 9.5ch;
    font-size: clamp(44px, 13vw, 52px);
  }

  .pricing-intro h1 span {
    display: inline;
    white-space: normal;
  }

  .pricing-lead {
    font-size: 17px;
  }

  .founder-note {
    margin-top: 40px;
  }

  .prices-page .founder-note {
    display: none;
  }

  .price-number {
    font-size: 102px;
  }

  .price-main sup {
    font-size: 45px;
  }

  .price-prefix {
    margin-bottom: 8px;
    font-size: 17px;
  }

  .price-period {
    margin-top: 8px;
    font-size: 24px;
  }

  .price-facts div {
    grid-template-columns: 116px 1fr;
    gap: 14px;
  }

  .outcome-rail .shell {
    grid-template-columns: 1fr;
  }

  .outcome-rail .shell > div,
  .outcome-rail .shell > div:first-child {
    min-height: 78px;
    padding: 16px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .outcome-rail .shell > div:first-child {
    border-top: 0;
  }

  .value-lines article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .included-head {
    margin-bottom: 46px;
  }

  .included-columns h3 {
    font-size: 27px;
  }

  .service-principle {
    min-height: 0;
    padding-block: 24px 28px;
  }

  .service-principle h3 {
    max-width: 9ch;
    font-size: 44px;
  }

  .service-principle dl {
    margin-top: 54px;
  }

  .service-principle dl div {
    grid-template-columns: 104px 1fr;
    gap: 18px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .form-shell {
    padding: 26px 20px;
  }

  .pricing-closing-grid {
    grid-template-columns: 1fr;
    gap: 52px;
    padding-block: 88px;
  }

  .pricing-closing-copy h2 {
    font-size: 42px;
  }

  .pricing-closing-assurance div {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

@media (prefers-color-scheme: dark) {
  .prices-page .brand-light {
    display: block;
  }

  .prices-page .brand-dark {
    display: none;
  }

  .menu-device,
  .menu-device iframe,
  .frame-state {
    color-scheme: light;
  }
}

html[data-theme="light"] .prices-page .brand-light {
  display: none;
}

html[data-theme="light"] .prices-page .brand-dark {
  display: block;
}

html[data-theme="dark"] .prices-page .brand-light {
  display: block;
}

html[data-theme="dark"] .prices-page .brand-dark {
  display: none;
}

/* Variante palette "Nero" (?palette=nero): superfici scure neutre, gradini di chiaro piu' marcati.
   In coda al file per vincere i pareggi di specificita' con i blocchi tema. */

:root[data-palette="nero"] {
  --deep: #17181b;
  --deep-soft: #27292e;
  --shadow: 0 32px 80px rgba(16, 17, 19, 0.16);
}

@media (prefers-color-scheme: dark) {
  :root[data-palette="nero"] {
    --paper: #121316;
    --paper-raised: #1b1d21;
    --paper-soft: #26282d;
    --deep: #0a0b0d;
    --deep-soft: #1b1d22;
    --muted: #a7a7a1;
    --muted-strong: #cbcbc4;
    --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
  }
}

:root[data-palette="nero"][data-theme="light"] {
  --deep: #17181b;
  --deep-soft: #27292e;
  --shadow: 0 32px 80px rgba(16, 17, 19, 0.16);
}

:root[data-palette="nero"][data-theme="dark"] {
  --paper: #121316;
  --paper-raised: #1b1d21;
  --paper-soft: #26282d;
  --deep: #0a0b0d;
  --deep-soft: #1b1d22;
  --muted: #a7a7a1;
  --muted-strong: #cbcbc4;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.34);
}
