@font-face {
  font-family: Manrope;
  src: url("fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f8f7f3;
  --ink: #252622;
  --muted: #686962;
  --line: #ddded5;
  --orange: #b84820;
  --peach: #f5dfc8;
  --surface: #eeeee7;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
}

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

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

h1,
h2,
h3 {
  font-weight: 650;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

.wrap {
  width: min(var(--max-width), calc(100% - 96px));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 5;
  padding: 12px 20px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-160%);
}

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

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.icon--fill {
  fill: currentColor;
  stroke: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 4;
  background: rgb(248 247 243 / 94%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.brand,
.site-nav,
.header-download {
  display: flex;
  align-items: center;
}

.header-inner {
  min-height: 88px;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  gap: 11px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1.3px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 31px;
  border-radius: 15px;
  background: var(--ink);
  flex: none;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  width: 6px;
  height: 13px;
  border-radius: 4px;
  background: var(--paper);
  transform: rotate(9deg);
}

.brand-edition {
  margin-left: 3px;
  padding: 2px 0 2px 13px;
  border-left: 1px solid #bfc1b7;
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav {
  gap: 34px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}

.site-nav a,
.footer-links a {
  padding-block: 12px;
  transition: color 160ms ease;
}

.site-nav a:hover,
.footer-links a:hover,
.footer-links a:active {
  color: var(--orange);
}

.header-download {
  justify-content: center;
  gap: 14px;
  min-height: 44px;
  padding: 10px 19px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 90ms ease;
}

.header-download .icon {
  width: 16px;
  height: 16px;
}

.header-download:hover {
  color: var(--paper);
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding-top: 48px;
  padding-bottom: 58px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex: none;
}

h1 {
  margin-top: 25px;
  font-size: clamp(48px, 6.05vw, 84px);
  line-height: 1.08;
  letter-spacing: -5px;
  font-weight: 600;
}

h1 span {
  color: var(--orange);
}

.hero-lead {
  max-width: 390px;
  margin-top: 25px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.dl-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  min-width: 172px;
  padding: 12px 20px;
  border: 1px solid #b6b8ad;
  border-radius: 9px;
  transition: background 180ms ease, border-color 180ms ease, transform 90ms ease;
}

.dl-btn:hover {
  background: #e9e9e0;
  border-color: var(--ink);
}

.dl-btn--primary {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.dl-btn--primary:hover {
  background: #41423b;
}

.dl-btn:active,
.header-download:active {
  transform: translateY(2px);
}

.dl-btn .icon {
  width: 24px;
  height: 24px;
}

.dl-label {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
}

.dl-label small {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15px;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 10px;
}

.hero-note .icon {
  width: 14px;
  height: 14px;
}

.hero-art {
  position: relative;
  height: 590px;
  min-width: 0;
  isolation: isolate;
}

.orbit {
  position: absolute;
  top: 12%;
  left: 0;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #dfd4c6;
  border-radius: 50%;
  z-index: -1;
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.orbit::before {
  inset: 28px;
  border: 1px solid #e1d6c8;
}

.orbit::after {
  inset: 56px;
  background: var(--peach);
}

.hero-phone {
  position: absolute;
  width: 46%;
  filter: drop-shadow(10px 22px 13px rgb(64 47 30 / 16%));
}

.hero-phone--back {
  top: 55px;
  left: 8%;
  width: 42%;
  transform: rotate(-12deg);
}

.hero-phone--front {
  top: 21px;
  right: 8%;
  transform: rotate(9deg);
}

.art-note {
  position: absolute;
  bottom: 13px;
  left: 7%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 6px 18px rgb(64 47 30 / 5%);
  font-size: 11px;
  transform: rotate(-4deg);
}

.art-note .icon {
  color: var(--orange);
}

.art-note strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.art-note span {
  color: var(--muted);
  font-size: 10px;
}

.art-caption {
  position: absolute;
  bottom: -34px;
  right: 4%;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-block: 27px;
  border-block: 1px solid var(--line);
}

.principles > p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.principles ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 73%;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 12px;
  font-weight: 600;
}

.section {
  padding-block: 110px 0;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 45px;
}

h2 {
  margin-top: 20px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.15;
  letter-spacing: -2px;
}

.section-heading > p {
  max-width: 290px;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

/* Native radio controls keep the screen explorer keyboard-usable without JavaScript. */
.screen-explorer {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  grid-template-rows: repeat(3, auto);
  column-gap: 80px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.screen-option {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  gap: 15px;
  align-content: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color 180ms ease;
}

.screen-option:last-of-type {
  border-bottom: 0;
}

.option-number {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.option-title {
  display: block;
  margin-bottom: 9px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.6px;
}

.option-mobile {
  display: none;
}

.option-copy {
  display: block;
  max-width: 295px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.screen-option .icon {
  margin-top: 8px;
  width: 17px;
  height: 17px;
  opacity: 0;
  transform: translateX(-6px);
  transition: transform 180ms ease, opacity 180ms ease;
}

.screen-option:hover .option-title,
.screen-explorer input:checked + .screen-option .option-title,
.screen-explorer input:checked + .screen-option .option-number {
  color: var(--orange);
}

.screen-explorer input:checked + .screen-option .icon {
  color: var(--orange);
  opacity: 1;
  transform: translateX(0);
}

.screen-explorer input:focus-visible + .screen-option {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
  border-radius: 4px;
}

.screen-stage {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
  overflow: hidden;
  min-height: 555px;
  border-radius: 14px;
  background: var(--surface);
  background-image: radial-gradient(#cfcec3 0.7px, transparent 0.7px);
  background-size: 16px 16px;
}

.screen-panel {
  display: none;
  height: 100%;
  padding: 28px 30px 0;
}

#screen-chats:checked ~ .screen-stage #panel-chats,
#screen-spaces:checked ~ .screen-stage #panel-spaces,
#screen-settings:checked ~ .screen-stage #panel-settings {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.screen-panel figcaption {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  margin-bottom: 28px;
  color: #595a51;
  font-size: 9px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.screen-panel img {
  width: 228px;
  margin-bottom: -22px;
  filter: drop-shadow(0 12px 18px rgb(50 50 35 / 13%));
}

.feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 20px;
}

.feature-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 355px;
  padding: 35px 38px;
  border-radius: 14px;
  background: var(--surface);
}

.feature-card--voice {
  background: #f1e2d2;
}

.feature-card h3 {
  max-width: 330px;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -1px;
}

.feature-card p {
  max-width: 350px;
  margin-top: 14px;
  color: #636158;
  font-size: 13px;
  line-height: 1.8;
}

.voice-visual {
  display: flex;
  align-items: center;
  gap: 19px;
  height: 68px;
  margin-bottom: 34px;
  color: var(--orange);
}

.voice-visual > .icon {
  width: 49px;
  height: 49px;
  padding: 12px;
  border: 1px solid #cdab8b;
  border-radius: 50%;
}

.waveform {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  width: min(100%, 290px);
  height: 60px;
}

.waveform span {
  width: 3px;
  height: 10px;
  border-radius: 3px;
  background: currentColor;
}

.waveform span:nth-child(3n) { height: 26px; }
.waveform span:nth-child(4n) { height: 41px; }
.waveform span:nth-child(5n) { height: 19px; }
.waveform span:nth-child(7n) { height: 55px; }

.notification-visual {
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 34px;
  padding: 14px 20px;
  border: 1px solid #d2d3c8;
  border-radius: 12px;
  background: #f7f7f0;
  transform: rotate(-3deg);
}

.notification-visual > .icon {
  width: 28px;
  height: 28px;
}

.notification-visual strong,
.notification-visual span {
  display: block;
  font-size: 11px;
}

.notification-visual span {
  color: var(--muted);
  font-size: 10px;
}

.feature-detail {
  display: flex;
  gap: 18px;
  padding: 26px 6px 0;
}

.feature-detail > .icon {
  margin-top: 4px;
  color: var(--muted);
}

.feature-detail > div {
  min-width: 0;
}

.feature-detail h3 {
  font-size: 15px;
  font-weight: 700;
}

.feature-detail p {
  max-width: 380px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.85;
}

.download-section {
  padding-block: 110px 70px;
}

.download-panel {
  position: relative;
  overflow: hidden;
  padding: 55px 60px;
  border-radius: 16px;
  background: var(--peach);
  isolation: isolate;
}

.download-panel h2 {
  margin-top: 20px;
  font-size: clamp(34px, 4.1vw, 55px);
}

.download-panel > p:not(.eyebrow) {
  margin-top: 18px;
  color: #645a50;
  font-size: 13px;
}

.download-panel .dl-btn:not(.dl-btn--primary) {
  border-color: #9c826a;
}

.download-panel .dl-btn:not(.dl-btn--primary):hover {
  background: #ecd0b5;
}

.download-note {
  max-width: 415px;
  margin-top: 18px;
  color: #665b4f;
  font-size: 10px;
  line-height: 1.8;
}

.download-mascot {
  position: absolute;
  top: 27%;
  right: 7%;
  width: 260px;
  height: 215px;
  border-radius: 100px;
  background: #e1b994;
  transform: rotate(-12deg);
  z-index: -1;
}

.download-mascot::before,
.download-mascot::after {
  content: "";
  position: absolute;
  top: 30%;
  left: 30%;
  width: 37px;
  height: 87px;
  background: var(--peach);
  border-radius: 30px;
  transform: rotate(8deg);
}

.download-mascot::after {
  left: 53%;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-block: 30px 45px;
  border-top: 1px solid var(--line);
}

.site-footer .brand {
  font-size: 21px;
}

.site-footer .brand-mark {
  width: 31px;
  height: 25px;
}

.site-footer .brand-mark::before,
.site-footer .brand-mark::after {
  width: 5px;
  height: 10px;
}

.site-footer p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px 25px;
  font-size: 11px;
  font-weight: 600;
}

@media (min-width: 1440px) {
  .hero {
    padding-block: 65px 72px;
  }
}

@media (max-width: 1100px) {
  .wrap { width: calc(100% - 64px); }
  .hero { gap: 18px; }
  h1 { letter-spacing: -3px; }
  .hero-art { height: 500px; }
  .hero-phone--front { top: 40px; }
  .hero-phone--back { top: 78px; }
  .dl-btn { min-width: 150px; padding-inline: 16px; }
  .screen-explorer { column-gap: 40px; }
  .download-mascot { right: 5%; width: 210px; height: 180px; }
  .download-mascot::before, .download-mascot::after { width: 30px; height: 73px; }
}

@media (max-width: 800px) {
  .wrap { width: calc(100% - 40px); }
  .header-inner { min-height: 72px; gap: 20px; }
  .brand-edition { display: none; }
  .site-nav { gap: 20px; }
  .site-nav a:last-child { display: none; }
  .hero { grid-template-columns: 1fr; gap: 0; padding-top: 48px; padding-bottom: 40px; }
  .hero-copy { max-width: 540px; }
  h1 { font-size: 72px; }
  .hero-lead { max-width: 410px; }
  .hero-art { width: min(100%, 480px); height: 560px; margin: 24px auto 0; }
  .hero-phone--front { top: 28px; }
  .hero-phone--back { top: 58px; }
  .art-note { bottom: 24px; }
  .principles { gap: 24px; }
  .principles > p { display: none; }
  .principles ul { width: 100%; }
  .principles li { gap: 8px; font-size: 10px; }
  .section { padding-top: 75px; }
  .section-heading { gap: 24px; }
  .section-heading > p { max-width: 240px; font-size: 12px; }
  .screen-explorer { grid-template-columns: 1fr 1fr; column-gap: 25px; }
  .screen-option { grid-template-columns: 20px 1fr; gap: 8px; }
  .screen-option .icon { display: none; }
  .screen-stage { min-height: 505px; }
  .screen-panel { padding-inline: 20px; }
  .screen-panel img { width: 205px; }
  .screen-panel figcaption span:last-child { display: none; }
  .feature-card { padding: 28px; }
  .feature-card h3 { font-size: 25px; }
  .notification-visual { padding-inline: 12px; }
  .download-section { padding-block: 75px 50px; }
  .download-panel { padding: 40px; }
  .download-mascot { top: 40px; right: -60px; opacity: 0.5; }
}

@media (max-width: 560px) {
  .brand { font-size: 23px; }
  .brand-mark { width: 33px; height: 28px; }
  .header-inner { gap: 12px; }
  .site-nav { display: none; }
  .header-download { gap: 8px; padding-inline: 14px; font-size: 11px; }
  .hero { padding-top: 40px; }
  h1 { margin-top: 23px; font-size: clamp(44px, 12.5vw, 67px); letter-spacing: -2.8px; }
  .eyebrow { font-size: 9px; letter-spacing: 1.4px; }
  .hero-lead { margin-top: 20px; font-size: 14px; line-height: 1.85; }
  .dl-row { gap: 10px; margin-top: 25px; }
  .dl-btn { min-width: 0; padding: 12px 16px; gap: 10px; }
  .dl-label { font-size: 15px; }
  .hero-art { height: auto; aspect-ratio: 0.88; margin-top: 25px; }
  .hero-phone--front { top: 7%; right: 8%; width: 46%; }
  .hero-phone--back { top: 12%; left: 8%; width: 42%; }
  .art-note { bottom: 0; left: 5%; padding: 10px 13px; gap: 10px; }
  .art-caption { display: none; }
  .principles { padding-block: 23px; }
  .principles ul { gap: 14px; align-items: flex-start; }
  .principles li { flex: 1; flex-direction: column; align-items: flex-start; font-size: 10px; gap: 10px; }
  .principles .icon { width: 20px; height: 20px; }
  .section { padding-top: 65px; }
  .section-heading { display: block; margin-bottom: 28px; }
  h2 { font-size: 34px; letter-spacing: -1.5px; }
  .section-heading > p { max-width: 310px; margin-top: 20px; font-size: 13px; }
  .screen-explorer { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto auto; gap: 20px 0; }
  .screen-option { display: flex; justify-content: center; align-items: center; gap: 8px; padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .screen-option:last-of-type { border-bottom: 1px solid var(--line); }
  .screen-explorer input:checked + .screen-option { border-bottom: 2px solid var(--orange); }
  .option-number { margin-top: 0; font-size: 9px; }
  .option-title { margin: 0; font-size: 14px; letter-spacing: -0.3px; }
  .option-copy, .option-desktop { display: none; }
  .option-mobile { display: inline; }
  .screen-stage { grid-column: 1 / -1; grid-row: 2; min-height: 530px; }
  .screen-panel { padding-top: 25px; }
  .screen-panel img { width: 220px; }
  .screen-panel figcaption span:last-child { display: inline; }
  .feature-grid { grid-template-columns: minmax(0, 1fr); gap: 18px; }
  .feature-card { min-height: 320px; padding: 30px; }
  .feature-detail { padding: 14px 4px 0; }
  .feature-detail p { font-size: 13px; }
  .download-section { padding-top: 65px; }
  .download-panel { padding: 32px 24px; }
  .download-panel h2 { font-size: 33px; }
  .download-mascot { display: none; }
  .download-panel .dl-row { flex-direction: column; align-items: stretch; }
  .download-panel .dl-btn { justify-content: center; }
  .download-panel .dl-label { min-width: 120px; }
  .site-footer { flex-direction: column; gap: 20px; }
  .footer-links { justify-content: flex-start; gap: 6px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
