:root {
  --ink: #17130f;
  --ink-soft: #3f3831;
  --cream: #fbf7f1;
  --warm: #f2e8d8;
  --paper: #ffffff;
  --line: #d9cbbb;
  --line-dark: rgba(255, 255, 255, 0.22);
  --teal: #1f6b6b;
  --teal-dark: #174f4f;
  --copper: #9f4f2f;
  --moss: #53664f;
  --silver: #d9dde2;
  --black: #080808;
  --max: 1160px;
  --radius-card: 8px;
  --shadow: 0 22px 52px rgba(23, 19, 15, 0.14);
  --font: "Noto Sans", "IBM Plex Sans", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 16px/1.6 var(--font);
  color: var(--ink);
  background: var(--cream);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 8px 12px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 6px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 28px;
  color: var(--paper);
  background: rgba(8, 8, 8, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.site-header-light {
  color: var(--ink);
  background: rgba(251, 247, 241, 0.9);
  border-bottom: 1px solid rgba(23, 19, 15, 0.11);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 760;
  text-decoration: none;
}

.brand-word {
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  text-decoration: none;
  font-weight: 650;
  color: currentColor;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--copper);
}

.site-header:not(.site-header-light) .site-nav a:hover,
.site-header:not(.site-header-light) .site-nav a:focus-visible {
  color: var(--paper);
  text-decoration-line: underline;
  text-decoration-color: var(--paper);
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.site-header:not(.site-header-light) .site-nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 6px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 8px;
  color: currentColor;
  background: transparent;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-6px);
}

.nav-toggle-lines::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(0) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 680px;
  height: 72svh;
  max-height: 860px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 86px 28px 96px;
  isolation: isolate;
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  z-index: -3;
}

.hero-company .hero-media {
  object-position: 72% center;
}

.hero-piclu .hero-media {
  inset: 0;
  z-index: -3;
  width: 100%;
  object-fit: cover;
  object-position: 76% center;
  opacity: 1;
}

.hero-piclu {
  background: var(--cream);
}

.hero-piclu .hero-scrim-light {
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.99), rgba(251, 247, 241, 0.9) 38%, rgba(251, 247, 241, 0.34) 66%, rgba(251, 247, 241, 0.02)),
    linear-gradient(0deg, rgba(251, 247, 241, 0.2), rgba(251, 247, 241, 0.02));
}

.hero-scrim {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.6) 48%, rgba(8, 8, 8, 0.2)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.34), rgba(8, 8, 8, 0.08));
}

.hero-scrim-light {
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.99), rgba(251, 247, 241, 0.92) 43%, rgba(251, 247, 241, 0.36) 70%, rgba(251, 247, 241, 0.1)),
    linear-gradient(0deg, rgba(251, 247, 241, 0.34), rgba(251, 247, 241, 0.04));
}

.hero-content {
  width: min(var(--max), 100%);
  max-width: var(--max);
  margin: 0 auto;
  color: var(--paper);
}

.hero-company .hero-content {
  width: min(1080px, 100%);
}

.hero-content-dark {
  color: var(--ink);
}

.hero-logo {
  width: 76px;
  margin-bottom: 22px;
}

.eyebrow,
.product-kicker {
  margin: 0 0 10px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: 3.45rem;
  line-height: 1.03;
}

h2 {
  margin-bottom: 14px;
  font-size: 2.4rem;
  line-height: 1.1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 30px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.84);
}

.hero-content-dark .hero-copy {
  color: var(--ink-soft);
}

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

.piclu-mobile-hero-image {
  display: none;
}

.company-mobile-hero-image {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-ghost {
  color: var(--paper);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

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

.button-teal {
  color: var(--paper);
  background: var(--teal);
}

.button-teal:hover,
.button-teal:focus-visible {
  background: var(--teal-dark);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.5);
}

.company-hero {
  position: relative;
  overflow: hidden;
  min-height: min(850px, calc(100svh - 150px));
  padding: 0 28px;
  background: var(--cream);
  isolation: isolate;
}

.company-hero-media,
.company-hero-scrim {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.company-hero-media {
  z-index: -3;
  object-fit: cover;
  object-position: center center;
}

.company-hero-scrim {
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(251, 247, 241, 0.98), rgba(251, 247, 241, 0.9) 37%, rgba(251, 247, 241, 0.34) 62%, rgba(251, 247, 241, 0.02)),
    linear-gradient(0deg, rgba(251, 247, 241, 0.18), rgba(251, 247, 241, 0.02));
}

.company-hero-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(var(--max), 100%);
  min-height: min(850px, calc(100svh - 150px));
  margin: 0 auto;
  padding: 76px 0 54px;
}

.company-hero-copy,
.product-entrances {
  position: relative;
  z-index: 1;
}

.company-hero-copy {
  max-width: 610px;
  margin: 0 0 54px;
  text-align: left;
}

.company-hero h1 {
  max-width: 610px;
  margin-right: 0;
  margin-bottom: 18px;
  margin-left: 0;
  font-size: 3.55rem;
}

.company-hero-copy > p:last-child {
  max-width: 540px;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  color: var(--ink-soft);
  font-size: 1.16rem;
}

.product-entrances {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  width: min(720px, 100%);
  margin: 0;
}

.product-entrance {
  position: relative;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 19, 15, 0.2);
}

.product-entrance-piccolo {
  color: var(--ink);
}

.product-entrance-piclu {
  color: var(--ink);
}

.product-entrance-copy {
  position: relative;
  max-width: 310px;
}

.product-entrance .product-logo {
  height: 27px;
  width: auto;
  max-width: 136px;
  margin-bottom: 14px;
}

.product-entrance h2 {
  max-width: 310px;
  margin-bottom: 12px;
  font-size: 1.42rem;
}

.product-entrance p {
  max-width: 300px;
  margin-bottom: 6px;
  color: currentColor;
}

.product-entrance .text-link {
  margin-top: 0;
}

.section {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

.section-heading p,
.lab-note p,
.preview-copy p {
  color: var(--ink-soft);
}

.product-stories {
  display: grid;
  gap: 22px;
}

.product-story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 28px;
  align-items: center;
  min-height: 430px;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-story-piccolo {
  background: #f7f8f9;
}

.product-story-piclu {
  background: #fffaf3;
}

.product-logo {
  height: 44px;
  width: auto;
  margin-bottom: 18px;
}

.piccolo-logo {
  max-width: 178px;
}

.piclu-logo {
  max-width: 128px;
}

.product-copy {
  max-width: 600px;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
}

.product-figure {
  margin: 0;
}

.product-figure img {
  width: 100%;
  max-height: 310px;
  object-fit: contain;
}

.piclu-figure img {
  max-height: 330px;
}

.beliefs-section {
  border-top: 1px solid var(--line);
}

.belief-grid,
.flow-grid,
.moment-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.belief-item,
.flow-step {
  padding: 22px 2px 0;
  border-top: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: transparent;
}

.belief-number,
.flow-step span {
  display: block;
  margin-bottom: 16px;
  color: var(--moss);
  font-weight: 850;
}

.lab-note {
  display: grid;
  grid-template-columns: 0.75fr 1.2fr auto;
  gap: 30px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  padding: 44px 28px 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.piclu-footer {
  background: var(--teal-dark);
}

.footer-main,
.footer-bottom {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 28px;
}

.footer-brand {
  margin-bottom: 6px;
  color: var(--paper);
  font-weight: 800;
}

address {
  font-style: normal;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
}

.piclu-page {
  background: var(--cream);
}

.piclu-intro {
  padding-top: 70px;
}

.app-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  gap: 48px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.phone-shell {
  max-width: 380px;
  margin-left: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  font-weight: 800;
}

.phone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.mock-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mock-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf3;
}

.mock-list span {
  width: 15px;
  height: 15px;
  margin-top: 4px;
  border: 2px solid var(--teal);
  border-radius: 4px;
}

.mock-list strong,
.mock-list em {
  grid-column: 2;
}

.mock-list em {
  color: var(--ink-soft);
  font-style: normal;
  font-size: 0.92rem;
}

.mock-input {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink-soft);
  background: var(--cream);
}

.mock-input span {
  float: right;
}

.mock-mic {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 18px;
  border: 2px solid var(--teal);
  border-radius: 8px 8px 6px 6px;
}

.mock-mic::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 2px;
  background: var(--teal);
  transform: translateX(-50%);
  content: "";
}

.mock-input .mock-mic {
  color: var(--teal);
  font-weight: 800;
}

.launch-section {
  padding-top: 72px;
}

.stage-panel {
  display: grid;
  gap: 22px;
  max-width: 760px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
}

.stage-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.stage-tab {
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--cream);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.stage-tab.is-active {
  color: var(--paper);
  border-color: var(--teal);
  background: var(--teal);
}

.stage-copy p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.legal-main {
  width: min(860px, calc(100% - 40px));
  min-height: calc(100svh - 68px);
  margin: 0 auto;
  padding: 96px 0;
}

.legal-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.legal-list {
  display: grid;
  gap: 18px;
  margin: 24px 0 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-list dt {
  font-weight: 850;
}

.legal-list dd {
  margin: 0;
  color: var(--ink-soft);
}

@media (max-width: 900px) {
  .company-hero-media {
    object-position: 58% center;
  }

  .company-hero h1 {
    font-size: 3rem;
  }

  .product-entrances {
    grid-template-columns: 1fr;
  }

  .product-entrance {
    min-height: auto;
  }

  h1 {
    font-size: 2.85rem;
  }

  h2 {
    font-size: 2rem;
  }

  .product-card,
  .product-story,
  .app-preview,
  .lab-note {
    grid-template-columns: 1fr;
  }

  .product-story {
    min-height: unset;
  }

  .belief-grid,
  .flow-grid,
  .moment-flow {
    grid-template-columns: 1fr;
  }

  .phone-shell {
    margin: 0;
  }
}

@media (max-width: 720px) {
  body[data-menu-open="true"] {
    overflow: hidden;
  }

  .site-header {
    min-height: 62px;
    padding: 0 18px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav:not(.site-nav-static) {
    position: fixed;
    inset: 62px 0 0;
    z-index: 90;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-height: calc(100svh - 62px);
    padding: 34px 28px;
    color: var(--ink);
    border: 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: rgba(251, 247, 241, 0.98);
    box-shadow: none;
    backdrop-filter: blur(18px);
  }

  .site-header:not(.site-header-light) .site-nav:not(.site-nav-static) {
    color: var(--paper);
    border-color: rgba(255, 255, 255, 0.14);
    background: #080808;
  }

  .site-header:not(.site-header-light) .site-nav a {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(23, 19, 15, 0.12);
    border-radius: 0;
    font-size: 1.22rem;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    color: var(--copper);
    background: transparent;
  }

  .site-nav-static {
    display: none;
  }

  .legal-page .site-header {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .legal-page .site-nav-static {
    display: flex;
    flex: 1 0 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
  }

  .legal-page .site-nav-static a {
    width: auto;
    padding: 0;
    border: 0;
    font-size: 1rem;
  }

  .hero {
    min-height: 626px;
    height: 74svh;
    max-height: 740px;
    padding: 70px 20px 78px;
  }

  .hero-piclu {
    height: auto;
    min-height: calc(100svh - 130px);
    max-height: none;
    padding-bottom: 0;
  }

  .hero-piclu .hero-media {
    display: none;
  }

  .hero-scrim-light {
    background:
      linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(251, 247, 241, 0.88)),
      linear-gradient(90deg, rgba(251, 247, 241, 0.99), rgba(251, 247, 241, 0.86) 66%, rgba(251, 247, 241, 0.34));
  }

  .hero-piclu .hero-scrim-light {
    background: linear-gradient(180deg, rgba(251, 247, 241, 0.98), rgba(251, 247, 241, 0.92));
  }

  .hero-company .hero-media {
    object-position: 62% center;
  }

  h1 {
    font-size: 2.38rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .company-hero {
    min-height: auto;
    padding: 0 18px;
  }

  .company-hero-inner {
    min-height: 780px;
    padding: 48px 0 36px;
  }

  .company-hero-media {
    display: none;
  }

  .company-hero-scrim {
    display: none;
  }

  .company-hero-copy {
    margin-bottom: 22px;
    text-align: left;
  }

  .company-hero h1 {
    font-size: 2.42rem;
  }

  .company-hero-copy > p:last-child {
    font-size: 1.02rem;
  }

  .product-entrances {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .company-mobile-hero-image {
    display: block;
    width: calc(100% + 36px);
    max-width: none;
    height: 136px;
    margin: 0 -18px 24px;
    object-fit: cover;
    object-position: 68% center;
  }

  .product-entrance {
    min-height: auto;
    padding: 16px 0 0;
  }

  .product-entrance h2 {
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .product-entrance .product-logo {
    height: 22px;
    max-width: 96px;
    margin-bottom: 12px;
  }

  .product-entrance .text-link {
    font-size: 0.96rem;
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .piclu-mobile-hero-image {
    display: block;
    width: calc(100% + 40px);
    max-width: none;
    height: 168px;
    margin: 28px -20px 0;
    object-fit: cover;
    object-position: 72% center;
  }

  .section {
    width: min(100% - 36px, var(--max));
    padding: 58px 0;
  }

  .product-story,
  .belief-item,
  .flow-step,
  .stage-panel,
  .legal-panel {
    padding: 20px;
  }

  .legal-panel {
    padding-right: 0;
    padding-left: 0;
  }

  .belief-item,
  .flow-step {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
