@font-face {
  font-family: "Sentzei System";
  src: local("Avenir Next"), local("Avenir"), local("Helvetica Neue");
  font-display: swap;
}

:root {
  --paper: #f6f4ee;
  --paper-deep: #ece9e1;
  --surface: #fffef9;
  --ink: #171b22;
  --muted: #646a73;
  --line: #d8d5cc;
  --blue: #246bfd;
  --blue-dark: #1555d6;
  --blue-pale: #dfe9ff;
  --coral: #ff6658;
  --green: #31b777;
  --shadow: 0 30px 80px rgba(23, 27, 34, 0.12);
  --shadow-soft: 0 16px 50px rgba(23, 27, 34, 0.08);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 27, 34, 0.026) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 32px;
  font-family: "Sentzei System", "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.35rem);
}

h3 {
  font-size: 1.45rem;
}

.shell {
  width: min(calc(100% - 44px), var(--shell));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 150ms ease;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  border: 0 !important;
  white-space: nowrap !important;
}

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

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

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 27, 34, 0.09);
  background: rgba(246, 244, 238, 0.9);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 0.96rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  text-decoration: none;
  white-space: nowrap;
}

.wordmark-mark {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  background: var(--blue);
  transform: rotate(-3deg);
}

.wordmark-mark span {
  display: block;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translateY(-1px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  font-size: 0.88rem;
  font-weight: 650;
}

.site-nav a {
  text-decoration: none;
}

.site-nav a:not(.nav-pill):hover,
.site-nav a:not(.nav-pill)[aria-current="page"] {
  color: var(--blue);
}

.nav-pill {
  padding: 9px 17px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition: color 150ms ease, background 150ms ease;
}

.nav-pill:hover,
.nav-pill[aria-current="page"] {
  color: #fff;
  background: var(--ink);
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  min-height: 730px;
  padding-block: 100px 112px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(54px, 8vw, 118px);
}

.hero-copy h1 {
  max-width: 780px;
  margin-bottom: 34px;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 38px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.button-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 13px 22px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(36, 107, 253, 0.24);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 36px rgba(36, 107, 253, 0.3);
}

.button-dark {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(23, 27, 34, 0.16);
}

.button-dark:hover {
  background: #303743;
}

.button-light {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(23, 27, 34, 0.14);
}

.button.is-disabled {
  cursor: default;
  opacity: 0.88;
}

.button.is-disabled:hover {
  transform: none;
}

.text-link {
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 150ms ease;
}

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

.text-link:hover span {
  transform: translateX(3px);
}

.hero-board {
  position: relative;
  z-index: 1;
  padding: 28px;
  border: 1px solid rgba(23, 27, 34, 0.12);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(1.7deg);
}

.hero-board::before {
  position: absolute;
  z-index: -1;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
  inset: -48px -42px auto auto;
}

.hero-board::after {
  position: absolute;
  z-index: -2;
  width: 94%;
  height: 96%;
  border: 1px solid var(--blue);
  border-radius: var(--radius-lg);
  content: "";
  inset: 36px auto auto -34px;
}

.board-topline,
.board-row,
.window-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-topline {
  margin-bottom: 18px;
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.board-date {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.board-focus {
  padding: 24px;
  border-radius: 20px;
  color: #fff;
  background: var(--blue);
}

.mini-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  opacity: 0.8;
}

.board-focus strong {
  display: block;
  max-width: 280px;
  font-size: 1.5rem;
  line-height: 1.2;
}

.board-list {
  margin-block: 10px;
}

.board-row {
  display: grid;
  padding: 17px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 26px 1fr auto;
  gap: 12px;
  font-size: 0.86rem;
}

.board-row small {
  color: var(--muted);
}

.check {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  border: 1.5px solid #a9afb8;
  border-radius: 50%;
}

.check.is-checked {
  position: relative;
  border-color: var(--green);
  background: var(--green);
}

.check.is-checked::after {
  position: absolute;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  content: "";
  inset: 6px auto auto 5px;
  transform: rotate(-45deg);
}

.board-note {
  margin-top: 18px;
  padding: 15px 16px;
  border-radius: 14px;
  color: #4c5561;
  background: var(--blue-pale);
  font-size: 0.78rem;
}

.board-note span {
  color: var(--blue);
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -4px;
}

.apps-section,
.feature-section,
.contact-section {
  padding-block: 120px;
  border-block: 1px solid rgba(23, 27, 34, 0.08);
  background: var(--surface);
}

.section-heading {
  display: grid;
  margin-bottom: 62px;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
  gap: 50px;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading.compact {
  display: block;
  margin-bottom: 48px;
}

.studio-board {
  transform: rotate(1deg);
}

.studio-app-list {
  display: grid;
  gap: 12px;
}

.studio-app-row {
  display: grid;
  padding: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  text-decoration: none;
  transition: border-color 150ms ease, transform 150ms ease;
}

.studio-app-row:hover {
  border-color: rgba(36, 107, 253, 0.45);
  transform: translateY(-2px);
}

.studio-app-row img {
  border-radius: 22%;
  box-shadow: 0 8px 22px rgba(23, 27, 34, 0.18);
}

.studio-app-row strong,
.studio-app-row small {
  display: block;
}

.studio-app-row strong {
  margin-bottom: 3px;
  font-size: 1rem;
}

.studio-app-row small {
  overflow: hidden;
  color: var(--muted);
  font-size: 0.74rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.studio-app-status {
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.studio-app-status.is-live {
  color: #237653;
}

.app-portfolio {
  display: grid;
  gap: 28px;
}

.app-card {
  display: grid;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
  grid-template-columns: 1.35fr 0.65fr;
  box-shadow: var(--shadow-soft);
}

.app-card-main {
  padding: clamp(38px, 6vw, 74px);
}

.app-identity {
  display: flex;
  margin-bottom: 38px;
  align-items: center;
  gap: 24px;
}

.app-identity img {
  border-radius: 25%;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
}

.status {
  display: flex;
  margin-bottom: 8px;
  align-items: center;
  gap: 8px;
  color: #bec8d6;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 102, 88, 0.13);
}

.status.is-live span {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(46, 180, 126, 0.14);
}

.app-identity h3 {
  margin: 0 0 3px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.app-identity div > p:last-child {
  margin: 0;
  color: #bec8d6;
}

.app-summary {
  max-width: 680px;
  margin-bottom: 28px;
  color: #d5dae2;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.feature-pills {
  display: flex;
  margin: 0 0 36px;
  padding: 0;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.feature-pills li {
  padding: 7px 13px;
  border: 1px solid #4f5662;
  border-radius: 999px;
  color: #d5dae2;
  font-size: 0.72rem;
  font-weight: 650;
}

.app-card-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.app-card-actions .text-link {
  color: #fff;
}

.app-card-actions .text-link:hover {
  color: var(--blue-pale);
}

.bgee-card {
  background: #1e2730;
}

.bgee-card-aside {
  background: #b9852d;
}

.bgee-card-aside::before,
.bgee-card-aside::after {
  border-color: rgba(255, 249, 226, 0.5);
}

.save-window {
  transform: rotate(3deg);
}

.save-window strong {
  margin-bottom: 22px;
  font-size: 2.2rem;
}

.app-card-aside {
  display: grid;
  position: relative;
  min-height: 340px;
  overflow: hidden;
  place-items: center;
  background: var(--blue);
}

.app-card-aside::before,
.app-card-aside::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  content: "";
}

.app-card-aside::before {
  width: 400px;
  height: 400px;
  inset: -160px auto auto -130px;
}

.app-card-aside::after {
  width: 280px;
  height: 280px;
  inset: auto -150px -120px auto;
}

.mini-app-window {
  position: relative;
  z-index: 2;
  width: min(78%, 260px);
  padding: 28px;
  border-radius: 26px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 28px 70px rgba(10, 31, 73, 0.3);
  transform: rotate(-4deg);
}

.mini-app-window strong {
  display: block;
  margin-bottom: 12px;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.progress-track {
  height: 8px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 99px;
  background: #e5e8ee;
}

.progress-track span {
  display: block;
  width: 67%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
}

.window-stat-row {
  padding-block: 10px;
  border-top: 1px solid #e5e8ee;
  font-size: 0.78rem;
}

.principles {
  padding-block: 120px;
}

.principle-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.principle-grid article,
.feature-grid article {
  min-height: 260px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 254, 249, 0.66);
}

.principle-number {
  display: block;
  margin-bottom: 60px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.principle-grid h3,
.feature-grid h3 {
  margin-bottom: 14px;
}

.principle-grid p,
.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.closing,
.support-strip {
  display: grid;
  margin-bottom: 120px;
  padding: clamp(34px, 6vw, 70px);
  align-items: end;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--blue);
  grid-template-columns: 1fr minmax(260px, 0.52fr);
  gap: 50px;
}

.closing h2,
.support-strip h2 {
  max-width: 670px;
}

.closing .eyebrow,
.support-strip .eyebrow {
  color: var(--blue-pale);
}

.closing > div:last-child p {
  margin-bottom: 22px;
  color: #e7edff;
}

.closing .button-primary {
  color: var(--ink);
  background: #fff;
}

.site-footer {
  padding-block: 54px;
  border-top: 1px solid rgba(23, 27, 34, 0.1);
  background: var(--paper-deep);
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  gap: 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.79rem;
  font-weight: 680;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--blue-dark);
}

.footer-inner > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  grid-column: 1 / -1;
}

/* Total Journal product */

.product-hero {
  display: grid;
  min-height: 820px;
  padding-block: 88px 120px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.75fr);
  gap: clamp(60px, 10vw, 140px);
}

.product-title-row {
  display: flex;
  margin-bottom: 28px;
  align-items: flex-start;
  gap: 24px;
}

.product-title-row img {
  margin-top: 5px;
  border-radius: 25%;
  box-shadow: 0 18px 45px rgba(23, 27, 34, 0.14);
}

.product-title-row .eyebrow {
  margin-bottom: 13px;
}

.product-title-row h1 {
  max-width: 670px;
  margin-bottom: 0;
  font-size: clamp(3.3rem, 6.4vw, 6.1rem);
}

.trust-row {
  display: flex;
  margin-top: 44px;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
}

.trust-row span::before {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  inset: 9px auto auto 2px;
}

.phone-stage {
  position: relative;
  min-height: 650px;
}

.phone-stage::before {
  position: absolute;
  z-index: -1;
  width: 110%;
  aspect-ratio: 1;
  border-radius: 46% 54% 58% 42%;
  background: var(--blue-pale);
  content: "";
  inset: 5% auto auto -15%;
  transform: rotate(-8deg);
}

.phone-frame {
  width: min(76%, 340px);
  margin-inline: auto;
  padding: 10px;
  overflow: hidden;
  border: 7px solid var(--ink);
  border-radius: 50px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.phone-frame img {
  width: 100%;
  border-radius: 34px;
}

.floating-card {
  display: flex;
  position: absolute;
  min-width: 205px;
  padding: 14px 18px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(23, 27, 34, 0.09);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 0.76rem;
}

.floating-card span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.floating-card small {
  color: var(--muted);
}

.floating-card-one {
  top: 28%;
  left: -9%;
  transform: rotate(-4deg);
}

.floating-card-two {
  right: -8%;
  bottom: 16%;
  transform: rotate(4deg);
}

.calendar-dot {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: #fff;
  background: var(--coral);
  font-weight: 800;
}

.feature-grid article {
  min-height: 290px;
  background: var(--paper);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 54px;
  place-items: center;
  border-radius: 14px;
  color: var(--blue-dark);
  background: var(--blue-pale);
  font-size: 1.2rem;
  font-weight: 760;
}

.privacy-callout {
  display: grid;
  margin-block: 120px;
  padding: clamp(38px, 6vw, 68px);
  align-items: center;
  border-radius: var(--radius-lg);
  color: #fff;
  background: var(--ink);
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 34px;
}

.privacy-callout .eyebrow {
  color: #a8c2ff;
}

.privacy-callout h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.privacy-callout p:last-child {
  max-width: 690px;
  margin-bottom: 0;
  color: #cbd0d8;
}

.privacy-mark {
  display: grid;
  width: 72px;
  height: 82px;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 36px 36px 30px 30px;
}

.privacy-mark span {
  width: 18px;
  height: 24px;
  border: 3px solid var(--blue);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  transform: translateY(3px);
}

.support-strip {
  margin-top: 0;
}

.support-strip .button {
  justify-self: end;
}

/* Legal pages */

.legal-page {
  padding-block: 90px 130px;
}

.legal-header {
  max-width: 890px;
  margin-bottom: 86px;
}

.legal-header h1 {
  margin-bottom: 22px;
}

.legal-updated {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 650;
}

.legal-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

.legal-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 290px minmax(0, 710px);
  gap: clamp(50px, 9vw, 120px);
}

.legal-summary {
  position: sticky;
  top: 32px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.legal-summary strong {
  display: block;
  margin-bottom: 13px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-summary ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.8rem;
}

.legal-summary li + li {
  margin-top: 9px;
}

.legal-copy section {
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.legal-copy section + section {
  padding-top: 38px;
}

.legal-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.03em;
}

.legal-copy p {
  color: #4f5660;
}

.legal-copy p:last-child {
  margin-bottom: 0;
}

.legal-copy a {
  color: var(--blue-dark);
}

/* Support */

.support-hero {
  padding-block: 100px 78px;
  text-align: center;
}

.support-hero h1 {
  margin-bottom: 28px;
}

.support-hero .hero-lede {
  margin-inline: auto;
  margin-bottom: 0;
}

.faq-section {
  padding-bottom: 120px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq-grid details {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.faq-grid summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  font-size: 0.93rem;
  font-weight: 760;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq-grid summary::after {
  display: grid;
  position: absolute;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  color: var(--blue-dark);
  background: var(--blue-pale);
  content: "+";
  font-size: 1.2rem;
  inset: 17px 18px auto auto;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-size: 0.87rem;
}

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

.contact-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.72fr) minmax(480px, 1fr);
  gap: clamp(60px, 10vw, 130px);
}

.contact-copy {
  position: sticky;
  top: 32px;
}

.contact-copy h2 {
  margin-bottom: 24px;
}

.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.response-note {
  display: flex;
  margin-top: 34px;
  padding: 20px;
  align-items: flex-start;
  gap: 13px;
  border-radius: 17px;
  background: var(--blue-pale);
}

.response-note > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 0.77rem;
}

.response-note p {
  margin: 0;
  color: #43506b;
  font-size: 0.8rem;
}

.support-form {
  display: grid;
  padding: clamp(26px, 5vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  gap: 20px;
}

.support-form label {
  display: grid;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 760;
}

.support-form label span {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 560;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid #c9c7bf;
  border-radius: 12px;
  background: #fff;
  font-size: 0.9rem;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.support-form input,
.support-form select {
  height: 50px;
  padding: 0 14px;
}

.support-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--blue);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(36, 107, 253, 0.14);
}

.support-form input::placeholder {
  color: #9b9fa6;
}

.support-form .button {
  justify-self: start;
}

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

.form-privacy {
  margin: 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.form-privacy a {
  color: var(--blue-dark);
}

/* Message and error pages */

.message-page {
  display: grid;
  min-height: calc(100vh - 85px);
  padding-block: 80px;
  place-items: center;
}

.message-card {
  max-width: 680px;
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.message-card h1 {
  margin-bottom: 26px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

.message-card > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.1rem;
}

.message-card .button-row {
  justify-content: center;
}

.message-check {
  display: grid;
  width: 62px;
  height: 62px;
  margin: 0 auto 26px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 1.8rem;
}

@media (max-width: 980px) {
  .hero,
  .product-hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero {
    padding-bottom: 140px;
  }

  .hero-copy {
    max-width: 780px;
  }

  .hero-board {
    width: min(92%, 560px);
    margin-inline: auto;
  }

  .app-card {
    grid-template-columns: 1fr;
  }

  .app-card-aside {
    min-height: 380px;
  }

  .principle-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .closing,
  .support-strip {
    grid-template-columns: 1fr;
  }

  .support-strip .button {
    justify-self: start;
  }

  .product-hero {
    padding-top: 76px;
  }

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

  .phone-stage {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .privacy-callout {
    grid-template-columns: auto 1fr;
  }

  .privacy-callout .button {
    justify-self: start;
    grid-column: 2;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    position: static;
    max-width: 680px;
  }
}

@media (max-width: 720px) {
  body {
    background-size: 100% 26px;
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    gap: 10px;
  }

  .site-nav a:not(.nav-pill) {
    display: none;
  }

  .nav-pill {
    padding: 7px 13px;
  }

  .hero {
    padding-block: 68px 110px;
    gap: 72px;
  }

  .hero-board {
    width: calc(100% - 20px);
    padding: 20px;
  }

  .hero-board::before {
    width: 120px;
    height: 120px;
    inset: -38px -20px auto auto;
  }

  .hero-board::after {
    inset: 26px auto auto -18px;
  }

  .apps-section,
  .feature-section,
  .contact-section {
    padding-block: 82px;
  }

  .section-heading {
    display: block;
    margin-bottom: 42px;
  }

  .section-heading > p {
    margin-top: 24px;
  }

  .app-card-main {
    padding: 30px 24px 40px;
  }

  .app-identity {
    align-items: flex-start;
    gap: 16px;
  }

  .app-identity img {
    width: 74px;
    height: 74px;
  }

  .app-identity h3 {
    font-size: 1.85rem;
  }

  .principles {
    padding-block: 82px;
  }

  .principle-grid,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article,
  .feature-grid article {
    min-height: 220px;
  }

  .principle-number,
  .feature-icon {
    margin-bottom: 40px;
  }

  .closing,
  .support-strip {
    margin-bottom: 82px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 18px;
  }

  .product-hero {
    padding-block: 62px 88px;
    gap: 58px;
  }

  .product-title-row {
    display: block;
  }

  .product-title-row img {
    width: 78px;
    height: 78px;
    margin: 0 0 24px;
  }

  .phone-stage {
    min-height: 570px;
  }

  .phone-frame {
    width: min(76%, 300px);
  }

  .floating-card {
    min-width: 180px;
    padding: 12px 14px;
  }

  .floating-card-one {
    left: -2%;
  }

  .floating-card-two {
    right: -1%;
  }

  .privacy-callout {
    margin-block: 82px;
    grid-template-columns: 1fr;
  }

  .privacy-callout .button {
    grid-column: 1;
  }

  .legal-page {
    padding-block: 64px 90px;
  }

  .legal-header {
    margin-bottom: 54px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .legal-summary {
    position: static;
  }

  .support-hero {
    padding-block: 72px 60px;
  }

  .faq-section {
    padding-bottom: 82px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .support-form {
    border-radius: var(--radius-md);
  }

  .message-page {
    align-items: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
