@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap');

/* Claudia: warm paper, ink, and copper. Shared by the public site. */
:root {
  --paper: #f8f6f2;
  --paper-soft: #f0ede7;
  --white: #fffefa;
  --ink: #282923;
  --muted: #61625a;
  --quiet: #717168;
  --copper: #a54c30;
  --copper-dark: #833b26;
  --line: #dedbd3;
  --green: #42634f;
}
html { scroll-behavior: smooth; scroll-padding-top: 108px; }
body.home-page, body.content-page {
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body *, body *::before, body *::after { box-sizing: border-box; }
::selection { background: #e9c9b8; color: #282923; }
body h1, body h2, body h3, body .font-headline {
  font-family: 'Manrope', 'Inter', sans-serif;
  letter-spacing: -.035em;
}
body h1, body h2 { font-weight: 600; }
body h3 { font-weight: 650; letter-spacing: -.025em; }
body p { text-wrap: pretty; }
body .bg-surface { background-color: var(--paper); }
body .bg-container-low { background-color: var(--paper-soft); }
body .bg-container { background-color: #eae6de; }
body .bg-white { background: var(--white) !important; }
body .text-on-surface { color: var(--ink); }
body .text-on-variant { color: var(--muted); }
body .text-outline { color: var(--quiet); }
body .text-brand, body .text-teal, body .text-teal-tint { color: var(--copper); }
body .bg-brand, body .bg-teal { background-color: var(--copper); }
body .border-outline-variant, body .divide-outline-variant > :not([hidden]) ~ :not([hidden]) { border-color: var(--line); }
body .text-emerald-600 { color: var(--green) !important; }
body .bg-emerald-100 { background-color: #e9eee7 !important; }
body .text-amber-700 { color: #806021 !important; }
body .bg-amber-100 { background-color: #f4ecd6 !important; }
body .text-red-500 { color: #a05748 !important; }
body .rounded-2xl { border-radius: 18px !important; }
body .rounded-xl { border-radius: 12px !important; }
body .rounded-3xl { border-radius: 20px; }
body .shadow-xl, body .shadow-lg { box-shadow: 0 12px 36px -24px #33302630 !important; }
body code { color: var(--copper); overflow-wrap: anywhere; }
body pre { overflow-x: auto; max-width: 100%; }
body kbd { background: #eae6de; color: var(--ink); border: 1px solid #d9d4c9; box-shadow: 0 2px 0 #d9d4c9; }
body a { text-underline-offset: 4px; }
body a:focus-visible, body button:focus-visible, body summary:focus-visible {
  outline: 2px solid var(--copper);
  outline-offset: 5px;
}
body a[class*="bg-brand"].text-white, body a.bg-teal,
body a[download], body a[href*="checkout/buy/"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 9px !important;
  font-weight: 600;
  box-shadow: 0 2px 3px #33291b0b;
  transition: background-color .2s, border-color .2s, box-shadow .2s, transform .2s;
}
body a.bg-brand:hover, body a.bg-teal:hover {
  background-color: var(--copper-dark);
  box-shadow: 0 5px 14px #873b2420;
  transform: translateY(-2px);
}
.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24; flex-shrink: 0; }
body .animate-pulse-dot { animation: none; }

/* Quiet, inset navigation with the existing wordmark and links. */
body:is(.home-page, .content-page) > nav {
  height: 82px;
  padding: 0 max(32px, calc((100vw - 1280px) / 2));
  gap: 24px;
  background: #f8f6f2ed;
  border-color: var(--line);
  backdrop-filter: blur(20px);
}
body > nav > a:first-child {
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -.055em;
  gap: 10px;
}
body > nav > a:first-child > span:first-child {
  width: 20px;
  height: 20px;
  border-radius: 50% !important;
  border: 5px solid var(--copper);
  background: transparent;
  box-shadow: none;
  position: relative;
}
body > nav > a:first-child > span:first-child::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  top: 1px;
  left: 8px;
  background: var(--paper);
  border-radius: 50%;
}
body > nav > ul { gap: 24px; }
body > nav > ul a { font-size: 12px; font-weight: 500; color: #5c5b53; }
body > nav > ul a:hover { color: var(--copper); }
body:is(.home-page, .content-page) > nav a.bg-brand {
  background: var(--ink);
  color: #fffefa;
  font-size: 12px;
  min-height: 42px;
  white-space: nowrap;
  padding: 10px 17px;
}
body:is(.home-page, .content-page) > nav a.bg-brand:hover { background: var(--copper); }
#mobile-menu {
  top: 81px;
  background: var(--paper);
  border-color: var(--line);
  max-height: calc(100dvh - 81px);
  overflow-y: auto;
}
#mobile-menu > div { padding: 24px 32px; gap: 0; }
#mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 16px; }

/* A two-column editorial opening, using the original workflow example. */
body .hero {
  padding: 100px 40px 100px;
  text-align: left;
  overflow: hidden;
  background: radial-gradient(ellipse at 85% 40%, #eadbcf70, transparent 50%), var(--paper);
}
.hero > .absolute { display: none; }
.hero .hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.hero-copy { min-width: 0; }
.hero .hero-badge {
  background: transparent;
  border: 0;
  padding: 0;
  margin-bottom: 26px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--muted) !important;
}
.hero-badge > span { color: var(--copper); font-size: 17px; }
body .hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(56px, 5.25vw, 78px);
  line-height: 1.015;
  font-weight: 400;
  letter-spacing: -.035em;
  margin-bottom: 26px;
}
.hero h1 > span { font-style: italic; color: var(--copper); }
.hero-copy > p:not(.hero-proof) {
  max-width: 505px;
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.85;
  color: #646259;
}
.hero .hero-actions { justify-content: flex-start; gap: 12px; }
.hero-actions > a { padding: 15px 20px; font-size: 12px; min-height: 50px; border-radius: 9px !important; }
.hero-actions > a:first-child { box-shadow: 0 3px 6px #853a2320; }
.hero-actions > a:last-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  border-color: #d5d1c8;
  background: transparent;
}
.hero-actions > a:last-child::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}
.hero-actions > a:last-child:hover { background: #ede9e0; border-color: #b8b1a5; }
.hero .hero-proof { font-size: 11px; color: var(--quiet); margin-top: 18px; line-height: 1.7; }
.hero .demo-stage { width: 100%; max-width: none; margin: 0; padding: 0; position: relative; isolation: isolate; }
.demo-stage::before, .demo-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f1ebe0;
  border: 1px solid #dcd5c8;
  border-radius: 14px;
  transform: rotate(3deg) translate(8px, 7px);
}
.demo-stage::before { background: #e9e0d4; transform: rotate(6deg) translate(11px, 10px); }
body .demo-window {
  border-radius: 12px !important;
  background: #fffefa !important;
  border-color: #d6d0c4;
  box-shadow: 0 28px 55px -28px #51412b45, 0 3px 8px #51412b0a !important;
}
.demo-window > div:first-child { min-height: 53px; padding: 14px 18px; background: #f5f2eb; border-color: #e7e2d8; gap: 6px; }
.demo-window > div:first-child > span:not(:last-child) { width: 7px; height: 7px; background: #c5b8a6; }
.demo-window > div:first-child > span:first-child { background: #bd7356; }
.demo-window > div:first-child > span:last-child { font-size: 9px; color: #777264; padding-left: 4px; overflow-wrap: anywhere; }
.demo-window > div:last-child { padding: 27px 23px 30px; font-size: 11.5px; line-height: 2.05; overflow-wrap: anywhere; }
.demo-window .text-outline { color: #746c60; }
.demo-window .text-on-variant { color: #56584d; }
.demo-window .text-brand { color: #a05036; }
.demo-window .text-teal, .demo-window .text-teal-tint { color: #44644e; }

/* Sections share one measured content width and a consistent rhythm. */
.home-page > section:not(.hero):not(.trust-strip) { padding: 104px max(32px, calc((100vw - 1180px) / 2)); }
.home-page > section h2 { font-size: clamp(30px, 3.2vw, 44px); font-weight: 600; line-height: 1.2; max-width: 790px; margin-left: auto; margin-right: auto; }
.home-page > section > p[class*="uppercase"], .compliance-section > div > p:first-child { font-size: 10px; letter-spacing: .17em; margin-bottom: 18px; }
.home-page > section > h2 + p, .compliance-section h2 + p { font-size: 15px; line-height: 1.8; margin-top: 18px; }
.home-page > section .grid { min-width: 0; }
.home-page > section .grid > * { min-width: 0; }
body .trust-strip { padding: 30px 32px; background: #f0ede6; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-strip > div { max-width: 1180px; gap: 0; text-align: left; }
.trust-strip > div > div { display: grid; grid-template-columns: 28px 1fr; column-gap: 13px; row-gap: 3px; padding: 4px 24px; align-items: start; }
.trust-strip > div > div:first-child { padding-left: 0; }
.trust-strip > div > div + div { border-left: 1px solid #d9d5cc; }
.trust-strip .material-symbols-outlined { grid-row: span 2; font-size: 24px; color: #8e705a !important; padding-top: 3px; }
.trust-strip .text-sm { font-size: 11px; font-weight: 600; }
.trust-strip .text-xs { font-size: 10px; line-height: 1.8; color: #727066; }

#how-it-works > p, #how-it-works > h2 { text-align: left; margin-left: 0; }
#how-it-works > .grid { max-width: none; gap: 16px; }
#how-it-works > .grid > div { padding: 30px 32px; border: 1px solid var(--line); border-radius: 12px !important; background: transparent !important; }
#how-it-works > .grid > div:hover { background: #fffefa !important; transform: translateY(-2px); border-color: #c9bcac; }
#how-it-works .w-9 { background: #eae3d8; color: #916347; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 26px; width: 36px; height: 36px; border-radius: 50%; margin-bottom: 22px; }
#how-it-works h3 { font-size: 18px; margin-bottom: 9px; }
#how-it-works .text-sm { font-size: 13px; line-height: 1.9; }
#how-it-works > .grid > div:nth-child(3) { background: #eeeae1 !important; border-color: #ded6c8; padding: 35px 32px; }
#how-it-works pre { padding: 23px 26px; background: #f8f6f0; color: #767267; border-color: #ded6c8; font-size: 12px; border-radius: 9px !important; }

body #desktop { background: #eeebe4; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
#desktop > div { max-width: 100%; }
#desktop > div > div { padding: 44px; border: 1px solid #d6cdbd; border-radius: 18px !important; background: #faf8f2 !important; box-shadow: 0 14px 35px -24px #584a3530 !important; }
#desktop > div > div > .grid { gap: 70px; grid-template-columns: 1.15fr 1fr; }
#desktop h3 { font-size: 22px; }
#desktop li { align-items: start; font-size: 13px; }
#desktop .text-xs { line-height: 1.8; }
#desktop a[download] { width: 100%; font-size: 13px; }
#desktop a[download]:nth-child(2) { border-color: #cbc6bb; background: transparent !important; }
#desktop .mt-8 { margin-top: 36px; padding-top: 28px; }
#desktop .w-7 { background: #e9e2d6; color: #85694e; border-radius: 50%; }

body #features { background: var(--paper); }
#features > .grid { max-width: none; gap: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
#features > .grid > div { padding: 36px 30px; border: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); border-radius: 0 !important; background: transparent !important; }
#features .material-symbols-outlined { color: var(--copper) !important; font-size: 28px; margin-bottom: 24px; }
#features h3 { font-size: 16px; margin-bottom: 12px; }
#features .text-sm { font-size: 13px; line-height: 1.85; }

body .compliance-section { background: #eeeee7; border-top: 1px solid #ddded4; border-bottom: 1px solid #ddded4; }
.compliance-section > div { max-width: none; }
.compliance-section .grid { gap: 14px; }
.compliance-section .grid > div { background: #f8f8f2 !important; padding: 22px; border-color: #dcddd2; border-radius: 12px !important; }
.compliance-section .grid > div > div { flex-wrap: wrap; gap: 8px; }
.compliance-section .grid .text-lg { font-size: 16px; font-weight: 650; }
.compliance-section .grid .rounded-full { font-size: 9px; letter-spacing: .01em; font-weight: 600; }
.compliance-section .grid p { line-height: 1.8; }
.compliance-section .grid > div > p:first-of-type { font-size: 10px; letter-spacing: .03em; color: #7b7c70; margin-bottom: 7px; }

#compare > div { max-width: 1060px; }
#compare > div > div:first-child { border-radius: 14px !important; border-color: #d8d4ca; box-shadow: none !important; }
#compare table { font-size: 12px; }
#compare thead tr { background: #eeebe3; }
#compare th { padding: 23px 26px; }
#compare th:nth-child(2) { font-size: 17px; letter-spacing: -.02em; }
#compare td { padding: 17px 26px; }
#compare tr { background: #fdfcf8; }
#compare tbody tr:hover { background: #f3f0e8; }
#compare td:nth-child(2), #compare th:nth-child(2) { background: #e9ece44d; }
#compare td .material-symbols-outlined { font-size: 16px; }
#compare .text-center > a.bg-brand { margin-top: 6px; font-size: 13px; }

body #pricing { background: #ede9e1; border-top: 1px solid #ded7cc; }
#pricing > .flex { gap: 18px 26px; margin-bottom: 58px; }
#pricing > .flex > div { font-size: 11px; }
#pricing > .grid { max-width: none; gap: 20px; }
#pricing > .grid > div {
  padding: 36px 28px 26px;
  background: #fcfaf5 !important;
  border: 1px solid #d5cfc2;
  border-radius: 14px !important;
  box-shadow: none !important;
}
#pricing > .grid > div > .flex:first-child { align-items: start; flex-direction: column; gap: 9px; }
#pricing > .grid > div > [class*="text-[44px]"] { margin-top: 14px; font-family: 'Manrope', sans-serif; font-size: 60px; font-weight: 500; letter-spacing: -.07em; }
#pricing sup { font-size: 23px; top: -.75em; padding-right: 4px; }
#pricing sub { letter-spacing: normal; margin-left: 5px; }
#pricing hr { margin-top: 28px; margin-bottom: 27px; }
#pricing ul { gap: 14px; margin-bottom: 32px; }
#pricing li { font-size: 12px; align-items: start; }
#pricing a[href*="checkout/buy/"] { font-size: 11px; width: 100%; padding: 14px 8px; min-height: 48px; background: transparent; color: var(--ink); border: 1px solid #bdb5a6; box-shadow: none; }
#pricing a[href*="checkout/buy/"]:hover { background: #eae3d6; transform: translateY(-2px); }
#pricing > .grid > div > .absolute { box-shadow: none; border: 1px solid #c6b5a1; padding: 6px 15px; font-size: 9px; letter-spacing: .1em; }
#pricing > .grid > div:nth-child(2) { background: #303a32 !important; border: 1px solid #303a32; }
#pricing > .grid > div:nth-child(2) > .absolute { background: #b97552; color: #fff8ec; border-color: #b97552; }
#pricing > .grid > div:nth-child(2) .text-on-surface, #pricing > .grid > div:nth-child(2) li { color: #faf8f0; }
#pricing > .grid > div:nth-child(2) .text-outline, #pricing > .grid > div:nth-child(2) .text-on-variant { color: #c5cabc; }
#pricing > .grid > div:nth-child(2) .text-emerald-600 { color: #bfcea9 !important; }
#pricing > .grid > div:nth-child(2) hr { border-color: #546050; }
#pricing > .grid > div:nth-child(2) a { background: #f4eee0; color: #2d362f; border-color: #f4eee0; }
#pricing > .grid > div:nth-child(2) a:hover { background: #e4d8c1; border-color: #e4d8c1; }
#pricing > .grid > div:nth-child(3) > .absolute { background: #e8decc; color: #72583e; }
#pricing .text-xs { font-size: 10px; }

body #faq { background: var(--paper); }
#faq > div { max-width: 850px; gap: 0; border-top: 1px solid var(--line); }
body #faq details { border: 0; border-bottom: 1px solid var(--line); border-radius: 0 !important; background: transparent !important; }
#faq summary { padding: 23px 8px; font-size: 14px; gap: 25px; font-weight: 500; list-style: none; line-height: 1.6; }
#faq summary::-webkit-details-marker { display: none; }
#faq summary > span { display: grid; place-items: center; width: 27px; height: 27px; border: 1px solid #d7d1c5; border-radius: 50%; color: #84745f; font-size: 17px; }
#faq details[open] summary { color: var(--copper); }
#faq details[open] summary > span { transform: rotate(45deg); background: #eae2d5; }
#faq details > p { padding: 0 45px 26px 8px; max-width: 790px; font-size: 13px; line-height: 1.9; }
#faq details:hover summary { color: var(--copper); }

body > footer { background: #eeeae2; border-color: #d9d4c9; padding: 38px 32px; color: #777267; font-size: 11px; }
body > footer > div { flex-wrap: wrap; gap: 12px 28px; }
body > footer a { color: #5e5b51; }
body > footer a:hover { color: var(--copper); }
body > footer > p { font-size: 10px; }

/* Keep long-form pages visually consistent without changing their contents. */
.content-page h1 { font-family: 'Instrument Serif', Georgia, serif; font-size: clamp(40px, 5vw, 64px); line-height: 1.1; font-weight: 400; }
.content-page h2 { line-height: 1.3; }
.content-page article p, .content-page article li { line-height: 1.9; }
.content-page :is(p, li, td, a) { overflow-wrap: anywhere; }
.content-page li.flex:has(> strong) { display: block; }
.content-page li.flex:has(> strong) > span:first-child { margin-right: 8px; }
.content-page div.overflow-hidden:has(> table) { overflow-x: auto; }
.content-page article > h1 { margin-top: 20px; margin-bottom: 28px; }
.content-page > section:first-of-type:has(h1) { padding-top: 78px; padding-bottom: 68px; }
.content-page .bg-teal\/5, .content-page .bg-brand\/5 { background-color: #ece6da; }
.content-page .bg-brand\/10 { background-color: #efe0d3; }
.content-page .bg-teal\/10 { background-color: #e7e8dd; }
.content-page .bg-teal .text-white { color: #fffefa; }
.content-page .bg-white { border-color: #ddd8ce; }
.content-page a.bg-white { transition: border-color .2s, transform .2s, box-shadow .2s; }
.content-page a.bg-white:hover { border-color: #c1aa93; box-shadow: 0 12px 25px -18px #6f4d3230; transform: translateY(-2px); }
.content-page table { max-width: 100%; }
.content-page th, .content-page td { border-color: var(--line); }
.content-page a.bg-brand .text-white, .content-page .bg-teal.text-white, .content-page .bg-brand.text-white { color: #fffefa; }

@media (min-width: 1120px) {
  .home-page > nav > ul { display: flex; }
  .home-page > nav button { display: none; }
  #mobile-menu { display: none; }
}
@media (max-width: 1119px) {
  .home-page > nav > ul { display: none; }
  .home-page > nav button { display: inline-flex; }
  #mobile-menu:not(.hidden) { display: block; }
  .hero .hero-layout { gap: 40px; }
  body .hero { padding: 72px 32px 82px; }
  body .hero h1 { font-size: 60px; }
  .hero-actions > a { padding: 13px 15px; font-size: 11px; }
  .demo-window > div:last-child { font-size: 9px; padding: 23px 17px; }
  .demo-window > div:first-child > span:last-child { font-size: 8px; }
  .trust-strip > div > div { padding: 4px 16px; column-gap: 8px; }
  .home-page > section:not(.hero):not(.trust-strip) { padding-top: 80px; padding-bottom: 80px; }
  #pricing > .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
  #pricing > .grid > div { padding: 33px 20px 25px; }
  #pricing > .grid > div > [class*="text-[44px]"] { font-size: 48px; }
  .compliance-section .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .hero .hero-layout { grid-template-columns: minmax(0, 1fr); max-width: 680px; gap: 60px; }
  .hero .hero-copy { text-align: center; }
  body .hero h1 { font-size: 72px; max-width: 650px; margin-left: auto; margin-right: auto; }
  .hero-copy > p:not(.hero-proof) { margin-left: auto; margin-right: auto; }
  .hero .hero-actions { justify-content: center; }
  .hero .demo-stage { max-width: 590px; margin: 0 auto; }
  .demo-window > div:last-child { font-size: 11px; padding: 26px; }
  .demo-window > div:first-child > span:last-child { font-size: 10px; }
  .trust-strip > div { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 24px; }
  .trust-strip > div > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .trust-strip .text-sm { font-size: 12px; }
  #desktop > div > div { padding: 32px; }
  #desktop > div > div > .grid { gap: 30px; }
  #pricing > .grid { grid-template-columns: minmax(0, 1fr); max-width: 480px; gap: 36px; }
  #pricing > .grid > div { padding: 36px 32px 28px; }
  #pricing > .grid > div > .flex:first-child { flex-direction: row; align-items: center; }
  #pricing > .grid > div > [class*="text-[44px]"] { font-size: 60px; }
  #pricing a[href*="checkout/buy/"] { font-size: 13px; }
}
@media (max-width: 640px) {
  html { scroll-padding-top: 88px; }
  body:is(.home-page, .content-page) > nav { height: 70px; padding: 0 20px; gap: 12px; }
  body > nav > a:first-child { font-size: 22px; gap: 8px; }
  body > nav > a:first-child > span:first-child { width: 17px; height: 17px; border-width: 4px; }
  body > nav > a:first-child > span:first-child::after { top: 0; left: 7px; }
  body:is(.home-page, .content-page) > nav a.bg-brand { font-size: 9px; padding: 9px 11px; min-height: 36px; }
  body > nav > div { gap: 5px; }
  body > nav button { padding: 8px; }
  #mobile-menu { top: 69px; max-height: calc(100dvh - 69px); }
  body .hero { padding: 54px 22px 68px; }
  .hero .hero-badge { font-size: 9px; letter-spacing: .025em; margin-bottom: 23px; gap: 6px; }
  body .hero h1 { font-size: clamp(44px, 11.6vw, 68px); line-height: 1.04; margin-bottom: 24px; }
  .hero-copy > p:not(.hero-proof) { font-size: 13px; line-height: 1.85; margin-bottom: 24px; }
  .hero-copy code { font-size: 11px; }
  .hero .hero-actions { gap: 10px; flex-wrap: nowrap; }
  .hero-actions > a { font-size: 10px; padding: 12px 13px; min-height: 46px; }
  .hero-actions > a:last-child { gap: 8px; }
  .hero .hero-proof { font-size: 10px; max-width: 300px; margin-left: auto; margin-right: auto; margin-top: 15px; }
  .hero .hero-layout { gap: 44px; }
  .demo-window > div:first-child { padding: 12px; min-height: 44px; gap: 4px; }
  .demo-window > div:first-child > span:not(:last-child) { width: 5px; height: 5px; }
  .demo-window > div:first-child > span:last-child { font-size: 7px; }
  .demo-window > div:last-child { font-size: 10px; line-height: 1.9; padding: 21px 15px; }
  .demo-stage::before { transform: rotate(4deg) translate(3px, 5px); }
  .demo-stage::after { transform: rotate(2deg) translate(2px, 3px); }
  body .trust-strip { padding: 26px 22px; }
  .trust-strip > div { row-gap: 22px; }
  .trust-strip > div > div { grid-template-columns: 1fr; gap: 7px; padding: 0 12px; }
  .trust-strip .material-symbols-outlined { grid-row: auto; font-size: 22px; }
  .trust-strip .text-sm { font-size: 10px; }
  .trust-strip .text-xs { font-size: 9px; }
  .home-page > section:not(.hero):not(.trust-strip) { padding: 64px 22px; }
  .home-page > section h2 { font-size: 30px; letter-spacing: -.045em; }
  .home-page > section > h2 + p, .compliance-section h2 + p { font-size: 13px; margin-top: 17px; margin-bottom: 32px; }
  #how-it-works > .grid { gap: 12px; }
  #how-it-works > .grid > div, #how-it-works > .grid > div:nth-child(3) { padding: 25px; }
  #how-it-works > .grid > div:nth-child(3) { gap: 24px; }
  #how-it-works pre { padding: 18px 15px; font-size: 10px; }
  #desktop > div > div { padding: 25px 21px; }
  #desktop > div > div > .grid { grid-template-columns: 1fr; gap: 28px; }
  #desktop a[download] { font-size: 11px; padding-left: 8px; padding-right: 8px; }
  #desktop .mt-8 .grid { gap: 20px; }
  #features > .grid > div { padding: 28px 24px; }
  #features .material-symbols-outlined { margin-bottom: 17px; }
  .compliance-section .grid { gap: 10px; }
  .compliance-section .grid > div { padding: 18px 15px; }
  .compliance-section .grid > div > div { align-items: start; flex-direction: column; gap: 7px; }
  .compliance-section .grid p { font-size: 11px; }
  .compliance-section > div > p:last-child a { font-size: 12px; }
  #compare table { font-size: 11px; }
  #compare th, #compare td { padding: 15px 13px; }
  #compare > div > div:first-child { margin-left: 0; margin-right: 0; overflow-x: auto; }
  #pricing > .flex { align-items: start; justify-content: flex-start; gap: 12px; margin-bottom: 45px; }
  #pricing > .grid > div { padding: 32px 25px 26px; }
  #pricing .text-xs { font-size: 10px; }
  #faq summary { font-size: 13px; padding: 21px 0; gap: 16px; }
  #faq details > p { padding: 0 10px 24px 0; font-size: 12px; }
  body > footer { padding: 32px 22px; }
  body > footer > div { gap: 12px 22px; font-size: 11px; }
  .content-page h1 { font-size: 42px; overflow-wrap: anywhere; }
  .content-page > section:first-of-type:has(h1) { padding-top: 52px; padding-bottom: 46px; }
  .content-page article { overflow-wrap: anywhere; }
  .content-page > nav a:not(:first-child):not(.bg-brand) { font-size: 11px; }
}
@media (max-width: 359px) {
  body:is(.home-page, .content-page) > nav { padding-left: 13px; padding-right: 13px; gap: 6px; }
  body:is(.home-page, .content-page) > nav a.bg-brand { padding-left: 8px; padding-right: 8px; font-size: 8px; }
  .hero .hero-actions { flex-direction: column; }
  .hero-actions > a { font-size: 12px; justify-content: center; }
  .demo-window > div:last-child { font-size: 9px; }
  .compliance-section .grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body *, body *::before, body *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
