:root {
  --orange: #ff742d;
  --orange-deep: #f65b20;
  --orange-soft: #fff0e5;
  --cream: #fffaf5;
  --ink: #17243a;
  --ink-soft: #536074;
  --line: #eadfd5;
  --white: #ffffff;
  --blue: #26b6ef;
  --blue-soft: #e5f8ff;
  --coral: #ff6f78;
  --coral-soft: #ffe7e8;
  --teal: #1fcba5;
  --teal-soft: #e4fbf5;
  --purple: #7664e9;
  --purple-soft: #eeeaff;
  --shadow: 0 24px 70px rgba(110, 48, 15, 0.13);
  --shadow-small: 0 12px 30px rgba(110, 48, 15, 0.1);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Avenir Next", "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

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

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 10px 14px;
  margin: 0;
  clip: auto;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid transparent;
  background: rgba(255, 250, 245, 0.86);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(234, 223, 213, 0.9);
  box-shadow: 0 10px 26px rgba(64, 39, 20, 0.06);
}

.nav-shell {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  border-radius: 13px;
  box-shadow: 0 7px 18px rgba(255, 116, 45, 0.22);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a {
  position: relative;
  transition: color 160ms ease;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.primary-nav a:not(.nav-cta):hover {
  color: var(--ink);
}

.primary-nav a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transition: background 160ms ease, transform 160ms ease;
}

.nav-cta:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
  border-radius: 12px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  border-radius: 2px;
}

.hero-section {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 183, 78, 0.5), transparent 24%),
    linear-gradient(135deg, #fffaf5 0%, #fff1e6 48%, #ffdfc8 100%);
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  right: -10%;
  bottom: -48%;
  left: 45%;
  height: 80%;
  content: "";
  border-radius: 50% 50% 0 0;
  background: linear-gradient(145deg, rgba(255, 125, 44, 0.12), rgba(255, 94, 23, 0.42));
  transform: rotate(-8deg);
}

.hero-section::after {
  right: 46%;
  bottom: -61%;
  left: -20%;
  height: 52%;
  opacity: 0.62;
  transform: rotate(11deg);
}

.hero-glow {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: 90px;
  left: -110px;
  background: rgba(255, 182, 66, 0.26);
}

.hero-glow-two {
  right: 34%;
  bottom: -140px;
  background: rgba(255, 107, 71, 0.2);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 50px;
  padding-top: 58px;
  padding-bottom: 68px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-dark {
  color: var(--orange-deep);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 116, 45, 0.12);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
}

h1 {
  max-width: 670px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.25rem, 6vw, 5.6rem);
  font-weight: 850;
  line-height: 0.98;
}

.hero-lede {
  max-width: 510px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange-deep);
  box-shadow: 0 12px 24px rgba(246, 91, 32, 0.22);
}

.button-primary:hover {
  background: #e94d14;
  box-shadow: 0 15px 28px rgba(246, 91, 32, 0.27);
}

.button-ghost {
  color: var(--ink);
  border-color: rgba(23, 36, 58, 0.16);
  background: rgba(255, 255, 255, 0.45);
}

.button-ghost:hover {
  border-color: rgba(23, 36, 58, 0.32);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 12px 24px rgba(23, 36, 58, 0.15);
}

.button-dark:hover {
  background: #253653;
  box-shadow: 0 15px 28px rgba(23, 36, 58, 0.2);
}

.button-light {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 13px 30px rgba(97, 38, 14, 0.16);
}

.button-light:hover {
  background: #fff6ef;
}

.hero-disclaimer {
  max-width: 510px;
  margin-bottom: 0;
  color: #6f6259;
  font-size: 12px;
  line-height: 1.55;
}

.hero-disclaimer strong {
  color: var(--ink);
}

.hero-stage {
  position: relative;
  display: flex;
  min-height: 550px;
  align-items: center;
  justify-content: center;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(255, 116, 45, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.stage-orbit-one {
  width: 540px;
  height: 540px;
}

.stage-orbit-two {
  width: 420px;
  height: 420px;
  border-color: rgba(255, 116, 45, 0.19);
}

.app-window {
  position: relative;
  z-index: 1;
  width: min(505px, 100%);
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  background: #fbfdff;
  box-shadow: 0 35px 80px rgba(118, 53, 18, 0.23), 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transform: rotate(3.5deg);
  transition: transform 280ms ease;
}

.app-window:hover {
  transform: rotate(1deg) translateY(-4px);
}

.window-toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #6d7a8d;
  background: #f4f8fc;
  font-size: 10px;
  font-weight: 750;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d5deea;
}

.toolbar-status {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
  color: #6aa697;
}

.toolbar-status i,
.demo-local i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2dc49f;
}

.preview-body {
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #f8fbfd 100%);
}

.preview-heading,
.preview-section-row,
.paper-topline,
.trend-card-top,
.demo-card-top,
.result-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tiny-label,
.demo-kicker,
.result-topline,
.paper-topline {
  color: #9daabd;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.preview-heading h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-size: 27px;
  line-height: 1;
}

.date-chip {
  padding: 7px 10px;
  color: #707e91;
  background: #eef5fa;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.preview-primary-card {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 17px;
  color: var(--ink);
  background: var(--blue-soft);
  border: 1px solid rgba(38, 182, 239, 0.18);
  border-radius: 18px;
}

.card-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.icon-blue {
  color: #168fd1;
  background: #c9f0ff;
}

.preview-primary-card span:not(.card-arrow) {
  display: block;
  color: #678093;
  font-size: 10px;
  font-weight: 700;
}

.preview-primary-card strong {
  display: block;
  margin: 2px 0;
  font-size: 26px;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.preview-primary-card strong small,
.preview-stat strong small {
  color: #8a9aac;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0;
}

.preview-primary-card em,
.preview-stat em {
  color: #92a0ae;
  font-size: 9px;
  font-style: normal;
}

.card-arrow {
  color: #198dcc;
  font-size: 20px;
  font-weight: 800;
}

.preview-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
}

.preview-stat {
  display: grid;
  grid-template-columns: 25px 1fr;
  align-items: center;
  column-gap: 7px;
  padding: 14px;
  border-radius: 18px;
}

.preview-stat > span:not(.stat-symbol) {
  color: #68778d;
  font-size: 10px;
  font-weight: 750;
}

.preview-stat strong {
  grid-column: 1 / -1;
  margin: 9px 0 0;
  font-size: 22px;
  line-height: 1;
}

.preview-stat em {
  grid-column: 1 / -1;
  margin-top: 5px;
}

.stat-coral {
  background: var(--coral-soft);
}

.stat-orange {
  background: #fff0e1;
}

.stat-symbol {
  color: var(--coral);
  font-size: 21px;
}

.stat-orange .stat-symbol {
  color: var(--orange);
}

.preview-section-row {
  margin: 25px 2px 10px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.preview-section-row a {
  color: var(--orange-deep);
  font-size: 10px;
}

.preview-list {
  display: grid;
  gap: 8px;
}

.preview-list-item {
  display: grid;
  grid-template-columns: 9px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 11px 13px;
  color: #677487;
  background: #fff;
  border: 1px solid #edf1f4;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
}

.preview-list-item strong {
  color: var(--ink);
  font-size: 10px;
}

.list-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-teal {
  background: var(--teal);
}

.dot-purple {
  background: var(--purple);
}

.dot-blue {
  background: var(--blue);
}

.floating-note {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
  padding: 12px 15px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(8px);
  animation: float-note 5s ease-in-out infinite;
}

.floating-note strong,
.floating-note small {
  display: block;
}

.floating-note strong {
  font-size: 11px;
}

.floating-note small {
  margin-top: 2px;
  color: #7a8797;
  font-size: 9px;
  line-height: 1.3;
}

.floating-note-one {
  top: 19%;
  left: -3%;
}

.floating-note-two {
  right: -1%;
  bottom: 18%;
  animation-delay: -2.2s;
}

.note-icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 850;
}

.note-spark {
  color: var(--purple);
  background: var(--purple-soft);
}

@keyframes float-note {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.signal-strip {
  color: var(--white);
  background: var(--orange-deep);
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 75px;
  font-size: 12px;
  font-weight: 750;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.signal-row i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #ffb078;
  background: rgba(92, 37, 7, 0.2);
  border-radius: 50%;
  font-size: 9px;
  font-style: normal;
  font-weight: 850;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 48px;
}

.section-heading h2,
.privacy-copy h2,
.demo-intro h2,
.closing-card h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2.35rem, 4vw, 4.3rem);
  line-height: 1.02;
}

.section-heading p:not(.eyebrow),
.privacy-copy > p:not(.eyebrow),
.demo-intro > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.split-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.split-heading > p {
  max-width: 370px !important;
  padding-bottom: 4px;
}

.features-section {
  background: var(--white);
}

.feature-tabs {
  display: flex;
  gap: 8px;
  padding: 7px;
  margin-bottom: 30px;
  background: #f8f4f0;
  border-radius: 999px;
}

.feature-tab {
  flex: 1;
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  color: #718092;
  background: transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.feature-tab span {
  margin-right: 5px;
  color: #aeb7c1;
  font-size: 10px;
}

.feature-tab:hover {
  color: var(--ink);
}

.feature-tab.is-active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 6px 14px rgba(27, 42, 63, 0.08);
}

.feature-tab.is-active span {
  color: var(--orange-deep);
}

.feature-panel {
  display: grid;
  min-height: 520px;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 70px;
  padding: 46px 48px;
  overflow: hidden;
  background: var(--cream);
  border-radius: var(--radius-xl);
}

.feature-panel[hidden] {
  display: none;
}

.feature-copy {
  max-width: 420px;
}

.feature-number {
  display: inline-block;
  margin-bottom: 17px;
  color: var(--orange-deep);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.feature-copy h3 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.feature-copy > p {
  margin-bottom: 23px;
  color: var(--ink-soft);
  font-size: 15px;
}

.check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
  color: #667285;
  font-size: 13px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-list li span {
  display: grid;
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange-deep);
  background: #ffe3d1;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 850;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange-deep);
  font-size: 14px;
  font-weight: 850;
}

.text-link:hover {
  gap: 11px;
}

.feature-art {
  position: relative;
  min-height: 400px;
}

.art-records {
  display: grid;
  place-items: center;
}

.paper-card {
  position: absolute;
  width: 325px;
  height: 385px;
  border-radius: 21px;
  transform: rotate(5deg);
}

.paper-card-back {
  background: #ffd4bb;
  transform: rotate(-7deg) translate(-27px, 18px);
}

.paper-card-main {
  z-index: 1;
  padding: 34px 30px;
  background: var(--white);
  box-shadow: 0 23px 45px rgba(95, 50, 24, 0.14);
}

.paper-topline {
  color: #9caab6;
}

.tiny-check {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 8px;
  font-size: 12px;
}

.paper-date {
  margin-top: 23px;
  color: #a2adba;
  font-size: 11px;
}

.paper-reading {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 18px;
  color: var(--ink);
}

.paper-reading strong {
  font-size: 48px;
  letter-spacing: -0.08em;
  line-height: 1;
}

.paper-reading span {
  color: #b2bfcb;
  font-size: 20px;
}

.paper-reading small {
  margin-left: 1px;
  color: #7f8b98;
  font-size: 11px;
  font-weight: 750;
}

.paper-badge {
  display: inline-flex;
  margin-top: 15px;
  padding: 7px 10px;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.paper-line {
  height: 8px;
  margin-top: 35px;
  background: #f0f3f5;
  border-radius: 10px;
}

.paper-line.medium {
  width: 68%;
  margin-top: 10px;
}

.paper-line.long {
  width: 90%;
}

.paper-footer {
  position: absolute;
  right: 30px;
  bottom: 29px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  color: #acb6c0;
  font-size: 10px;
}

.art-sticker {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 25px rgba(105, 46, 19, 0.16);
  font-weight: 850;
}

.sticker-heart {
  top: 5%;
  right: 6%;
  width: 52px;
  height: 52px;
  background: var(--coral);
  font-size: 26px;
  transform: rotate(12deg);
}

.sticker-plus {
  bottom: 10%;
  left: 5%;
  width: 38px;
  height: 38px;
  background: var(--orange);
  font-size: 21px;
  transform: rotate(-12deg);
}

.art-trends {
  display: grid;
  place-items: center;
}

.trend-card {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 28px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 22px 42px rgba(95, 50, 24, 0.12);
  transform: rotate(-3deg);
}

.trend-card-top {
  color: #9ca7b3;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.trend-period {
  padding: 7px 10px;
  color: #7c8b9a;
  background: #f1f5f7;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0;
}

.trend-card-value {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-top: 27px;
}

.trend-card-value strong {
  color: var(--ink);
  font-size: 32px;
  letter-spacing: -0.07em;
}

.trend-card-value span {
  max-width: 125px;
  color: #7c8b9a;
  font-size: 10px;
  line-height: 1.3;
  text-align: right;
}

.trend-graph {
  display: flex;
  height: 155px;
  align-items: end;
  gap: 14px;
  padding: 30px 13px 0;
  margin-top: 17px;
  border-bottom: 1px solid #e5ebef;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 38px, #eff3f6 39px, transparent 40px);
}

.trend-graph i {
  display: block;
  width: 24px;
  flex: 1;
  min-width: 15px;
  background: linear-gradient(180deg, #ff9561, var(--orange));
  border-radius: 8px 8px 0 0;
}

.trend-graph i:nth-child(2n) {
  background: linear-gradient(180deg, #79d7ee, var(--blue));
}

.trend-graph i:nth-child(3n) {
  background: linear-gradient(180deg, #68dec3, var(--teal));
}

.trend-days {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px 0;
  color: #a1acb7;
  font-size: 9px;
}

.trend-orb {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
}

.orb-one {
  top: 2%;
  right: 2%;
  background: #ffdca1;
}

.orb-two {
  bottom: 3%;
  left: 1%;
  background: #ffc1bf;
}

.art-materials {
  display: grid;
  align-content: center;
  gap: 15px;
  padding: 4px 3%;
}

.reading-card {
  display: grid;
  grid-template-columns: 71px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: 17px;
  box-shadow: 0 15px 35px rgba(95, 50, 24, 0.09);
}

.reading-card:nth-child(2) {
  transform: translateX(28px);
}

.reading-card:nth-child(3) {
  transform: translateX(55px);
}

.reading-image {
  width: 71px;
  height: 71px;
  border-radius: 14px;
}

.image-track {
  background: linear-gradient(155deg, #7f9b68 0%, #d16f5e 47%, #486d46 48%, #243e2c 100%);
}

.image-walk {
  background: linear-gradient(155deg, #91c0df 0%, #e9d7af 44%, #7c8f57 45%, #3e633f 100%);
}

.image-sleep {
  background: linear-gradient(155deg, #223b72 0%, #6a6ab4 48%, #f6b668 49%, #ee8c53 100%);
}

.reading-card strong,
.reading-card small {
  display: block;
}

.reading-card strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.reading-card small {
  margin-top: 5px;
  color: #8b98a5;
  font-size: 10px;
  line-height: 1.3;
}

.reading-card b {
  color: var(--orange-deep);
  font-size: 20px;
}

.art-access {
  display: grid;
  place-items: center;
}

.access-phone {
  position: relative;
  width: 290px;
  min-height: 385px;
  padding: 27px 20px 20px;
  background: #21283b;
  border: 7px solid #111827;
  border-radius: 35px;
  box-shadow: 0 24px 46px rgba(25, 38, 61, 0.25);
  transform: rotate(5deg);
}

.access-phone::before {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 72px;
  height: 7px;
  content: "";
  background: #111827;
  border-radius: 10px;
  transform: translateX(-50%);
}

.access-search {
  padding: 11px 12px;
  color: #aab2c4;
  background: #3d4054;
  border-radius: 16px;
  font-size: 10px;
}

.access-search span {
  margin-right: 5px;
  color: var(--white);
  font-size: 16px;
}

.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px 12px;
  margin-top: 33px;
  text-align: center;
}

.access-app {
  display: grid;
  width: 54px;
  height: 54px;
  margin: 0 auto 7px;
  place-items: center;
  color: var(--white);
  border-radius: 17px;
  font-size: 16px;
  font-weight: 850;
}

.app-orange {
  background: var(--orange);
}

.app-blue {
  background: var(--blue);
}

.app-coral {
  background: var(--coral);
}

.app-purple {
  background: var(--purple);
}

.access-grid small {
  color: #d7dbea;
  font-size: 9px;
}

.access-dock {
  position: absolute;
  right: 19px;
  bottom: 16px;
  left: 19px;
  display: flex;
  justify-content: space-around;
  padding: 13px 8px;
  background: #3d4054;
  border-radius: 17px;
}

.access-dock span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #aab2c4;
}

.access-dock span:first-child {
  background: var(--orange);
}

.access-pill {
  position: absolute;
  right: 2%;
  bottom: 13%;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 13px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-small);
  font-size: 11px;
  font-weight: 800;
  transform: rotate(-4deg);
}

.access-pill span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
}

.demo-section {
  background: #fff3ea;
}

.demo-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: 85px;
}

.demo-intro {
  max-width: 440px;
}

.demo-intro h2 {
  font-size: clamp(2.6rem, 4.4vw, 4.6rem);
}

.demo-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(255, 116, 45, 0.14);
  border-radius: 16px;
}

.note-shield {
  color: var(--teal);
  background: var(--teal-soft);
}

.demo-note strong,
.demo-note small {
  display: block;
}

.demo-note strong {
  color: var(--ink);
  font-size: 12px;
}

.demo-note small {
  margin-top: 3px;
  color: #7a8795;
  font-size: 11px;
}

.demo-card {
  padding: 29px;
  background: var(--white);
  border: 1px solid #f2ddd0;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.demo-card-top {
  margin-bottom: 21px;
}

.demo-local {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #6e9085;
  font-size: 10px;
  font-weight: 750;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 17px;
}

.form-row label {
  color: #556479;
  font-size: 11px;
  font-weight: 850;
}

.form-row input,
.form-row select {
  width: 100%;
  min-height: 47px;
  padding: 11px 13px;
  border: 1px solid #e6ebef;
  outline: 0;
  background: #f9fbfc;
  border-radius: 12px;
  font-size: 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-row input:focus,
.form-row select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255, 116, 45, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 0.74fr;
  gap: 13px;
}

.button-full {
  width: 100%;
  margin-top: 3px;
  border: 0;
}

.demo-result {
  padding: 18px;
  margin-top: 23px;
  background: #f5fbfd;
  border: 1px solid #dbeef1;
  border-radius: 17px;
}

.result-topline {
  color: #85a2a8;
}

.result-badge {
  padding: 5px 9px;
  color: #218a70;
  background: #dff7ef;
  border-radius: 999px;
  font-size: 9px;
  letter-spacing: 0;
}

.result-main {
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
}

.result-symbol {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #1aa7cb;
  background: #d8f6fb;
  border-radius: 12px;
  font-size: 21px;
}

.result-main strong,
.result-main span {
  display: block;
}

.result-main strong {
  color: var(--ink);
  font-size: 13px;
}

.result-main span {
  margin-top: 3px;
  color: #738696;
  font-size: 12px;
}

.result-main time {
  color: #95a7af;
  font-size: 10px;
}

.demo-result p {
  padding-top: 13px;
  margin: 14px 0 0;
  color: #7d919a;
  border-top: 1px solid #e0eef0;
  font-size: 11px;
}

.result-flash {
  animation: result-flash 420ms ease;
}

@keyframes result-flash {
  0% {
    transform: scale(1);
  }
  45% {
    background: #e4fff5;
    transform: scale(1.012);
  }
  100% {
    transform: scale(1);
  }
}

.screens-section {
  background: var(--white);
}

.centered-heading {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.centered-heading p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
}

.screen-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.screen-card {
  display: block;
  padding: 10px 10px 16px;
  text-align: left;
  border: 1px solid #eee7e1;
  background: var(--cream);
  border-radius: 25px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.screen-card:hover,
.screen-card.is-selected {
  border-color: rgba(255, 116, 45, 0.5);
  box-shadow: 0 18px 36px rgba(92, 45, 20, 0.11);
  transform: translateY(-4px);
}

.screen-card-image {
  display: block;
  overflow: hidden;
  aspect-ratio: 0.5625;
  border-radius: 18px;
  background: #ffede1;
}

.screen-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.screen-card-label {
  display: block;
  padding: 14px 6px 0;
}

.screen-card-label strong,
.screen-card-label small {
  display: block;
}

.screen-card-label strong {
  color: var(--ink);
  font-size: 13px;
}

.screen-card-label small {
  margin-top: 3px;
  color: #7f8b9a;
  font-size: 11px;
}

.privacy-section {
  background: var(--ink);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 85px;
}

.privacy-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  background: linear-gradient(145deg, #243452, #121d31);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
}

.privacy-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.ring-one {
  top: 50%;
  left: 50%;
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%);
}

.ring-two {
  top: 50%;
  left: 50%;
  width: 295px;
  height: 295px;
  border-color: rgba(255, 116, 45, 0.48);
  transform: translate(-50%, -50%);
}

.privacy-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 122px;
  height: 135px;
  transform: translate(-50%, -46%);
}

.lock-shackle {
  position: absolute;
  top: 0;
  left: 31px;
  width: 60px;
  height: 70px;
  border: 13px solid #ffb047;
  border-bottom: 0;
  border-radius: 42px 42px 0 0;
}

.lock-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 89px;
  background: linear-gradient(145deg, var(--orange), var(--orange-deep));
  border-radius: 20px;
  box-shadow: 0 19px 35px rgba(255, 116, 45, 0.28);
}

.lock-body i {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 17px;
  height: 22px;
  border-radius: 10px;
  background: var(--white);
  transform: translateX(-50%);
}

.lock-body i::after {
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 4px;
  height: 11px;
  content: "";
  background: var(--white);
  transform: translateX(-50%);
}

.privacy-tag {
  position: absolute;
  padding: 8px 11px;
  color: #dae5f0;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
}

.tag-one {
  top: 18%;
  left: 12%;
}

.tag-two {
  right: 10%;
  bottom: 19%;
}

.tag-three {
  right: 9%;
  top: 17%;
  color: #ffd3ad;
  border-color: rgba(255, 174, 117, 0.25);
}

.privacy-copy h2,
.privacy-copy > p:not(.eyebrow) {
  color: var(--white);
}

.privacy-copy > p:not(.eyebrow) {
  color: #bfccdc;
}

.privacy-points {
  display: grid;
  gap: 18px;
  margin: 32px 0;
}

.privacy-points > div {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
}

.privacy-points > div > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffd2b2;
  background: rgba(255, 116, 45, 0.18);
  border-radius: 9px;
  font-size: 9px;
  font-weight: 850;
}

.privacy-points p {
  margin: 0;
}

.privacy-points strong,
.privacy-points small {
  display: block;
}

.privacy-points strong {
  color: var(--white);
  font-size: 13px;
}

.privacy-points small {
  margin-top: 3px;
  color: #aebdce;
  font-size: 12px;
  line-height: 1.45;
}

.faq-section {
  background: var(--cream);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 90px;
}

.faq-grid .section-heading {
  margin-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding-right: 35px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: -4px;
  right: 0;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 50%;
  content: "+";
  font-size: 19px;
  font-weight: 500;
  transition: transform 160ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.closing-section {
  padding: 50px 0 95px;
  background: var(--cream);
}

.closing-card {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 52px 62px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 11%, rgba(255, 194, 109, 0.54), transparent 22%),
    linear-gradient(135deg, #ff8b3f, #fa5e1f);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.closing-card::after {
  position: absolute;
  content: "";
}

.closing-card h2 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.closing-card .eyebrow {
  margin-bottom: 16px;
  color: #ffe1c9;
}

.site-footer {
  color: #b7c3d2;
  background: #101b2d;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 63px;
  padding-bottom: 50px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer img {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  max-width: 310px;
  margin: 18px 0 0;
  color: #9eacbd;
  font-size: 13px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-self: end;
  width: min(390px, 100%);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links span {
  margin-bottom: 5px;
  color: #f4a16e;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-links a {
  color: #c1cbd6;
  font-size: 13px;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 19px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8998ab;
  font-size: 11px;
}

.gallery-modal {
  width: min(92vw, 720px);
  padding: 0;
  overflow: visible;
  color: var(--white);
  background: transparent;
  border: 0;
}

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

.policy-nav {
  gap: 26px;
}

.policy-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(255, 192, 101, 0.5), transparent 25%),
    linear-gradient(135deg, #fff9f3, #ffe3cd 90%);
}

.policy-hero::after {
  position: absolute;
  right: -5%;
  bottom: -70%;
  width: 55%;
  height: 130%;
  content: "";
  border-radius: 50%;
  background: rgba(255, 116, 45, 0.2);
  transform: rotate(-10deg);
}

.policy-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 92px;
  padding-bottom: 88px;
}

.policy-hero-inner h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 6vw, 5.7rem);
}

.policy-hero-inner > p:last-child {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.policy-shell {
  padding-top: 65px;
  padding-bottom: 95px;
}

.policy-meta {
  display: inline-flex;
  padding: 9px 13px;
  margin-bottom: 40px;
  color: var(--orange-deep);
  background: var(--orange-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.policy-document {
  max-width: 880px;
  color: #4c5a6d;
  font-size: 16px;
  line-height: 1.78;
}

.policy-document h2 {
  padding-top: 27px;
  margin: 49px 0 17px;
  color: var(--ink);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.17;
}

.policy-document h2:first-of-type {
  padding-top: 0;
  margin-top: 0;
}

.policy-document p {
  margin-bottom: 18px;
}

.policy-document ul {
  padding-left: 25px;
  margin: -2px 0 22px;
}

.policy-document li {
  padding-left: 4px;
  margin: 4px 0;
}

.policy-document a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.policy-document a:hover {
  color: var(--ink);
}

.policy-links {
  margin-top: -4px !important;
}

.policy-links li {
  margin: 8px 0;
}

.policy-page .site-footer .footer-bottom {
  min-height: 80px;
}

.policy-page .site-footer .footer-bottom a {
  color: #f4a16e;
  font-size: 11px;
  font-weight: 800;
}

.gallery-modal::backdrop {
  background: rgba(8, 16, 29, 0.82);
  backdrop-filter: blur(6px);
}

.modal-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
}

.modal-close {
  position: absolute;
  z-index: 2;
  top: 8px;
  right: 8px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: rgba(16, 27, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 300;
}

.modal-arrow {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: var(--white);
  background: rgba(16, 27, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  font-size: 31px;
  line-height: 1;
}

.modal-arrow-left {
  left: -22px;
}

.modal-arrow-right {
  right: -22px;
}

.modal-figure {
  width: min(390px, 78vw);
  margin: 0;
  padding: 13px;
  background: #f7f9fb;
  border-radius: 27px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.modal-figure img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 16px;
}

.modal-figure figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px 2px;
  color: var(--ink);
}

.modal-figure figcaption strong {
  font-size: 13px;
}

.modal-figure figcaption span {
  color: #7b8795;
  font-size: 10px;
  text-align: right;
}

@media (max-width: 1020px) {
  .hero-grid,
  .demo-grid,
  .privacy-grid {
    gap: 42px;
  }

  .hero-grid {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .hero-stage {
    min-height: 480px;
  }

  .floating-note-one {
    left: -4%;
  }

  .floating-note-two {
    right: -5%;
  }

  .feature-panel {
    gap: 35px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .reading-card:nth-child(2) {
    transform: translateX(10px);
  }

  .reading-card:nth-child(3) {
    transform: translateX(20px);
  }

  .faq-grid {
    gap: 50px;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 34px, 620px);
  }

  .site-header {
    background: rgba(255, 250, 245, 0.94);
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 17px;
    left: 17px;
    display: none;
    padding: 13px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-small);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 3px;
  }

  .primary-nav a {
    padding: 11px 12px;
    border-radius: 10px;
  }

  .primary-nav a:hover {
    background: var(--orange-soft);
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
    text-align: center;
  }

  .hero-section,
  .hero-grid {
    min-height: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 78px;
    padding-bottom: 82px;
  }

  h1 {
    max-width: 600px;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .hero-stage {
    min-height: 520px;
    margin-top: 5px;
  }

  .stage-orbit-one {
    width: 480px;
    height: 480px;
  }

  .stage-orbit-two {
    width: 370px;
    height: 370px;
  }

  .floating-note-one {
    left: 0;
  }

  .floating-note-two {
    right: 0;
  }

  .signal-row {
    grid-template-columns: repeat(2, 1fr);
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .section {
    padding: 86px 0;
  }

  .split-heading,
  .demo-grid,
  .privacy-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    display: grid;
    gap: 15px;
  }

  .split-heading > p {
    max-width: 600px !important;
  }

  .feature-panel {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 38px 24px 28px;
  }

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

  .feature-art {
    min-height: 390px;
  }

  .demo-grid {
    gap: 40px;
  }

  .demo-intro {
    max-width: 600px;
  }

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

  .privacy-visual {
    min-height: 380px;
  }

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

  .faq-grid {
    gap: 42px;
  }

  .closing-card {
    display: grid;
    padding: 40px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 620px);
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    padding-top: 59px;
    padding-bottom: 61px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.3rem);
  }

  .hero-lede {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-stage {
    min-height: 438px;
  }

  .app-window {
    width: calc(100% - 28px);
    border-width: 5px;
    border-radius: 26px;
  }

  .preview-body {
    padding: 18px;
  }

  .preview-heading h2 {
    font-size: 23px;
  }

  .preview-primary-card {
    grid-template-columns: 37px 1fr auto;
    gap: 9px;
    padding: 13px;
  }

  .card-icon {
    width: 37px;
    height: 37px;
  }

  .preview-primary-card strong {
    font-size: 22px;
  }

  .floating-note {
    min-width: 155px;
    padding: 9px 10px;
  }

  .floating-note-one {
    top: 8%;
    left: -3px;
  }

  .floating-note-two {
    right: -2px;
    bottom: 7%;
  }

  .floating-note strong {
    font-size: 10px;
  }

  .floating-note small {
    font-size: 8px;
  }

  .signal-row {
    gap: 13px;
    font-size: 10px;
  }

  .signal-row span {
    gap: 6px;
  }

  .signal-row i {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .privacy-copy h2,
  .demo-intro h2 {
    font-size: 2.55rem;
  }

  .feature-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 18px;
  }

  .feature-tab {
    min-height: 43px;
    padding: 8px 7px;
    font-size: 12px;
  }

  .feature-panel {
    padding: 30px 18px 24px;
    border-radius: 24px;
  }

  .feature-copy h3 {
    font-size: 2.1rem;
  }

  .feature-art {
    min-height: 330px;
  }

  .paper-card {
    width: 245px;
    height: 310px;
  }

  .paper-card-main {
    padding: 25px 22px;
  }

  .paper-reading strong {
    font-size: 38px;
  }

  .paper-footer {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .trend-card {
    padding: 21px 18px;
  }

  .trend-card-value strong {
    font-size: 25px;
  }

  .trend-graph {
    gap: 8px;
  }

  .reading-card {
    grid-template-columns: 54px 1fr auto;
    gap: 10px;
    padding: 12px;
  }

  .reading-image {
    width: 54px;
    height: 54px;
  }

  .reading-card strong {
    font-size: 11px;
  }

  .reading-card small {
    font-size: 9px;
  }

  .reading-card:nth-child(2) {
    transform: translateX(9px);
  }

  .reading-card:nth-child(3) {
    transform: translateX(18px);
  }

  .access-phone {
    width: 238px;
    min-height: 330px;
  }

  .access-pill {
    right: 0;
    bottom: 8%;
  }

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

  .demo-card {
    padding: 21px 17px;
    border-radius: 24px;
  }

  .screen-gallery {
    gap: 10px;
  }

  .screen-card {
    padding: 7px 7px 12px;
    border-radius: 17px;
  }

  .screen-card-image {
    border-radius: 12px;
  }

  .screen-card-label {
    padding: 10px 3px 0;
  }

  .screen-card-label strong {
    font-size: 11px;
  }

  .screen-card-label small {
    font-size: 9px;
  }

  .privacy-visual {
    min-height: 315px;
    border-radius: 24px;
  }

  .ring-one {
    width: 330px;
    height: 330px;
  }

  .ring-two {
    width: 230px;
    height: 230px;
  }

  .privacy-lock {
    transform: translate(-50%, -46%) scale(0.78);
  }

  .privacy-tag {
    padding: 6px 8px;
    font-size: 8px;
  }

  .tag-one {
    top: 13%;
    left: 7%;
  }

  .tag-two {
    right: 7%;
    bottom: 13%;
  }

  .tag-three {
    right: 7%;
    top: 12%;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }

  .modal-arrow-left {
    left: -8px;
  }

  .modal-arrow-right {
    right: -8px;
  }

  .modal-figure figcaption {
    display: grid;
    gap: 2px;
  }

  .modal-figure figcaption span {
    text-align: left;
  }
}
