:root {
  --site-paper: #f8f7f3;
  --site-cream: #efede5;
  --site-ink: #2e3633;
  --site-muted: #626c67;
  --site-line: #dcded5;
  --site-sage: #697a65;
  --site-rust: #98543b;
  --site-font: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --site-mono: ui-monospace, "SFMono-Regular", Consolas, monospace;
  --product: #345572;
  --product-soft: #e8eef4;
  --product-glow: #718fa9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
body {
  margin: 0;
  background: var(--site-paper);
  color: var(--site-ink);
  font: 400 16px/1.65 var(--site-font);
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
button,
input {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #b96a37;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.05em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(50px, 6vw, 82px);
  font-weight: 630;
}
h2 {
  font-size: clamp(36px, 4.3vw, 58px);
  font-weight: 600;
}
h3 {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.15;
}
p + p {
  margin-top: 20px;
}
.site-wrap {
  width: min(1184px, calc(100% - 96px));
  margin-inline: auto;
}
.site-section {
  padding: 100px 0;
}
.site-eyebrow {
  font: 600 14px/1.5 var(--site-font);
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.site-mono {
  font: 500 10px/1.6 var(--site-mono);
  letter-spacing: 0.08em;
}
.site-lede {
  font-size: 20px;
  line-height: 1.7;
  color: var(--site-muted);
  margin-top: 26px;
}
.site-button {
  display: inline-flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    translate 0.2s;
  max-width: 100%;
}
.site-button:hover {
  translate: 0 -2px;
  box-shadow: 0 8px 24px #1b2b2520;
}
.button-ink {
  background: var(--site-ink);
  color: #fff;
}
.button-ink:hover {
  background: #47594d;
}
.button-white {
  background: #fafaf6;
  color: var(--product);
}
.button-white:hover {
  background: #e6ece9;
}
.button-product {
  background: var(--product);
  color: #fff;
}
.quiet-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.quiet-link:hover {
  text-decoration: underline;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 16px;
  background: #fff;
  color: var(--site-ink);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #f8f7f3ed;
  border-bottom: 1px solid var(--site-line);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--site-ink);
}
.header-inner {
  height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.site-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 22px;
  font-weight: 550;
  letter-spacing: -0.05em;
  text-decoration: none;
  white-space: nowrap;
}
.site-brand em {
  font-weight: 350;
}
.site-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.site-nav a {
  font-size: 13px;
  text-decoration: none;
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 44px;
}
.site-nav a:hover {
  text-decoration: underline;
}
.menu-toggle {
  display: none;
}
.global-footer {
  background: #26352f;
  color: #ecf0e8;
  padding: 60px 0 24px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2.45fr 1fr 1fr;
  gap: 42px;
}
.footer-top > div p {
  font-size: 13px;
  line-height: 1.9;
  color: #c1ccbf;
  margin-top: 22px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-top nav > a {
  min-height: 36px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 13px;
  color: #e1e8de;
  gap: 8px;
}
.footer-top nav > a:hover {
  text-decoration: underline;
}
.footer-top .site-eyebrow {
  color: #b8c6b4;
  margin-bottom: 18px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid #ffffff25;
  margin-top: 42px;
  padding-top: 23px;
  font-size: 11px;
  color: #b9c8b5;
}
.footer-bottom a {
  color: inherit;
}
.screen-frame {
  width: min(100%, 278px);
  border: 1px solid #b8c4c8;
  background: #e2e6e5;
  border-radius: 38px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 20px 48px #15222b24;
  flex-shrink: 0;
}
.screen-frame > img {
  width: 100%;
  height: auto;
  border-radius: 31px;
}
.poster-frame {
  padding: 0;
  border-radius: 14px;
  border: 1px solid #ffffff60;
  background: transparent;
  box-shadow: 0 20px 48px #35130725;
}
.poster-frame > img {
  border-radius: 13px;
}
/* Cable Weather's 4:3 picture sits in a tube TV: plastic cabinet, rounded
   glass, and a control strip with a power light along the bottom */
.tv-frame {
  position: relative;
  width: min(100%, 470px);
  padding: 20px 20px 44px;
  background: linear-gradient(#3a3935, #22211e);
  border-radius: 24px;
  box-shadow:
    0 0 0 1px #ffffff1f,
    inset 0 1px 0 #ffffff26,
    inset 0 -3px 0 #00000040,
    0 26px 50px #0a101847;
}
.tv-frame > img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px / 16px;
  box-shadow: 0 0 0 5px #121210;
}
.tv-frame::before {
  content: "";
  position: absolute;
  inset: 20px 20px 44px;
  border-radius: 20px / 16px;
  background:
    linear-gradient(125deg, #ffffff1e, transparent 30%),
    radial-gradient(ellipse at center, transparent 62%, #00000059);
  pointer-events: none;
}
.tv-frame::after {
  content: "";
  position: absolute;
  right: 26px;
  bottom: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7fd46a;
  box-shadow:
    0 0 6px #7fd46a99,
    -22px 0 0 -1px #15140f,
    -38px 0 0 -1px #15140f,
    -54px 0 0 -1px #15140f;
}
.era-switch {
  display: none;
  width: max-content;
  max-width: 100%;
  margin: 0 auto 22px;
  padding: 3px;
  gap: 4px;
  border: 1px solid #ffffff38;
  border-radius: 11px;
  background: #0000002e;
}
.has-js .era-switch {
  display: flex;
}
.era-switch button {
  min-height: 40px;
  padding: 8px 16px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #f6f1e7;
  font-size: 13px;
  font-weight: 550;
  cursor: pointer;
}
.era-switch button[aria-pressed="true"] {
  background: #f6f1e7;
  color: var(--product);
}
.product-hero:has(.tv-frame) .product-hero-grid {
  grid-template-columns: 1fr 1.2fr;
}
.product-hero {
  color: #f9f7f0;
  background:
    radial-gradient(ellipse at 86% 15%, var(--product-glow), transparent 63%),
    var(--product);
  position: relative;
  overflow: hidden;
}
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.18fr 1fr;
  gap: 74px;
  align-items: center;
  padding-top: 66px;
  padding-bottom: 62px;
}
.product-hero-grid > * {
  min-width: 0;
}
.product-brand {
  display: flex;
  align-items: center;
  gap: 19px;
  margin-bottom: 43px;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.product-brand img {
  border-radius: 16px;
  box-shadow: 0 8px 24px #00000025;
}
.product-hero .site-eyebrow {
  color: #edf0e5d9;
}
.product-hero h1 {
  font-size: clamp(48px, 5.55vw, 78px);
  line-height: 1.035;
}
.hero-lede {
  font-size: 20px;
  line-height: 1.7;
  color: #f0f2e7e8;
  max-width: 500px;
  margin-top: 28px;
}
.product-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 31px;
  flex-wrap: wrap;
}
.product-meta {
  font-size: 12px;
  color: #e0e8ddd9;
  line-height: 1.95;
  margin-top: 21px;
}
.product-hero-stage {
  position: relative;
  padding: 26px 32px 0;
  min-width: 0;
}
.product-figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
}
.product-figure figcaption {
  font-size: 11px;
  line-height: 1.7;
  text-align: center;
  max-width: 300px;
  color: var(--site-muted);
}
.product-hero .product-figure figcaption {
  color: #e9eee3df;
}
.coming-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 20px;
  border: 1px solid #ffffff70;
  border-radius: 12px;
  font-size: 13px;
  color: #fff;
  background: #ffffff0c;
}
.section-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.section-split h2 {
  font-size: clamp(36px, 3.7vw, 50px);
}
.section-split .site-lede {
  margin-top: 6px;
}
.section-split .site-lede {
  max-width: 655px;
}
.product-workflow {
  padding-top: 34px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 95px;
  align-items: center;
}
.workflow-grid > * {
  min-width: 0;
}
.contained-stage {
  padding: 40px 35px;
  background: var(--product-soft);
  border: 1px solid #00000007;
  border-radius: 30px;
  min-width: 0;
}
.workflow-grid h2 {
  font-size: 42px;
}
.feature-rows {
  list-style: none;
  padding: 0;
  margin: 35px 0 0;
}
.feature-rows li {
  padding: 24px 0;
  border-top: 1px solid var(--site-line);
}
.feature-rows h3 {
  font-size: 20px;
  letter-spacing: -0.025em;
  line-height: 1.2;
}
.feature-rows p {
  font-size: 15px;
  color: var(--site-muted);
  line-height: 1.75;
  margin-top: 10px;
}
.product-extras {
  background: var(--product-soft);
  padding-top: 74px;
  padding-bottom: 76px;
}
.section-line {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 36px;
}
.section-line .site-eyebrow {
  margin-bottom: 0;
  white-space: nowrap;
}
.section-line > span {
  flex: 1;
  height: 1px;
  background: #273e482b;
}
.extras-title {
  font-size: clamp(26px, 2.6vw, 34px);
  white-space: nowrap;
}
.feature-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.feature-panel h3 {
  font-size: 24px;
}
.feature-panel p {
  font-size: 15px;
  color: var(--site-muted);
  line-height: 1.8;
  margin-top: 16px;
}
.gallery-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 120px;
  align-items: center;
}
.gallery-split > * {
  min-width: 0;
}
.gallery-split .site-lede {
  font-size: 18px;
}
.screen-note {
  font-size: 11px;
  color: var(--site-muted);
  margin-top: 24px;
}
.product-story {
  background: #edede6;
}
.story-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 95px;
  align-items: center;
}
.story-grid > div:first-child img {
  width: 96px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}
.story-grid > div:first-child p {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 17px;
}
.story-grid > div:first-child p span {
  font-size: 11px;
  color: var(--site-muted);
}
.story-quote {
  font-size: 24px;
  line-height: 1.65;
  color: #465149;
  letter-spacing: -0.015em;
}
.story-grid .quiet-link {
  margin-top: 21px;
}
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
}
.faq-layout > .site-lede {
  margin-top: 0;
}
.faq-layout .quiet-link {
  margin-top: 27px;
}
.disclosures details {
  border-bottom: 1px solid var(--site-line);
}
.disclosures details:first-child {
  border-top: 1px solid var(--site-line);
}
.disclosures summary {
  position: relative;
  list-style: none;
  padding: 23px 32px 23px 0;
  font-size: 16px;
  font-weight: 550;
  line-height: 1.5;
  cursor: pointer;
}
.disclosures summary::-webkit-details-marker {
  display: none;
}
.disclosures summary:after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 24px;
  font: 22px/1 var(--site-mono);
  font-weight: 300;
}
.disclosures details[open] summary:after {
  content: "−";
}
.disclosures details p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--site-muted);
  padding: 0 22px 25px 0;
}
.product-end {
  padding: 78px 0 83px;
  background:
    radial-gradient(ellipse at 50% 0%, var(--product-glow), transparent 75%),
    var(--product);
  color: #f9f7ef;
  text-align: center;
}
.product-end img {
  margin: 0 auto 24px;
  border-radius: 15px;
}
.product-end h2 {
  font-size: clamp(44px, 5vw, 66px);
  margin-bottom: 29px;
}
.product-end .site-eyebrow {
  color: #e5ebe0e6;
}
.end-meta {
  font-size: 12px;
  color: #e0e8dd;
  margin-top: 22px;
}
.home-hero {
  padding: 85px 0 75px;
  background: radial-gradient(ellipse at 88% 25%, #e8ece2, transparent 65%);
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 65px;
  align-items: center;
}
.home-hero-grid > * {
  min-width: 0;
}
.home-hero h1 {
  font-size: clamp(65px, 7.25vw, 100px);
  line-height: 1.01;
  letter-spacing: -0.065em;
  font-weight: 620;
}
.home-hero .site-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.home-lede {
  font-size: 20px;
  line-height: 1.7;
  max-width: 500px;
  color: var(--site-muted);
  margin-top: 27px;
}
.home-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.handwritten {
  font:
    italic 21px/1.6 Georgia,
    serif;
  letter-spacing: -0.02em;
  color: #786553;
  margin-top: 25px;
  transform: rotate(-2deg);
  transform-origin: left;
}
.product-hero .handwritten {
  color: #f6ecdf;
  font-size: 20px;
  margin-top: 22px;
}
.not-found .handwritten {
  margin-top: 18px;
}
.home-collage {
  padding: 28px 28px 24px;
  background: #e9eae2;
  border: 1px solid #d9ddd1;
  border-radius: 26px;
  box-shadow: 0 20px 50px #444e3f0b;
  min-width: 0;
}
.collage-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.collage-pair > figure {
  min-width: 0;
}
.collage-pair .screen-frame {
  border-radius: 24px;
  padding: 4px;
  box-shadow: 0 13px 25px #2c3f3825;
}
.collage-pair .screen-frame img {
  border-radius: 19px;
}
.collage-pair figcaption {
  font-size: 12px;
  line-height: 1.5;
  color: #68765e;
  margin-top: 16px;
  text-align: center;
}
.collage-footer {
  border-top: 1px solid #cad2c2;
  margin-top: 25px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.collage-footer img {
  border-radius: 8px;
}
.collage-footer span {
  font-size: 10px;
  line-height: 1.75;
  margin-left: auto;
  color: #697366;
}
.home-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 46px;
}
.home-section-heading > p {
  color: var(--site-muted);
  font-size: 15px;
  line-height: 1.8;
  padding-bottom: 4px;
}
.featured-app {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px 58px;
  background:
    radial-gradient(ellipse at 90% 25%, var(--card-glow, #47698b), transparent 65%),
    var(--card-color, #254972);
  color: #f6f7f2;
  border-radius: 28px;
  text-decoration: none;
  margin-bottom: 28px;
}
.featured-app > * {
  min-width: 0;
}
.featured-brand {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 24px;
  letter-spacing: -0.04em;
  flex-wrap: wrap;
}
.featured-brand img {
  border-radius: 15px;
}
.featured-app h3 {
  font-size: 48px;
  margin-top: 29px;
  line-height: 1.04;
}
.featured-app p {
  color: #f6f7f2d9;
  font-size: 16px;
  line-height: 1.75;
  margin-top: 22px;
  max-width: 430px;
}
.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
  font-size: 13px;
  font-weight: 550;
  padding: 12px 0;
}
.featured-app:hover .featured-link {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.featured-visual {
  padding: 0 26px;
  display: flex;
  justify-content: center;
}
.featured-visual .screen-frame {
  width: 210px;
  border-radius: 30px;
  box-shadow: 0 22px 50px #13294240;
}
.featured-visual .screen-frame img {
  border-radius: 23px;
}
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.app-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 32px 36px 28px;
  border-radius: 24px;
  border: 1px solid #d9dbd3;
  background: linear-gradient(120deg, #fafaf7, var(--card-soft));
  text-decoration: none;
  transition:
    translate 0.2s,
    box-shadow 0.2s;
}
.app-card:hover {
  translate: 0 -4px;
  box-shadow: 0 15px 35px #2e3c3010;
}
.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 26px;
}
.app-card-top img {
  border-radius: 14px;
  box-shadow: 0 3px 10px #00000010;
}
.app-card .site-eyebrow {
  color: var(--card-color);
  font-size: 13px;
  margin-bottom: 10px;
}
.app-card h3 {
  font-size: 36px;
}
.app-card > p:not(.site-eyebrow) {
  line-height: 1.7;
  color: var(--site-muted);
  margin: 16px 0 24px;
  max-width: 370px;
}
.card-detail {
  font-size: 12px;
  color: var(--card-color);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 13px;
}
.workbench-section {
  background: #eeeee6;
}
.workbench-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.workbench-card {
  display: grid;
  grid-template-columns: 54px 1fr 16px;
  gap: 22px;
  align-items: start;
  padding: 28px;
  border: 1px solid #d5d9ce;
  border-radius: 19px;
  text-decoration: none;
  background: #f7f7f1;
}
.workbench-card > div {
  min-width: 0;
}
.workbench-card > img {
  border-radius: 12px;
}
.workbench-card h3 {
  font-size: 26px;
}
.workbench-card p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--site-muted);
  margin-top: 12px;
}
.workbench-card > span {
  font-size: 20px;
  color: #6b7d64;
}
.workbench-card:hover {
  border-color: #a7b59c;
}
.elsewhere-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.elsewhere-grid h2 {
  font-size: 44px;
}
.elsewhere-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  border: 1px solid var(--site-line);
  border-radius: 20px;
  text-decoration: none;
  background: #fafaf7;
}
.elsewhere-card > img {
  border-radius: 15px;
  flex-shrink: 0;
}
.elsewhere-card .site-mono {
  font-size: 9px;
  color: var(--site-muted);
  margin-bottom: 13px;
}
.elsewhere-card h3 {
  font-size: 30px;
}
.elsewhere-card p:not(.site-mono) {
  font-size: 14px;
  color: var(--site-muted);
  line-height: 1.8;
  margin-top: 16px;
}
.elsewhere-card .quiet-link {
  font-size: 12px;
  margin-top: 12px;
  color: #506a4a;
}
.home-about {
  background: #e8ede2;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.portrait-stack {
  position: relative;
  padding: 18px 0 28px;
}
.portrait-stack > img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 28px;
  transform: rotate(-3deg);
  box-shadow: 0 20px 42px #34482a20;
  max-width: 350px;
  width: 92%;
  margin: auto;
}
.portrait-note {
  display: block;
  width: max-content;
  font:
    italic 25px Georgia,
    serif;
  background: #fff9e9;
  padding: 18px 30px;
  position: relative;
  margin: -6px auto 0;
  transform: rotate(3deg);
  border: 1px solid #e3ddc9;
  box-shadow: 0 6px 20px #4c4a3012;
}
.about-grid > div:last-child > p:not(.site-eyebrow) {
  color: #586553;
  line-height: 1.8;
}
.about-grid > div:last-child > .site-lede {
  font-size: 20px;
}
.about-grid > div:last-child > .handwritten {
  font-size: 23px;
  color: #786553;
}
.home-contact {
  padding-top: 105px;
  padding-bottom: 115px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 140px;
  align-items: center;
}
.contact-grid h2 {
  font-size: 60px;
}
.contact-grid .site-lede {
  max-width: 400px;
  font-size: 18px;
}
.contact-grid .site-button {
  margin-top: 28px;
}
.coffee-note {
  padding: 40px;
  border: 1px solid #ddd5c3;
  border-radius: 4px 24px 24px 24px;
  background: #f0ebe0;
  transform: rotate(2deg);
}
.coffee-mark {
  font-size: 35px;
  display: inline-block;
  margin-bottom: 23px;
}
.coffee-note h3 {
  font-size: 29px;
}
.coffee-note p {
  font-size: 15px;
  line-height: 1.8;
  color: #716655;
  margin-top: 20px;
}
.coffee-note .quiet-link {
  color: #88543b;
  margin-top: 17px;
}
.coffee-note .site-mono {
  display: block;
  font-size: 8px;
  color: #776c58;
  margin-top: 25px;
}
.policy-hero {
  background: #e9ede5;
  border-bottom: 1px solid var(--site-line);
  padding: 40px 0 58px;
}
.policy-hero .quiet-link {
  margin-bottom: 34px;
  color: #576d4f;
}
.policy-hero .site-eyebrow {
  margin-bottom: 22px;
}
.policy-hero h1 {
  font-size: clamp(42px, 5.6vw, 70px);
  max-width: 850px;
}
.policy-hero p:last-child {
  font: 400 11px/1.7 var(--site-mono);
  margin-top: 26px;
  color: var(--site-muted);
}
.policy-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 95px;
  padding-top: 65px;
  padding-bottom: 100px;
  align-items: start;
}
.policy-toc {
  position: sticky;
  top: 114px;
}
.policy-toc nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.policy-toc .site-eyebrow {
  margin-bottom: 10px;
}
.policy-toc a {
  font-size: 12px;
  color: #65735d;
  line-height: 1.6;
  text-decoration: none;
}
.policy-toc a:hover {
  text-decoration: underline;
}
.policy-content {
  font-size: 16px;
  line-height: 1.85;
  color: #505a52;
  min-width: 0;
  overflow-wrap: anywhere;
}
.policy-content h2 {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: var(--site-ink);
  margin: 46px 0 20px;
  padding-top: 24px;
  border-top: 1px solid var(--site-line);
}
.policy-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.policy-content h3 {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 27px 0 13px;
  color: #354d35;
}
.policy-content p {
  margin-bottom: 20px;
}
.policy-content strong {
  font-weight: 600;
  color: #344538;
}
.policy-content ul {
  padding-left: 23px;
  margin: 19px 0 26px;
}
.policy-content li + li {
  margin-top: 8px;
}
.policy-content a {
  color: #425f3e;
}
.policy-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.policy-content td,
.policy-content th {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--site-line);
}
.not-found {
  padding-top: 80px;
  padding-bottom: 110px;
  max-width: 850px;
}
.lost-number {
  font-size: clamp(130px, 20vw, 240px);
  line-height: 1;
  letter-spacing: -0.09em;
  font-weight: 600;
  color: #d5dccd;
  position: relative;
  margin: 30px 0;
}
.not-found h1 {
  font-size: 54px;
}
.not-found .site-lede {
  max-width: 580px;
}
.maelstrom-hero {
  background:
    radial-gradient(ellipse at 75% 35%, #40586b65, transparent 60%),
    linear-gradient(155deg, #101a25, #263a4a);
}
.maelstrom-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    108deg,
    transparent 0 38px,
    #a5c4dc10 39px,
    transparent 40px 71px
  );
  pointer-events: none;
  mask-image: linear-gradient(transparent, #0006, transparent);
}
.maelstrom-hero .product-hero-grid {
  position: relative;
}
.product-hero:has(.poster-frame) .product-hero-stage {
  padding-left: 42px;
  padding-right: 42px;
}
@media (max-width: 1080px) {
  .site-wrap {
    width: calc(100% - 64px);
  }
  .home-hero-grid {
    gap: 36px;
  }
  .home-hero h1 {
    font-size: 76px;
  }
  .home-lede {
    font-size: 18px;
  }
  .home-collage {
    padding: 24px 21px;
  }
  .collage-pair {
    gap: 15px;
  }
  .home-actions {
    gap: 14px;
  }
  .home-hero {
    padding: 65px 0;
  }
  .featured-app {
    padding: 40px;
    gap: 35px;
  }
  .featured-app h3 {
    font-size: 42px;
  }
  .featured-brand {
    font-size: 22px;
  }
  .featured-visual {
    padding: 0 15px;
  }
  .app-card {
    padding: 30px;
  }
  .product-hero-grid {
    gap: 45px;
  }
  .product-hero-stage {
    padding: 25px 22px 0;
  }
  .product-hero h1 {
    font-size: 59px;
  }
  .hero-lede {
    font-size: 18px;
  }
  .product-brand {
    margin-bottom: 36px;
  }
  .workflow-grid,
  .gallery-split {
    gap: 65px;
  }
  .workflow-grid h2 {
    font-size: 38px;
  }
  .contained-stage {
    padding: 32px 28px;
  }
  .product-figure .screen-frame {
    width: 260px;
  }
  .feature-panels {
    gap: 28px;
  }
  .section-split {
    gap: 55px;
  }
  .story-grid {
    grid-template-columns: 180px 1fr;
    gap: 55px;
  }
  .faq-layout {
    gap: 60px;
  }
  .about-grid {
    gap: 65px;
  }
  .contact-grid {
    gap: 75px;
  }
  .elsewhere-grid {
    gap: 55px;
  }
  .footer-top {
    gap: 25px;
  }
  .elsewhere-card {
    padding: 26px;
    gap: 19px;
  }
  .elsewhere-card > img {
    width: 54px;
    height: 54px;
  }
}
@media (max-width: 820px) and (min-width: 761px) {
  .home-hero h1 {
    font-size: 64px;
  }
  .home-hero-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 25px;
  }
  .home-collage {
    padding: 20px 16px;
  }
  .collage-pair {
    gap: 12px;
  }
  .collage-footer img {
    width: 26px;
    height: 26px;
  }
  .collage-footer span {
    font-size: 8px;
  }
  .product-hero h1 {
    font-size: 49px;
  }
  .product-hero-grid {
    gap: 30px;
  }
  .product-hero-stage {
    padding: 20px 14px 0;
  }
  .product-hero:has(.poster-frame) .product-hero-stage {
    padding-left: 14px;
    padding-right: 14px;
  }
  .featured-app {
    gap: 25px;
    padding: 32px;
  }
  .featured-app h3 {
    font-size: 37px;
  }
  .featured-visual {
    padding: 0;
  }
  .workflow-grid,
  .gallery-split {
    gap: 40px;
  }
  .workbench-card {
    padding: 24px;
    gap: 15px;
    grid-template-columns: 44px 1fr 12px;
  }
  .workbench-card img {
    width: 44px;
    height: 44px;
  }
  .elsewhere-grid {
    gap: 30px;
  }
  .elsewhere-grid h2 {
    font-size: 37px;
  }
  .elsewhere-card {
    display: block;
  }
  .elsewhere-card > img {
    margin-bottom: 20px;
  }
  .policy-layout {
    gap: 40px;
    grid-template-columns: 200px minmax(0, 1fr);
  }
  .product-hero .screen-frame {
    border-radius: 31px;
  }
  .product-hero .screen-frame img {
    border-radius: 24px;
  }
  .product-hero .poster-frame,
  .product-hero .poster-frame img {
    border-radius: 12px;
  }
  .footer-top {
    grid-template-columns: 2.3fr 1fr 1fr;
    gap: 20px;
  }
  .footer-top .site-brand {
    font-size: 20px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 92px;
  }
  .site-wrap {
    width: calc(100% - 40px);
  }
  .site-section {
    padding: 67px 0;
  }
  .header-inner {
    min-height: 68px;
    height: auto;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 8px;
  }
  .site-brand {
    font-size: 21px;
  }
  .site-nav {
    display: flex;
    flex-basis: 100%;
    flex-wrap: wrap;
    gap: 8px 24px;
    padding-top: 7px;
  }
  .site-nav a {
    font-size: 12px;
  }
  .has-js .header-inner {
    height: 68px;
    padding-top: 0;
    padding-bottom: 0;
    flex-wrap: nowrap;
  }
  .has-js .menu-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    min-width: 65px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--site-ink);
    font-size: 13px;
    cursor: pointer;
  }
  .has-js .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--site-paper);
    padding: 14px 20px;
    border-bottom: 1px solid var(--site-line);
    box-shadow: 0 15px 25px #25332b15;
    gap: 0;
  }
  .has-js .site-nav.open {
    display: flex;
  }
  .has-js .site-nav a {
    font-size: 14px;
    padding: 9px 4px;
    min-height: 49px;
  }
  .global-footer {
    padding: 45px 0 22px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 24px;
  }
  .footer-top > div:first-child {
    grid-column: 1/-1;
  }
  .footer-top > div p {
    margin-top: 15px;
  }
  .footer-top nav > a {
    min-height: 38px;
  }
  .footer-top .site-eyebrow {
    margin-bottom: 13px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 10px;
    gap: 14px 25px;
    margin-top: 30px;
  }
  .footer-bottom > a {
    flex-basis: 100%;
  }
  .product-hero-grid {
    display: block;
    padding-top: 38px;
    padding-bottom: 37px;
  }
  .product-brand {
    font-size: 27px;
    gap: 16px;
    margin-bottom: 32px;
  }
  .product-brand img {
    width: 60px;
    height: 60px;
    border-radius: 14px;
  }
  .product-hero h1 {
    font-size: clamp(43px, 10.2vw, 66px);
  }
  .hero-lede {
    font-size: 18px;
    margin-top: 25px;
    max-width: 480px;
  }
  .product-actions {
    gap: 13px 22px;
    margin-top: 27px;
  }
  .product-meta {
    font-size: 11px;
    margin-top: 19px;
  }
  .product-hero-stage,
  .product-hero:has(.poster-frame) .product-hero-stage {
    padding: 44px 28px 0;
    max-width: 410px;
    margin: auto;
  }
  .product-figure .screen-frame {
    width: 260px;
  }
  .product-figure {
    gap: 21px;
  }
  .product-figure figcaption {
    font-size: 10px;
  }
  .section-split {
    display: block;
  }
  .section-split h2 {
    font-size: 39px;
  }
  .section-split .site-lede {
    margin-top: 23px;
  }
  .site-lede {
    font-size: 18px;
    margin-top: 23px;
  }
  .workflow-grid,
  .gallery-split {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 35px;
  }
  .workflow-grid > div:last-child {
    order: -1;
  }
  .workflow-grid h2 {
    font-size: 36px;
  }
  .product-workflow {
    padding-top: 0;
  }
  .contained-stage {
    padding: 32px 28px;
    max-width: 430px;
    width: 100%;
    margin: auto;
    border-radius: 25px;
  }
  .feature-rows {
    margin-top: 27px;
  }
  .feature-rows li {
    padding: 21px 0;
  }
  .feature-rows h3 {
    font-size: 20px;
  }
  .feature-rows p {
    font-size: 14px;
  }
  .feature-panels {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .feature-panel + .feature-panel {
    padding-top: 27px;
    border-top: 1px solid #273e4825;
  }
  .feature-panel h3 {
    font-size: 26px;
  }
  .feature-panel p {
    font-size: 15px;
    margin-top: 14px;
  }
  .section-line {
    gap: 22px;
    margin-bottom: 32px;
  }
  .gallery-split h2 {
    font-size: 38px;
  }
  .story-grid {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }
  .story-grid > div:first-child {
    display: flex;
    align-items: center;
    gap: 18px;
  }
  .story-grid > div:first-child img {
    width: 70px;
  }
  .story-grid > div:first-child p {
    margin: 0;
    font-size: 12px;
  }
  .story-grid > div:first-child p span {
    font-size: 10px;
  }
  .story-quote {
    font-size: 21px;
    line-height: 1.65;
  }
  .story-grid .site-eyebrow {
    margin-bottom: 19px;
  }
  .faq-layout {
    display: block;
  }
  .faq-layout h2 {
    font-size: 40px;
  }
  .faq-layout .quiet-link {
    margin-top: 16px;
    margin-bottom: 28px;
  }
  .disclosures summary {
    font-size: 15px;
  }
  .product-end {
    padding: 63px 0 65px;
  }
  .product-end h2 {
    font-size: 46px;
  }
  .end-meta {
    font-size: 11px;
  }
  .home-hero {
    padding: 40px 0 45px;
  }
  .home-hero-grid {
    display: block;
  }
  .home-hero h1 {
    font-size: clamp(61px, 13vw, 82px);
  }
  .home-hero .site-eyebrow {
    gap: 9px;
    margin-bottom: 25px;
  }
  .home-lede {
    font-size: 18px;
    margin-top: 24px;
  }
  .home-actions {
    gap: 12px 22px;
    margin-top: 25px;
  }
  .home-actions .site-button {
    font-size: 13px;
  }
  .handwritten {
    font-size: 20px;
    margin-top: 20px;
  }
  .home-collage {
    max-width: 430px;
    margin: 42px auto 0;
    padding: 25px 25px 23px;
  }
  .collage-pair {
    gap: 19px;
  }
  .collage-footer span {
    font-size: 10px;
  }
  .home-section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .home-section-heading h2 {
    font-size: 39px;
  }
  .home-section-heading > p {
    margin-top: 20px;
    font-size: 14px;
  }
  .featured-app {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 28px;
    gap: 28px;
    border-radius: 23px;
    margin-bottom: 22px;
  }
  .featured-brand {
    gap: 12px;
    font-size: 24px;
  }
  .featured-brand img {
    width: 56px;
    height: 56px;
    border-radius: 13px;
  }
  .featured-app h3 {
    font-size: 40px;
    margin-top: 27px;
  }
  .featured-app p {
    font-size: 16px;
    margin-top: 21px;
  }
  .featured-link {
    font-size: 13px;
    margin-top: 17px;
  }
  .featured-visual {
    padding: 0 18px 5px;
    max-width: 300px;
    align-self: center;
    width: 100%;
  }
  .featured-visual .screen-frame {
    width: 214px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .app-card {
    padding: 28px;
  }
  .app-card-top {
    margin-bottom: 25px;
  }
  .app-card h3 {
    font-size: 35px;
  }
  .app-card > p:not(.site-eyebrow) {
    max-width: none;
  }
  .workbench-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .workbench-card {
    padding: 24px;
    grid-template-columns: 47px 1fr 12px;
    gap: 17px;
  }
  .workbench-card > img {
    width: 47px;
    height: 47px;
    border-radius: 11px;
  }
  .workbench-card h3 {
    font-size: 25px;
  }
  .workbench-card p {
    font-size: 13px;
  }
  .elsewhere-grid {
    display: block;
  }
  .elsewhere-grid h2 {
    font-size: 38px;
  }
  .elsewhere-card {
    margin-top: 30px;
    padding: 26px;
    gap: 19px;
  }
  .elsewhere-card > img {
    width: 54px;
    height: 54px;
  }
  .elsewhere-card h3 {
    font-size: 27px;
  }
  .elsewhere-card .site-mono {
    font-size: 7px;
  }
  .elsewhere-card .quiet-link {
    font-size: 11px;
  }
  .about-grid {
    display: block;
  }
  .portrait-stack {
    max-width: 310px;
    margin: 0 auto 37px;
    padding: 16px 12px 20px;
  }
  .portrait-stack > img {
    max-width: 260px;
  }
  .portrait-note {
    font-size: 22px;
    padding: 15px 25px;
  }
  .about-grid h2 {
    font-size: 39px;
  }
  .about-grid > div:last-child > .site-lede {
    font-size: 18px;
  }
  .about-grid > div:last-child > .handwritten {
    font-size: 21px;
  }
  .contact-grid {
    display: block;
  }
  .contact-grid h2 {
    font-size: 48px;
  }
  .contact-grid .site-lede {
    font-size: 18px;
  }
  .coffee-note {
    margin: 50px 7px 0;
    padding: 32px;
    transform: rotate(1deg);
  }
  .coffee-note h3 {
    font-size: 29px;
  }
  .coffee-mark {
    font-size: 29px;
    margin-bottom: 21px;
  }
  .policy-hero {
    padding: 24px 0 39px;
  }
  .policy-hero .quiet-link {
    font-size: 12px;
    margin-bottom: 25px;
  }
  .policy-hero h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }
  .policy-hero .site-eyebrow {
    margin-bottom: 20px;
  }
  .policy-hero p:last-child {
    font-size: 10px;
  }
  .policy-layout {
    display: block;
    padding-top: 35px;
    padding-bottom: 70px;
  }
  .policy-toc {
    position: static;
    border-bottom: 1px solid var(--site-line);
    padding-bottom: 27px;
    margin-bottom: 35px;
  }
  .policy-toc nav {
    gap: 11px;
  }
  .policy-toc a {
    font-size: 12px;
  }
  .policy-content {
    font-size: 15px;
  }
  .policy-content h2 {
    font-size: 24px;
    margin-top: 35px;
  }
  .policy-content h3 {
    font-size: 18px;
  }
  .policy-content table {
    font-size: 12px;
  }
  .policy-content td,
  .policy-content th {
    padding: 8px 6px;
  }
  .not-found {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  .not-found h1 {
    font-size: 43px;
  }
  .lost-number {
    font-size: 150px;
  }
}
@media (max-width: 360px) {
  .site-wrap {
    width: calc(100% - 32px);
  }
  .product-hero h1 {
    font-size: 43px;
  }
  .product-hero-stage,
  .product-hero:has(.poster-frame) .product-hero-stage {
    padding-left: 24px;
    padding-right: 24px;
  }
  .home-hero h1 {
    font-size: 60px;
  }
  .home-collage {
    padding: 23px 19px;
  }
  .collage-pair {
    gap: 15px;
  }
  .collage-footer img {
    width: 27px;
    height: 27px;
  }
  .collage-footer span {
    font-size: 8px;
  }
  .featured-app {
    padding: 25px;
  }
  .featured-app h3 {
    font-size: 35px;
  }
  .featured-brand {
    font-size: 23px;
  }
  .workbench-card {
    padding: 21px;
    gap: 14px;
    grid-template-columns: 42px 1fr 10px;
  }
  .workbench-card img {
    width: 42px;
    height: 42px;
  }
  .workbench-card p {
    font-size: 12px;
  }
  .elsewhere-card {
    display: block;
  }
  .elsewhere-card > img {
    margin-bottom: 20px;
  }
  .contact-grid h2 {
    font-size: 45px;
  }
  .coffee-note {
    padding: 27px;
  }
  .footer-top {
    gap: 30px 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .global-footer,
  .product-hero-stage,
  .contained-stage,
  .home-collage,
  .featured-visual,
  .product-end,
  .policy-toc {
    display: none;
  }
  .site-wrap {
    width: 100%;
  }
  .site-section {
    padding: 25px 0;
  }
  .product-hero,
  .product-end,
  .home-about {
    background: white;
    color: black;
  }
  .hero-lede,
  .product-meta,
  .product-hero .site-eyebrow {
    color: black;
  }
  .product-hero-grid,
  .workflow-grid,
  .gallery-split,
  .section-split,
  .story-grid,
  .faq-layout,
  .policy-layout {
    display: block;
  }
  .policy-content h2 {
    break-after: avoid;
  }
  .product-actions {
    display: none;
  }
  .screen-frame {
    box-shadow: none;
  }
}
/* A declared screenshot width must never consume its frame's padding. */
.screen-frame {
  max-width: 100%;
}
.featured-visual {
  padding-top: 18px;
  padding-bottom: 18px;
}
html:not(.has-js) .site-header .header-inner {
  height: auto;
  min-height: 76px;
  flex-wrap: wrap;
  padding-block: 12px;
}
html:not(.has-js) .site-header .site-nav {
  display: flex;
  position: static;
  flex-basis: 100%;
  box-shadow: none;
  flex-wrap: wrap;
  gap: 10px 24px;
}
html:not(.has-js) .menu-toggle,
html:not(.has-js) .appearance-controls {
  display: none;
}
@media (max-width: 760px) {
  .footer-top nav > a {
    min-height: 44px;
  }
}

.product-figure figcaption {
  font-size: 12px;
}
.policy-toc a {
  display: flex;
  align-items: center;
  min-height: 36px;
}
.policy-toc nav {
  gap: 8px;
}
.site-header .site-nav a:hover {
  color: #42603e;
}
